Skip to content

Commit

Permalink
chore: release main (#2693)
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Sep 11, 2024
1 parent b6681bd commit cb9f3ff
Show file tree
Hide file tree
Showing 79 changed files with 1,462 additions and 266 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"packages/connection-encrypter-plaintext":"1.1.6","packages/connection-encrypter-tls":"1.1.5","packages/crypto":"4.1.9","packages/interface":"1.7.0","packages/interface-compliance-tests":"5.4.12","packages/interface-internal":"1.3.4","packages/kad-dht":"12.1.5","packages/keychain":"4.1.6","packages/libp2p":"1.9.4","packages/logger":"4.0.20","packages/metrics-devtools":"0.2.5","packages/metrics-prometheus":"3.1.5","packages/metrics-simple":"1.1.5","packages/multistream-select":"5.1.17","packages/peer-collections":"5.2.9","packages/peer-discovery-bootstrap":"10.1.5","packages/peer-discovery-mdns":"10.1.5","packages/peer-id":"4.2.4","packages/peer-record":"7.0.25","packages/peer-store":"10.1.5","packages/pnet":"1.0.0","packages/protocol-autonat":"1.1.5","packages/protocol-dcutr":"1.1.5","packages/protocol-echo":"1.1.5","packages/protocol-fetch":"1.1.5","packages/protocol-identify":"2.1.5","packages/protocol-perf":"3.1.5","packages/protocol-ping":"1.1.6","packages/pubsub":"9.0.26","packages/pubsub-floodsub":"9.1.5","packages/record":"4.0.4","packages/stream-multiplexer-mplex":"10.1.5","packages/transport-circuit-relay-v2":"1.1.5","packages/transport-tcp":"9.1.6","packages/transport-webrtc":"4.1.10","packages/transport-websockets":"8.2.0","packages/transport-webtransport":"4.1.9","packages/upnp-nat":"1.2.5","packages/utils":"5.4.9"}
{"packages/connection-encrypter-plaintext":"2.0.0","packages/connection-encrypter-tls":"2.0.0","packages/crypto":"5.0.0","packages/interface":"2.0.0","packages/interface-compliance-tests":"6.0.0","packages/interface-internal":"2.0.0","packages/kad-dht":"13.0.0","packages/keychain":"5.0.0","packages/libp2p":"2.0.0","packages/logger":"5.0.0","packages/metrics-devtools":"1.0.0","packages/metrics-prometheus":"4.0.0","packages/metrics-simple":"1.1.6","packages/multistream-select":"6.0.0","packages/peer-collections":"6.0.0","packages/peer-discovery-bootstrap":"11.0.0","packages/peer-discovery-mdns":"11.0.0","packages/peer-id":"5.0.0","packages/peer-record":"8.0.0","packages/peer-store":"11.0.0","packages/pnet":"2.0.0","packages/protocol-autonat":"2.0.0","packages/protocol-dcutr":"2.0.0","packages/protocol-echo":"2.0.0","packages/protocol-fetch":"2.0.0","packages/protocol-identify":"3.0.0","packages/protocol-perf":"4.0.0","packages/protocol-ping":"2.0.0","packages/pubsub":"10.0.0","packages/pubsub-floodsub":"10.0.0","packages/record":"4.0.4","packages/stream-multiplexer-mplex":"11.0.0","packages/transport-circuit-relay-v2":"2.0.0","packages/transport-tcp":"10.0.0","packages/transport-webrtc":"5.0.0","packages/transport-websockets":"9.0.0","packages/transport-webtransport":"5.0.0","packages/upnp-nat":"2.0.0","packages/utils":"6.0.0"}
20 changes: 10 additions & 10 deletions interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
"devDependencies": {
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.2",
"@libp2p/circuit-relay-v2": "^1.0.24",
"@libp2p/interface": "^1.7.0",
"@libp2p/identify": "^2.0.2",
"@libp2p/mplex": "^10.0.24",
"@libp2p/ping": "^1.0.19",
"@libp2p/tcp": "^9.0.26",
"@libp2p/webrtc": "^4.0.33",
"@libp2p/websockets": "^8.0.24",
"@libp2p/webtransport": "^4.0.32",
"@libp2p/circuit-relay-v2": "^2.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/identify": "^3.0.0",
"@libp2p/mplex": "^11.0.0",
"@libp2p/ping": "^2.0.0",
"@libp2p/tcp": "^10.0.0",
"@libp2p/webrtc": "^5.0.0",
"@libp2p/websockets": "^9.0.0",
"@libp2p/webtransport": "^5.0.0",
"@multiformats/multiaddr": "^12.2.3",
"aegir": "^44.0.1",
"libp2p": "^1.6.0",
"libp2p": "^2.0.0",
"p-event": "^6.0.1",
"redis": "^4.6.14"
},
Expand Down
36 changes: 36 additions & 0 deletions packages/connection-encrypter-plaintext/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,42 @@
* devDependencies
* @libp2p/interface-compliance-tests bumped from ^5.3.0 to ^5.3.1

