-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a474d5
commit f7701f3
Showing
71 changed files
with
1,213 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"interop":"1.0.14","packages/crypto":"2.0.8","packages/interface":"0.1.6","packages/interface-compliance-tests":"4.1.5","packages/interface-internal":"0.1.9","packages/kad-dht":"10.0.15","packages/keychain":"3.0.8","packages/libp2p":"0.46.21","packages/logger":"3.1.0","packages/metrics-prometheus":"2.0.12","packages/multistream-select":"4.0.6","packages/peer-collections":"4.0.8","packages/peer-discovery-bootstrap":"9.0.12","packages/peer-discovery-mdns":"9.0.14","packages/peer-id":"3.0.6","packages/peer-id-factory":"3.0.8","packages/peer-record":"6.0.9","packages/peer-store":"9.0.9","packages/protocol-perf":"2.0.1","packages/pubsub":"8.0.10","packages/pubsub-floodsub":"8.0.13","packages/stream-multiplexer-mplex":"9.0.12","packages/transport-tcp":"8.0.13","packages/transport-webrtc":"3.2.11","packages/transport-websockets":"7.0.13","packages/transport-webtransport":"3.1.10","packages/utils":"4.0.7"} | ||
{"interop":"2.0.0","packages/connection-encrypter-plaintext":"1.0.0","packages/crypto":"2.1.0","packages/interface":"1.0.0","packages/interface-compliance-tests":"5.0.0","packages/interface-internal":"0.1.10","packages/kad-dht":"11.0.0","packages/keychain":"4.0.0","packages/libp2p":"1.0.0","packages/logger":"4.0.0","packages/metrics-prometheus":"3.0.0","packages/multistream-select":"4.0.7","packages/peer-collections":"4.0.9","packages/peer-discovery-bootstrap":"10.0.0","packages/peer-discovery-mdns":"10.0.0","packages/peer-id":"4.0.0","packages/peer-id-factory":"3.0.9","packages/peer-record":"6.0.10","packages/peer-store":"9.0.10","packages/protocol-autonat":"1.0.0","packages/protocol-dcutr":"1.0.0","packages/protocol-fetch":"1.0.0","packages/protocol-identify":"1.0.0","packages/protocol-perf":"3.0.0","packages/protocol-ping":"1.0.0","packages/pubsub":"8.0.11","packages/pubsub-floodsub":"8.0.14","packages/stream-multiplexer-mplex":"10.0.0","packages/transport-circuit-relay-v2":"1.0.0","packages/transport-tcp":"9.0.0","packages/transport-webrtc":"4.0.0","packages/transport-websockets":"8.0.0","packages/transport-webtransport":"4.0.0","packages/upnp-nat":"1.0.0","packages/utils":"5.0.0"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@libp2p/multidim-interop", | ||
"version": "1.0.14", | ||
"version": "2.0.0", | ||
"description": "Multidimensional interop tests", | ||
"author": "Glen De Cauwsemaecker <[email protected]> / @marcopolo", | ||
"license": "Apache-2.0 OR MIT", | ||
|
@@ -53,18 +53,18 @@ | |
"dependencies": { | ||
"@chainsafe/libp2p-noise": "^13.0.0", | ||
"@chainsafe/libp2p-yamux": "^5.0.0", | ||
"@libp2p/circuit-relay-v2": "^0.0.0", | ||
"@libp2p/identify": "^0.0.0", | ||
"@libp2p/mplex": "^9.0.12", | ||
"@libp2p/ping": "^0.0.0", | ||
"@libp2p/tcp": "^8.0.13", | ||
"@libp2p/webrtc": "^3.2.11", | ||
"@libp2p/websockets": "^7.0.13", | ||
"@libp2p/webtransport": "^3.1.10", | ||
"@libp2p/circuit-relay-v2": "^1.0.0", | ||
"@libp2p/identify": "^1.0.0", | ||
"@libp2p/mplex": "^10.0.0", | ||
"@libp2p/ping": "^1.0.0", | ||
"@libp2p/tcp": "^9.0.0", | ||
"@libp2p/webrtc": "^4.0.0", | ||
"@libp2p/websockets": "^8.0.0", | ||
"@libp2p/webtransport": "^4.0.0", | ||
"@multiformats/mafmt": "^12.1.6", | ||
"@multiformats/multiaddr": "^12.1.10", | ||
"aegir": "^41.0.2", | ||
"libp2p": "^0.46.21", | ||
"libp2p": "^1.0.0", | ||
"redis": "^4.5.1" | ||
}, | ||
"browser": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Changelog | ||
|
||
## 1.0.0 (2023-11-25) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* the `minSendBytes` option has been removed from Mplex since the transport can now decide how to optimise sending data | ||
* imports from `libp2p/circuit-relay` should be updated to `@libp2p/circuit-relay-v2` | ||
* imports from `libp2p/plaintext` should be changed to `@libp2p/plaintext` | ||
|
||
### Features | ||
|
||
* allow stream muxers and connection encrypters to yield lists ([#2256](https://www.github.com/libp2p/js-libp2p/issues/2256)) ([4a474d5](https://www.github.com/libp2p/js-libp2p/commit/4a474d54d3299e0ac30fa143b57436b3cf45e426)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* use logging component everywhere ([#2228](https://www.github.com/libp2p/js-libp2p/issues/2228)) ([e5dfde0](https://www.github.com/libp2p/js-libp2p/commit/e5dfde0883191c93903ca552433f177d48adf0b3)) | ||
|
||
|
||
### Code Refactoring | ||
|
||
* extract circuit relay v2 to separate module ([#2222](https://www.github.com/libp2p/js-libp2p/issues/2222)) ([24afba3](https://www.github.com/libp2p/js-libp2p/commit/24afba30004fb7f24af1f0180229bb164340f00b)) | ||
* extract plaintext into separate module ([#2221](https://www.github.com/libp2p/js-libp2p/issues/2221)) ([a364d95](https://www.github.com/libp2p/js-libp2p/commit/a364d95bbd7b15a5ce6ce508321e7ff2fa40a5e5)) | ||
|
||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @libp2p/interface bumped from ^0.1.2 to ^1.0.0 | ||
* @libp2p/peer-id bumped from ^3.0.6 to ^4.0.0 | ||
* devDependencies | ||
* @libp2p/interface-compliance-tests bumped from ^4.1.5 to ^5.0.0 | ||
* @libp2p/logger bumped from ^3.1.0 to ^4.0.0 | ||
* @libp2p/peer-id-factory bumped from ^3.0.8 to ^3.0.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.