mirror of https://github.com/waku-org/js-waku.git
Merge pull request #953 from waku-org/restore-mplex
This commit is contained in:
commit
f2d667d418
|
@ -13,10 +13,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- API Docs moved to https://js.waku.org/
|
- API Docs moved to https://js.waku.org/
|
||||||
- test: fix typing for nwaku JSON RPC responses.
|
- test: fix typing for nwaku JSON RPC responses.
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- Downgrade to @libp2p/mplex@5.1.2 to fix "Muxer already closed" issue.
|
|
||||||
|
|
||||||
## [0.26.0] - 2022-09-08
|
## [0.26.0] - 2022-09-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
"@libp2p/interface-peer-store": "^1.0.0",
|
"@libp2p/interface-peer-store": "^1.0.0",
|
||||||
"@libp2p/interface-pubsub": "^2.0.1",
|
"@libp2p/interface-pubsub": "^2.0.1",
|
||||||
"@libp2p/interfaces": "^3.0.2",
|
"@libp2p/interfaces": "^3.0.2",
|
||||||
"@libp2p/mplex": "~5.1.2",
|
"@libp2p/mplex": "^5.1.1",
|
||||||
"@libp2p/peer-id": "^1.1.10",
|
"@libp2p/peer-id": "^1.1.10",
|
||||||
"@libp2p/websockets": "^3.0.3",
|
"@libp2p/websockets": "^3.0.3",
|
||||||
"@multiformats/multiaddr": "^10.4.0",
|
"@multiformats/multiaddr": "^10.4.0",
|
||||||
|
@ -1239,9 +1239,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@libp2p/mplex": {
|
"node_modules/@libp2p/mplex": {
|
||||||
"version": "5.1.2",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@libp2p/mplex/-/mplex-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/@libp2p/mplex/-/mplex-5.1.1.tgz",
|
||||||
"integrity": "sha512-PJcHwhUTXxtyG3lLjX9itBSPYuhReLn63KhJU8HsvFxi6KZC52mdOyDUuwMQr68QKcdZGP1K5sg5mRoC0U3PAw==",
|
"integrity": "sha512-a4hUUzHaFUmk6hx0lV6dveyOmHlOqB/MwDJJfIDyHvDILb2ZXGLJaI3JnbMYqPCwOCeSFkKu8Ixw5HphffV0Aw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@libp2p/components": "^2.0.0",
|
"@libp2p/components": "^2.0.0",
|
||||||
"@libp2p/interface-connection": "^3.0.1",
|
"@libp2p/interface-connection": "^3.0.1",
|
||||||
|
@ -13102,9 +13102,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@libp2p/mplex": {
|
"@libp2p/mplex": {
|
||||||
"version": "5.1.2",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@libp2p/mplex/-/mplex-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/@libp2p/mplex/-/mplex-5.1.1.tgz",
|
||||||
"integrity": "sha512-PJcHwhUTXxtyG3lLjX9itBSPYuhReLn63KhJU8HsvFxi6KZC52mdOyDUuwMQr68QKcdZGP1K5sg5mRoC0U3PAw==",
|
"integrity": "sha512-a4hUUzHaFUmk6hx0lV6dveyOmHlOqB/MwDJJfIDyHvDILb2ZXGLJaI3JnbMYqPCwOCeSFkKu8Ixw5HphffV0Aw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@libp2p/components": "^2.0.0",
|
"@libp2p/components": "^2.0.0",
|
||||||
"@libp2p/interface-connection": "^3.0.1",
|
"@libp2p/interface-connection": "^3.0.1",
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
"@libp2p/interface-peer-store": "^1.0.0",
|
"@libp2p/interface-peer-store": "^1.0.0",
|
||||||
"@libp2p/interface-pubsub": "^2.0.1",
|
"@libp2p/interface-pubsub": "^2.0.1",
|
||||||
"@libp2p/interfaces": "^3.0.2",
|
"@libp2p/interfaces": "^3.0.2",
|
||||||
"@libp2p/mplex": "~5.1.2",
|
"@libp2p/mplex": "^5.1.1",
|
||||||
"@libp2p/peer-id": "^1.1.10",
|
"@libp2p/peer-id": "^1.1.10",
|
||||||
"@libp2p/websockets": "^3.0.3",
|
"@libp2p/websockets": "^3.0.3",
|
||||||
"@multiformats/multiaddr": "^10.4.0",
|
"@multiformats/multiaddr": "^10.4.0",
|
||||||
|
|
Loading…
Reference in New Issue