Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 840f18b

Browse files
Pick two changes to 5.0.x branch (#479)
* Bump socket.io version to 3.1.2. (#471) * Bump elliptic from 6.5.3 to 6.5.4 (#467) Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](indutny/elliptic@v6.5.3...v6.5.4) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jianjunz <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5b48a9f commit 840f18b

File tree

5 files changed

+22
-16
lines changed

5 files changed

+22
-16
lines changed

package-lock.json

+18-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/samples/conference/public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<video playsinline muted autoplay style="width:320px;height:240"></video>
3838
</div>
3939
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
40-
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js" type="text/javascript"></script>
40+
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.2/socket.io.js" type="text/javascript"></script>
4141
<script src="../../../../dist/sdk-debug/owt.js" type="text/javascript"></script>
4242
<script src="scripts/index.js" type="text/javascript"></script>
4343
<script src="scripts/rest-sample.js" type="text/javascript"></script>

src/samples/conference/public/quic.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>Sample of QuicTransport</h2>
3434
<div id="conference-status"></div>
3535
<div class="stats">
3636
</div>
37-
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js" type="text/javascript"></script>
37+
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.2/socket.io.js" type="text/javascript"></script>
3838
<script src="scripts/rest-sample.js" type="text/javascript"></script>
3939
<script src="scripts/owt.js" type="text/javascript"></script>
4040
<script src="scripts/quic.js" type="text/javascript"></script>

src/samples/p2p/peercall.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
6363
type="text/javascript"></script>
6464
<script
65-
src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"
65+
src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.2/socket.io.js"
6666
type="text/javascript"></script>
6767
<script src="js/sc.websocket.js" type="text/javascript"></script>
6868
<!-- SDK Starts -->

test/p2ptest/fetch_dependencies.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
URLS = {'q.js': 'https://raw.githubusercontent.com/kriskowal/q/c2f5a6f35456389a806acca50bfd929cbe30c4cb/q.js',
1111
'jquery.min.js': 'https://code.jquery.com/jquery-1.10.2.min.js',
12-
'socket.io.min.js': 'https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'
12+
'socket.io.min.js': 'https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.2/socket.io.js'
1313
}
1414

1515
DEPS_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), 'dependencies'))

0 commit comments

Comments
 (0)