@libp2p/webrtc 4.0.33-7464dc00c → 4.0.33-769461d3b

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,7 +29,7 @@
29
29
  *
30
30
  * Support in Node.js is possible but PRs will need to be opened to [libdatachannel](https://github.com/paullouisageneau/libdatachannel) and the appropriate APIs exposed in [node-datachannel](https://github.com/murat-dogan/node-datachannel).
31
31
  *
32
- * For both WebRTC and WebRTC Direct, support is arriving soon in go-libp2p but they are unsupported in rust-libp2p.
32
+ * WebRTC Direct support is available in rust-libp2p and arriving soon in go-libp2p.
33
33
  *
34
34
  * See the WebRTC section of https://connectivity.libp2p.io for more information.
35
35
  *
package/dist/src/index.js CHANGED
@@ -29,7 +29,7 @@
29
29
  *
30
30
  * Support in Node.js is possible but PRs will need to be opened to [libdatachannel](https://github.com/paullouisageneau/libdatachannel) and the appropriate APIs exposed in [node-datachannel](https://github.com/murat-dogan/node-datachannel).
31
31
  *
32
- * For both WebRTC and WebRTC Direct, support is arriving soon in go-libp2p but they are unsupported in rust-libp2p.
32
+ * WebRTC Direct support is available in rust-libp2p and arriving soon in go-libp2p.
33
33
  *
34
34
  * See the WebRTC section of https://connectivity.libp2p.io for more information.
35
35
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/webrtc",
3
- "version": "4.0.33-7464dc00c",
3
+ "version": "4.0.33-769461d3b",
4
4
  "description": "A libp2p transport using WebRTC connections",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/transport-webrtc#readme",
@@ -40,7 +40,7 @@
40
40
  "generate": "protons src/private-to-private/pb/message.proto src/pb/message.proto",
41
41
  "build": "aegir build",
42
42
  "test": "aegir test -t node -t browser",
43
- "test:node": "aegir test -t node --cov",
43
+ "test:node": "aegir test -t node --cov -- --exit",
44
44
  "test:chrome": "aegir test -t browser --cov",
45
45
  "test:firefox": "aegir test -t browser -- --browser firefox",
46
46
  "lint": "aegir lint",
@@ -51,10 +51,10 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@chainsafe/libp2p-noise": "^15.0.0",
54
- "@libp2p/interface": "1.4.0-7464dc00c",
55
- "@libp2p/interface-internal": "1.2.2-7464dc00c",
56
- "@libp2p/peer-id": "4.1.2-7464dc00c",
57
- "@libp2p/utils": "5.4.2-7464dc00c",
54
+ "@libp2p/interface": "1.4.0-769461d3b",
55
+ "@libp2p/interface-internal": "1.2.2-769461d3b",
56
+ "@libp2p/peer-id": "4.1.2-769461d3b",
57
+ "@libp2p/utils": "5.4.2-769461d3b",
58
58
  "@multiformats/mafmt": "^12.1.6",
59
59
  "@multiformats/multiaddr": "^12.2.3",
60
60
  "@multiformats/multiaddr-matcher": "^1.2.1",
@@ -77,13 +77,13 @@
77
77
  },
78
78
  "devDependencies": {
79
79
  "@chainsafe/libp2p-yamux": "^6.0.2",
80
- "@libp2p/circuit-relay-v2": "1.0.24-7464dc00c",
81
- "@libp2p/interface-compliance-tests": "5.4.5-7464dc00c",
82
- "@libp2p/logger": "4.0.13-7464dc00c",
83
- "@libp2p/peer-id-factory": "4.1.2-7464dc00c",
84
- "@libp2p/websockets": "8.0.24-7464dc00c",
80
+ "@libp2p/circuit-relay-v2": "1.0.24-769461d3b",
81
+ "@libp2p/interface-compliance-tests": "5.4.5-769461d3b",
82
+ "@libp2p/logger": "4.0.13-769461d3b",
83
+ "@libp2p/peer-id-factory": "4.1.2-769461d3b",
84
+ "@libp2p/websockets": "8.0.24-769461d3b",
85
85
  "@types/sinon": "^17.0.3",
86
- "aegir": "^42.2.11",
86
+ "aegir": "^43.0.1",
87
87
  "delay": "^6.0.0",
88
88
  "it-drain": "^3.0.7",
89
89
  "it-length": "^3.0.6",
@@ -91,7 +91,7 @@
91
91
  "it-pair": "^2.0.6",
92
92
  "it-pipe": "^3.0.1",
93
93
  "it-to-buffer": "^4.0.7",
94
- "libp2p": "1.6.0-7464dc00c",
94
+ "libp2p": "1.6.0-769461d3b",
95
95
  "p-retry": "^6.2.0",
96
96
  "protons": "^7.5.0",
97
97
  "sinon": "^18.0.0",
package/src/index.ts CHANGED
@@ -29,7 +29,7 @@
29
29
  *
30
30
  * Support in Node.js is possible but PRs will need to be opened to [libdatachannel](https://github.com/paullouisageneau/libdatachannel) and the appropriate APIs exposed in [node-datachannel](https://github.com/murat-dogan/node-datachannel).
31
31
  *
32
- * For both WebRTC and WebRTC Direct, support is arriving soon in go-libp2p but they are unsupported in rust-libp2p.
32
+ * WebRTC Direct support is available in rust-libp2p and arriving soon in go-libp2p.
33
33
  *
34
34
  * See the WebRTC section of https://connectivity.libp2p.io for more information.
35
35
  *