## [2.0.0](https://github.com/libp2p/js-libp2p/compare/plaintext-v1.1.6...plaintext-v2.0.0) (2024-09-11)


### ⚠ BREAKING CHANGES

* the `connectionEncryption` option has been renamed `connectionEncrypters`
* - `@libp2p/peer-id-factory` has been removed, use `generateKeyPair` and `peerIdFromPrivateKey` instead
* the final argument to `secureOutbound` and `secureInbound` in the `ConnectionEncrypter` interface is now an options object
* The `.code` property has been removed from most errors, use `.name` instead
* removes `localPeer: PeerId` first parameter from `secureInbound` and `secureOutbound` in `ConnectionEncrypter`

### Features

* use `.name` property instead of `.code` for errors ([#2655](https://github.com/libp2p/js-libp2p/issues/2655)) ([0d20426](https://github.com/libp2p/js-libp2p/commit/0d20426fd5ea19b03345c70289bbd692e4348e1f))


### Bug Fixes

* make connection securing abortable ([#2662](https://github.com/libp2p/js-libp2p/issues/2662)) ([51f7b57](https://github.com/libp2p/js-libp2p/commit/51f7b570c3a5bae8dd7da7edbc4145893328400e))
* remove localPeer from secureInbound and secureOutbound ([#2304](https://github.com/libp2p/js-libp2p/issues/2304)) ([b435a21](https://github.com/libp2p/js-libp2p/commit/b435a214cf342c6015f474d26143fc27f0f673e9))
* remove private key field from peer id ([#2660](https://github.com/libp2p/js-libp2p/issues/2660)) ([3eeb0c7](https://github.com/libp2p/js-libp2p/commit/3eeb0c705bd58285a6e1ec9fcbb6987c5959d504)), closes [#2659](https://github.com/libp2p/js-libp2p/issues/2659)
* rename connectionEncryption option to connectionEncrypters ([#2691](https://github.com/libp2p/js-libp2p/issues/2691)) ([6d72709](https://github.com/libp2p/js-libp2p/commit/6d72709ba5959388777610e2f71b8ba9522139b6))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/crypto bumped from ^4.1.9 to ^5.0.0
* @libp2p/interface bumped from ^1.7.0 to ^2.0.0
* @libp2p/peer-id bumped from ^4.2.4 to ^5.0.0
* devDependencies
* @libp2p/crypto bumped from ^4.1.9 to ^5.0.0
* @libp2p/interface-compliance-tests bumped from ^5.4.12 to ^6.0.0
* @libp2p/logger bumped from ^4.0.20 to ^5.0.0

## [1.1.6](https://github.com/libp2p/js-libp2p/compare/plaintext-v1.1.5...plaintext-v1.1.6) (2024-08-16)


Expand Down
14 changes: 7 additions & 7 deletions packages/connection-encrypter-plaintext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/plaintext",
"version": "1.1.6",
"version": "2.0.0",
"description": "An insecure connection encrypter",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/connection-encrypter-plaintext#readme",
Expand Down Expand Up @@ -52,19 +52,19 @@
"doc-check": "aegir doc-check"
},
"dependencies": {
"@libp2p/crypto": "^4.1.9",
"@libp2p/interface": "^1.7.0",
"@libp2p/peer-id": "^4.2.4",
"@libp2p/crypto": "^5.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/peer-id": "^5.0.0",
"it-protobuf-stream": "^1.1.3",
"it-stream-types": "^2.0.1",
"protons-runtime": "^5.4.0",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@libp2p/crypto": "^4.1.9",
"@libp2p/interface-compliance-tests": "^5.4.12",
"@libp2p/logger": "^4.0.20",
"@libp2p/crypto": "^5.0.0",
"@libp2p/interface-compliance-tests": "^6.0.0",
"@libp2p/logger": "^5.0.0",
"@multiformats/multiaddr": "^12.2.3",
"aegir": "^44.0.1",
"protons": "^7.5.0",
Expand Down
35 changes: 35 additions & 0 deletions packages/connection-encrypter-tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,41 @@
* devDependencies
* @libp2p/interface-compliance-tests bumped from ^5.3.0 to ^5.3.1

## [2.0.0](https://github.com/libp2p/js-libp2p/compare/tls-v1.1.5...tls-v2.0.0) (2024-09-11)


### ⚠ BREAKING CHANGES

* the `connectionEncryption` option has been renamed `connectionEncrypters`
* - `@libp2p/peer-id-factory` has been removed, use `generateKeyPair` and `peerIdFromPrivateKey` instead
* the final argument to `secureOutbound` and `secureInbound` in the `ConnectionEncrypter` interface is now an options object
* The `.code` property has been removed from most errors, use `.name` instead
* removes `localPeer: PeerId` first parameter from `secureInbound` and `secureOutbound` in `ConnectionEncrypter`

### Features

* use `.name` property instead of `.code` for errors ([#2655](https://github.com/libp2p/js-libp2p/issues/2655)) ([0d20426](https://github.com/libp2p/js-libp2p/commit/0d20426fd5ea19b03345c70289bbd692e4348e1f))


### Bug Fixes

* make connection securing abortable ([#2662](https://github.com/libp2p/js-libp2p/issues/2662)) ([51f7b57](https://github.com/libp2p/js-libp2p/commit/51f7b570c3a5bae8dd7da7edbc4145893328400e))
* remove localPeer from secureInbound and secureOutbound ([#2304](https://github.com/libp2p/js-libp2p/issues/2304)) ([b435a21](https://github.com/libp2p/js-libp2p/commit/b435a214cf342c6015f474d26143fc27f0f673e9))
* remove private key field from peer id ([#2660](https://github.com/libp2p/js-libp2p/issues/2660)) ([3eeb0c7](https://github.com/libp2p/js-libp2p/commit/3eeb0c705bd58285a6e1ec9fcbb6987c5959d504)), closes [#2659](https://github.com/libp2p/js-libp2p/issues/2659)
* rename connectionEncryption option to connectionEncrypters ([#2691](https://github.com/libp2p/js-libp2p/issues/2691)) ([6d72709](https://github.com/libp2p/js-libp2p/commit/6d72709ba5959388777610e2f71b8ba9522139b6))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/crypto bumped from ^4.1.9 to ^5.0.0
* @libp2p/interface bumped from ^1.7.0 to ^2.0.0
* @libp2p/peer-id bumped from ^4.2.4 to ^5.0.0
* devDependencies
* @libp2p/interface-compliance-tests bumped from ^5.4.12 to ^6.0.0
* @libp2p/logger bumped from ^4.0.20 to ^5.0.0

## [1.1.5](https://github.com/libp2p/js-libp2p/compare/tls-v1.1.4...tls-v1.1.5) (2024-08-15)


Expand Down
12 changes: 6 additions & 6 deletions packages/connection-encrypter-tls/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/tls",
"version": "1.1.5",
"version": "2.0.0",
"description": "A connection encrypter that uses TLS 1.3",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/connection-encrypter-tls#readme",
Expand Down Expand Up @@ -48,9 +48,9 @@
"doc-check": "aegir doc-check"
},
"dependencies": {
"@libp2p/crypto": "^4.1.9",
"@libp2p/interface": "^1.7.0",
"@libp2p/peer-id": "^4.2.4",
"@libp2p/crypto": "^5.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/peer-id": "^5.0.0",
"@peculiar/asn1-schema": "^2.3.8",
"@peculiar/asn1-x509": "^2.3.8",
"@peculiar/webcrypto": "^1.4.6",
Expand All @@ -63,8 +63,8 @@
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@libp2p/interface-compliance-tests": "^5.4.12",
"@libp2p/logger": "^4.0.20",
"@libp2p/interface-compliance-tests": "^6.0.0",
"@libp2p/logger": "^5.0.0",
"@multiformats/multiaddr": "^12.2.3",
"aegir": "^44.0.1",
"protons": "^7.5.0",
Expand Down
24 changes: 24 additions & 0 deletions packages/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,30 @@
* dependencies
* @libp2p/interface bumped from ^1.0.2 to ^1.1.0

## [5.0.0](https://github.com/libp2p/js-libp2p/compare/crypto-v4.1.9...crypto-v5.0.0) (2024-09-11)


### ⚠ BREAKING CHANGES

* - `@libp2p/peer-id-factory` has been removed, use `generateKeyPair` and `peerIdFromPrivateKey` instead
* The `.code` property has been removed from most errors, use `.name` instead

### Features

* use `.name` property instead of `.code` for errors ([#2655](https://github.com/libp2p/js-libp2p/issues/2655)) ([0d20426](https://github.com/libp2p/js-libp2p/commit/0d20426fd5ea19b03345c70289bbd692e4348e1f))


### Bug Fixes

* remove private key field from peer id ([#2660](https://github.com/libp2p/js-libp2p/issues/2660)) ([3eeb0c7](https://github.com/libp2p/js-libp2p/commit/3eeb0c705bd58285a6e1ec9fcbb6987c5959d504)), closes [#2659](https://github.com/libp2p/js-libp2p/issues/2659)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/interface bumped from ^1.7.0 to ^2.0.0

## [4.1.9](https://github.com/libp2p/js-libp2p/compare/crypto-v4.1.8...crypto-v4.1.9) (2024-08-15)


Expand Down
4 changes: 2 additions & 2 deletions packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/crypto",
"version": "4.1.9",
"version": "5.0.0",
"description": "Crypto primitives for libp2p",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/crypto#readme",
Expand Down Expand Up @@ -92,7 +92,7 @@
"generate": "protons ./src/keys/keys.proto"
},
"dependencies": {
"@libp2p/interface": "^1.7.0",
"@libp2p/interface": "^2.0.0",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"asn1js": "^3.0.5",
Expand Down
48 changes: 24 additions & 24 deletions packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,32 @@
"@chainsafe/libp2p-gossipsub": "^13.0.0",
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.2",
"@libp2p/bootstrap": "^10.0.23",
"@libp2p/circuit-relay-v2": "^1.0.23",
"@libp2p/crypto": "^4.1.1",
"@libp2p/bootstrap": "^11.0.0",
"@libp2p/circuit-relay-v2": "^2.0.0",
"@libp2p/crypto": "^5.0.0",
"@libp2p/daemon-client": "^8.0.5",
"@libp2p/daemon-server": "^7.0.5",
"@libp2p/dcutr": "^1.0.20",
"@libp2p/echo": "^1.0.7",
"@libp2p/fetch": "^1.0.17",
"@libp2p/floodsub": "^9.0.19",
"@libp2p/identify": "^2.0.1",
"@libp2p/interface": "^1.7.0",
"@libp2p/interface-compliance-tests": "^5.4.4",
"@libp2p/interface-internal": "^1.2.1",
"@libp2p/dcutr": "^2.0.0",
"@libp2p/echo": "^2.0.0",
"@libp2p/fetch": "^2.0.0",
"@libp2p/floodsub": "^10.0.0",
"@libp2p/identify": "^3.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/interface-compliance-tests": "^6.0.0",
"@libp2p/interface-internal": "^2.0.0",
"@libp2p/interop": "^12.2.0",
"@libp2p/kad-dht": "^12.0.16",
"@libp2p/logger": "^4.0.12",
"@libp2p/mdns": "^10.0.23",
"@libp2p/mplex": "^10.0.23",
"@libp2p/peer-id": "^4.2.4",
"@libp2p/ping": "^1.0.18",
"@libp2p/plaintext": "^1.1.5",
"@libp2p/tcp": "^9.0.25",
"@libp2p/tls": "^1.0.10",
"@libp2p/webrtc": "^4.0.32",
"@libp2p/websockets": "^8.0.23",
"@libp2p/webtransport": "^4.0.32",
"@libp2p/kad-dht": "^13.0.0",
"@libp2p/logger": "^5.0.0",
"@libp2p/mdns": "^11.0.0",
"@libp2p/mplex": "^11.0.0",
"@libp2p/peer-id": "^5.0.0",
"@libp2p/ping": "^2.0.0",
"@libp2p/plaintext": "^2.0.0",
"@libp2p/tcp": "^10.0.0",
"@libp2p/tls": "^2.0.0",
"@libp2p/webrtc": "^5.0.0",
"@libp2p/websockets": "^9.0.0",
"@libp2p/webtransport": "^5.0.0",
"@multiformats/mafmt": "^12.1.6",
"@multiformats/multiaddr": "^12.2.3",
"@multiformats/multiaddr-matcher": "^1.2.1",
Expand All @@ -72,7 +72,7 @@
"go-libp2p": "^1.5.0",
"it-all": "^3.0.6",
"it-pipe": "^3.0.1",
"libp2p": "^1.5.2",
"libp2p": "^2.0.0",
"merge-options": "^3.0.4",
"multiformats": "^13.1.0",
"p-defer": "^4.0.1",
Expand Down
39 changes: 39 additions & 0 deletions packages/interface-compliance-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,45 @@
* dependencies
* @libp2p/utils bumped from ^5.2.4 to ^5.2.5

## [6.0.0](https://github.com/libp2p/js-libp2p/compare/interface-compliance-tests-v5.4.12...interface-compliance-tests-v6.0.0) (2024-09-11)


### ⚠ BREAKING CHANGES

* - `@libp2p/peer-id-factory` has been removed, use `generateKeyPair` and `peerIdFromPrivateKey` instead
* the final argument to `secureOutbound` and `secureInbound` in the `ConnectionEncrypter` interface is now an options object
* The `.code` property has been removed from most errors, use `.name` instead
* removes `localPeer: PeerId` first parameter from `secureInbound` and `secureOutbound` in `ConnectionEncrypter`
* * The `notifyOnTransient` property of `libp2p.register` has been renamed `notifyOnLimitedConnection`
* `@libp2p/interface` no longer exports a `CustomEvent` polyfill

### Features

* use `.name` property instead of `.code` for errors ([#2655](https://github.com/libp2p/js-libp2p/issues/2655)) ([0d20426](https://github.com/libp2p/js-libp2p/commit/0d20426fd5ea19b03345c70289bbd692e4348e1f))


### Bug Fixes

* make connection securing abortable ([#2662](https://github.com/libp2p/js-libp2p/issues/2662)) ([51f7b57](https://github.com/libp2p/js-libp2p/commit/51f7b570c3a5bae8dd7da7edbc4145893328400e))
* remove CustomEvent export from `@libp2p/interface` ([#2656](https://github.com/libp2p/js-libp2p/issues/2656)) ([fab6fc9](https://github.com/libp2p/js-libp2p/commit/fab6fc960b6bc03a6bc00ae5a4b3551d7d080c73))
* remove localPeer from secureInbound and secureOutbound ([#2304](https://github.com/libp2p/js-libp2p/issues/2304)) ([b435a21](https://github.com/libp2p/js-libp2p/commit/b435a214cf342c6015f474d26143fc27f0f673e9))
* remove private key field from peer id ([#2660](https://github.com/libp2p/js-libp2p/issues/2660)) ([3eeb0c7](https://github.com/libp2p/js-libp2p/commit/3eeb0c705bd58285a6e1ec9fcbb6987c5959d504)), closes [#2659](https://github.com/libp2p/js-libp2p/issues/2659)
* rename "transient" connections to "limited" ([#2645](https://github.com/libp2p/js-libp2p/issues/2645)) ([2988602](https://github.com/libp2p/js-libp2p/commit/29886022eddc8a793217b2c888beac8aef63f1be)), closes [#2622](https://github.com/libp2p/js-libp2p/issues/2622)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/crypto bumped from ^4.1.9 to ^5.0.0
* @libp2p/interface bumped from ^1.7.0 to ^2.0.0
* @libp2p/interface-internal bumped from ^1.3.4 to ^2.0.0
* @libp2p/logger bumped from ^4.0.20 to ^5.0.0
* @libp2p/multistream-select bumped from ^5.1.17 to ^6.0.0
* @libp2p/peer-collections bumped from ^5.2.9 to ^6.0.0
* @libp2p/peer-id bumped from ^4.2.4 to ^5.0.0
* @libp2p/utils bumped from ^5.4.9 to ^6.0.0

## [5.4.12](https://github.com/libp2p/js-libp2p/compare/interface-compliance-tests-v5.4.11...interface-compliance-tests-v5.4.12) (2024-08-15)


Expand Down
18 changes: 9 additions & 9 deletions packages/interface-compliance-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/interface-compliance-tests",
"version": "5.4.12",
"version": "6.0.0",
"description": "Compliance tests for JS libp2p interfaces",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/interface-compliance-tests#readme",
Expand Down Expand Up @@ -108,14 +108,14 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@libp2p/crypto": "^4.1.9",
"@libp2p/interface": "^1.7.0",
"@libp2p/interface-internal": "^1.3.4",
"@libp2p/logger": "^4.0.20",
"@libp2p/multistream-select": "^5.1.17",
"@libp2p/peer-collections": "^5.2.9",
"@libp2p/peer-id": "^4.2.4",
"@libp2p/utils": "^5.4.9",
"@libp2p/crypto": "^5.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/interface-internal": "^2.0.0",
"@libp2p/logger": "^5.0.0",
"@libp2p/multistream-select": "^6.0.0",
"@libp2p/peer-collections": "^6.0.0",
"@libp2p/peer-id": "^5.0.0",
"@libp2p/utils": "^6.0.0",
"@multiformats/multiaddr": "^12.2.3",
"abortable-iterator": "^5.0.1",
"aegir": "^44.0.1",
Expand Down
19 changes: 19 additions & 0 deletions packages/interface-internal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,25 @@
* dependencies
* @libp2p/peer-collections bumped from ^5.1.3 to ^5.1.4

## [2.0.0](https://github.com/libp2p/js-libp2p/compare/interface-internal-v1.3.4...interface-internal-v2.0.0) (2024-09-11)


### ⚠ BREAKING CHANGES

* * The `notifyOnTransient` property of `libp2p.register` has been renamed `notifyOnLimitedConnection`

### Bug Fixes

* rename "transient" connections to "limited" ([#2645](https://github.com/libp2p/js-libp2p/issues/2645)) ([2988602](https://github.com/libp2p/js-libp2p/commit/29886022eddc8a793217b2c888beac8aef63f1be)), closes [#2622](https://github.com/libp2p/js-libp2p/issues/2622)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/interface bumped from ^1.7.0 to ^2.0.0
* @libp2p/peer-collections bumped from ^5.2.9 to ^6.0.0

## [1.3.4](https://github.com/libp2p/js-libp2p/compare/interface-internal-v1.3.3...interface-internal-v1.3.4) (2024-08-15)


Expand Down
Loading

0 comments on commit cb9f3ff

Please sign in to comment.