libp2p 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.min.js +13 -13
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +18 -18
- package/src/version.ts +1 -1
package/dist/src/version.d.ts
CHANGED
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libp2p",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "JavaScript implementation of libp2p, a modular peer to peer network stack",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/libp2p#readme",
|
|
@@ -85,16 +85,16 @@
|
|
|
85
85
|
"test:webkit": "aegir test -t browser -f \"./dist/test/**/*.spec.js\" -- --browser webkit"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@libp2p/crypto": "^4.0.
|
|
89
|
-
"@libp2p/interface": "^1.1.
|
|
90
|
-
"@libp2p/interface-internal": "^1.0.
|
|
91
|
-
"@libp2p/logger": "^4.0.
|
|
92
|
-
"@libp2p/multistream-select": "^5.1.
|
|
93
|
-
"@libp2p/peer-collections": "^5.1.
|
|
94
|
-
"@libp2p/peer-id": "^4.0.
|
|
95
|
-
"@libp2p/peer-id-factory": "^4.0.
|
|
96
|
-
"@libp2p/peer-store": "^10.0.
|
|
97
|
-
"@libp2p/utils": "^5.2.
|
|
88
|
+
"@libp2p/crypto": "^4.0.4",
|
|
89
|
+
"@libp2p/interface": "^1.1.5",
|
|
90
|
+
"@libp2p/interface-internal": "^1.0.10",
|
|
91
|
+
"@libp2p/logger": "^4.0.8",
|
|
92
|
+
"@libp2p/multistream-select": "^5.1.5",
|
|
93
|
+
"@libp2p/peer-collections": "^5.1.8",
|
|
94
|
+
"@libp2p/peer-id": "^4.0.8",
|
|
95
|
+
"@libp2p/peer-id-factory": "^4.0.8",
|
|
96
|
+
"@libp2p/peer-store": "^10.0.12",
|
|
97
|
+
"@libp2p/utils": "^5.2.7",
|
|
98
98
|
"@multiformats/dns": "^1.0.1",
|
|
99
99
|
"@multiformats/multiaddr": "^12.2.0",
|
|
100
100
|
"any-signal": "^4.1.1",
|
|
@@ -108,13 +108,13 @@
|
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
110
|
"@chainsafe/libp2p-yamux": "^6.0.2",
|
|
111
|
-
"@libp2p/circuit-relay-v2": "^1.0.
|
|
112
|
-
"@libp2p/identify": "^1.0.
|
|
113
|
-
"@libp2p/interface-compliance-tests": "^5.3.
|
|
114
|
-
"@libp2p/mplex": "^10.0.
|
|
115
|
-
"@libp2p/plaintext": "^1.0.
|
|
116
|
-
"@libp2p/tcp": "^9.0.
|
|
117
|
-
"@libp2p/websockets": "^8.0.
|
|
111
|
+
"@libp2p/circuit-relay-v2": "^1.0.17",
|
|
112
|
+
"@libp2p/identify": "^1.0.16",
|
|
113
|
+
"@libp2p/interface-compliance-tests": "^5.3.3",
|
|
114
|
+
"@libp2p/mplex": "^10.0.17",
|
|
115
|
+
"@libp2p/plaintext": "^1.0.17",
|
|
116
|
+
"@libp2p/tcp": "^9.0.17",
|
|
117
|
+
"@libp2p/websockets": "^8.0.17",
|
|
118
118
|
"@multiformats/mafmt": "^12.1.6",
|
|
119
119
|
"@multiformats/multiaddr-matcher": "^1.1.2",
|
|
120
120
|
"aegir": "^42.2.4",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '1.3.
|
|
1
|
+
export const version = '1.3.1'
|
|
2
2
|
export const name = 'libp2p'
|