Skip to content

Commit 58c261e

Browse files
chore: release master (#1841)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent eabf6f3 commit 58c261e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+827
-173
lines changed

.release-please-manifest.json

+1-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1 @@
1-
{
2-
"packages/crypto":"1.0.17",
3-
"packages/interface":"0.0.1",
4-
"packages/interface-compliance-tests":"3.0.7",
5-
"packages/interface-internal":"0.0.1",
6-
"packages/kad-dht":"9.3.6",
7-
"packages/keychain":"2.0.1",
8-
"packages/libp2p":"0.45.9",
9-
"packages/logger":"2.1.1",
10-
"packages/metrics-prometheus":"1.1.5",
11-
"packages/multistream-select":"3.1.9",
12-
"packages/peer-collections":"3.0.2",
13-
"packages/peer-discovery-bootstrap":"8.0.0",
14-
"packages/peer-discovery-mdns":"8.0.0",
15-
"packages/peer-id":"2.0.3",
16-
"packages/peer-id-factory":"2.0.3",
17-
"packages/peer-record":"5.0.4",
18-
"packages/peer-store":"8.2.1",
19-
"packages/stream-multiplexer-mplex":"8.0.4",
20-
"packages/transport-tcp":"7.0.3",
21-
"packages/transport-webrtc":"2.0.10",
22-
"packages/transport-websockets":"6.0.3",
23-
"packages/transport-webtransport":"2.0.2",
24-
"packages/utils":"3.0.12"
25-
}
1+
{"packages/crypto":"2.0.0","packages/interface":"0.1.0","packages/interface-compliance-tests":"4.0.0","packages/interface-internal":"0.1.0","packages/kad-dht":"10.0.0","packages/keychain":"3.0.0","packages/libp2p":"0.46.0","packages/logger":"3.0.0","packages/metrics-prometheus":"2.0.0","packages/multistream-select":"4.0.0","packages/peer-collections":"4.0.0","packages/peer-discovery-bootstrap":"9.0.0","packages/peer-discovery-mdns":"9.0.0","packages/peer-id":"3.0.0","packages/peer-id-factory":"3.0.0","packages/peer-record":"6.0.0","packages/peer-store":"9.0.0","packages/stream-multiplexer-mplex":"9.0.0","packages/transport-tcp":"8.0.0","packages/transport-webrtc":"3.0.0","packages/transport-websockets":"7.0.0","packages/transport-webtransport":"3.0.0","packages/utils":"4.0.0"}

packages/crypto/CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@
55

66
* **dev:** bump aegir from 38.1.8 to 39.0.5 ([#320](https://github.com/libp2p/js-libp2p-crypto/issues/320)) ([f0b4c06](https://github.com/libp2p/js-libp2p-crypto/commit/f0b4c068a23d78b1376865c6adf6cce21ab91196))
77

8+
## [2.0.0](https://www.github.com/libp2p/js-libp2p/compare/crypto-v1.0.17...crypto-v2.0.0) (2023-07-31)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
14+
* consolidate interface modules (#1833)
15+
16+
### Features
17+
18+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
19+
20+
21+
### Bug Fixes
22+
23+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0
31+
832
## [1.0.16](https://github.com/libp2p/js-libp2p-crypto/compare/v1.0.15...v1.0.16) (2023-05-05)
933

1034

@@ -735,4 +759,4 @@ chore: update deps
735759

736760
### Features
737761

738-
* **keys:** implement generateKeyPairFromSeed for ed25519 ([e5b7c1f](https://github.com/libp2p/js-libp2p-crypto/commit/e5b7c1f))
762+
* **keys:** implement generateKeyPairFromSeed for ed25519 ([e5b7c1f](https://github.com/libp2p/js-libp2p-crypto/commit/e5b7c1f))

packages/crypto/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/crypto",
3-
"version": "1.0.17",
3+
"version": "2.0.0",
44
"description": "Crypto primitives for libp2p",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/crypto#readme",
@@ -85,7 +85,7 @@
8585
"generate": "protons ./src/keys/keys.proto"
8686
},
8787
"dependencies": {
88-
"@libp2p/interface": "~0.0.1",
88+
"@libp2p/interface": "^0.1.0",
8989
"@noble/ed25519": "^1.6.0",
9090
"@noble/secp256k1": "^1.5.4",
9191
"multiformats": "^12.0.1",

packages/interface-compliance-tests/CHANGELOG.md

+34-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@
55

66
* bump aegir from 38.1.8 to 39.0.5 ([#393](https://github.com/libp2p/js-libp2p-interfaces/issues/393)) ([31f3797](https://github.com/libp2p/js-libp2p-interfaces/commit/31f3797b24f7c23f3f16e9db3a230bd5f7cd5175))
77

8+
## [4.0.0](https://www.github.com/libp2p/js-libp2p/compare/interface-compliance-tests-v3.0.7...interface-compliance-tests-v4.0.0) (2023-07-31)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous
14+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
15+
* consolidate interface modules (#1833)
16+
17+
### Features
18+
19+
* mark connections with limits as transient ([#1890](https://www.github.com/libp2p/js-libp2p/issues/1890)) ([a1ec46b](https://www.github.com/libp2p/js-libp2p/commit/a1ec46b5f5606b7bdf3e5b085013fb88e26439f9))
20+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
21+
22+
23+
### Bug Fixes
24+
25+
* close streams gracefully ([#1864](https://www.github.com/libp2p/js-libp2p/issues/1864)) ([b36ec7f](https://www.github.com/libp2p/js-libp2p/commit/b36ec7f24e477af21cec31effc086a6c611bf271)), closes [#1793](https://www.github.com/libp2p/js-libp2p/issues/1793) [#656](https://www.github.com/libp2p/js-libp2p/issues/656)
26+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
27+
28+
29+
### Dependencies
30+
31+
* The following workspace dependencies were updated
32+
* dependencies
33+
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0
34+
* @libp2p/interface-internal bumped from ~0.0.1 to ^0.1.0
35+
* @libp2p/logger bumped from ^2.0.0 to ^3.0.0
36+
* @libp2p/multistream-select bumped from ^3.0.0 to ^4.0.0
37+
* @libp2p/peer-collections bumped from ^3.0.0 to ^4.0.0
38+
* @libp2p/peer-id bumped from ^2.0.0 to ^3.0.0
39+
* @libp2p/peer-id-factory bumped from ^2.0.0 to ^3.0.0
40+
841
## [@libp2p/interface-compliance-tests-v3.0.6](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/interface-compliance-tests-v3.0.5...@libp2p/interface-compliance-tests-v3.0.6) (2023-01-18)
942

1043

@@ -527,4 +560,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
527560

528561
### BREAKING CHANGES
529562

530-
* the tests now live in the libp2p-interfaces-compliance-tests module
563+
* the tests now live in the libp2p-interfaces-compliance-tests module

packages/interface-compliance-tests/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/interface-compliance-tests",
3-
"version": "3.0.7",
3+
"version": "4.0.0",
44
"description": "Compliance tests for JS libp2p interfaces",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/interface-compliance-tests#readme",
@@ -102,13 +102,13 @@
102102
"test:electron-main": "aegir test -t electron-main"
103103
},
104104
"dependencies": {
105-
"@libp2p/interface": "~0.0.1",
106-
"@libp2p/interface-internal": "~0.0.1",
107-
"@libp2p/logger": "^2.0.0",
108-
"@libp2p/multistream-select": "^3.0.0",
109-
"@libp2p/peer-collections": "^3.0.0",
110-
"@libp2p/peer-id": "^2.0.0",
111-
"@libp2p/peer-id-factory": "^2.0.0",
105+
"@libp2p/interface": "^0.1.0",
106+
"@libp2p/interface-internal": "^0.1.0",
107+
"@libp2p/logger": "^3.0.0",
108+
"@libp2p/multistream-select": "^4.0.0",
109+
"@libp2p/peer-collections": "^4.0.0",
110+
"@libp2p/peer-id": "^3.0.0",
111+
"@libp2p/peer-id-factory": "^3.0.0",
112112
"@multiformats/multiaddr": "^12.1.3",
113113
"abortable-iterator": "^5.0.1",
114114
"delay": "^6.0.0",
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
## [0.1.0](https://www.github.com/libp2p/js-libp2p/compare/interface-internal-v0.0.1...interface-internal-v0.1.0) (2023-07-31)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous
9+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
10+
* consolidate interface modules (#1833)
11+
12+
### Features
13+
14+
* mark connections with limits as transient ([#1890](https://www.github.com/libp2p/js-libp2p/issues/1890)) ([a1ec46b](https://www.github.com/libp2p/js-libp2p/commit/a1ec46b5f5606b7bdf3e5b085013fb88e26439f9))
15+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
16+
17+
18+
### Bug Fixes
19+
20+
* close streams gracefully ([#1864](https://www.github.com/libp2p/js-libp2p/issues/1864)) ([b36ec7f](https://www.github.com/libp2p/js-libp2p/commit/b36ec7f24e477af21cec31effc086a6c611bf271)), closes [#1793](https://www.github.com/libp2p/js-libp2p/issues/1793) [#656](https://www.github.com/libp2p/js-libp2p/issues/656)
21+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
22+
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0
30+
* @libp2p/peer-collections bumped from ^3.0.0 to ^4.0.0

packages/interface-internal/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/interface-internal",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Interfaces implemented by internal libp2p components",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/interface-internal#readme",
@@ -78,8 +78,8 @@
7878
"build": "aegir build"
7979
},
8080
"dependencies": {
81-
"@libp2p/interface": "~0.0.1",
82-
"@libp2p/peer-collections": "^3.0.0",
81+
"@libp2p/interface": "^0.1.0",
82+
"@libp2p/peer-collections": "^4.0.0",
8383
"@multiformats/multiaddr": "^12.1.3",
8484
"uint8arraylist": "^2.4.3"
8585
},

packages/interface/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@
55

66
* add start/stop events to libp2p interface ([#407](https://github.com/libp2p/js-libp2p-interfaces/issues/407)) ([016c1e8](https://github.com/libp2p/js-libp2p-interfaces/commit/016c1e82b060c93c80546cd8c493ec6e6c97cbec))
77

8+
## [0.1.0](https://www.github.com/libp2p/js-libp2p/compare/interface-v0.0.1...interface-v0.1.0) (2023-07-31)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous
14+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
15+
* consolidate interface modules (#1833)
16+
17+
### Features
18+
19+
* mark connections with limits as transient ([#1890](https://www.github.com/libp2p/js-libp2p/issues/1890)) ([a1ec46b](https://www.github.com/libp2p/js-libp2p/commit/a1ec46b5f5606b7bdf3e5b085013fb88e26439f9))
20+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
21+
22+
23+
### Bug Fixes
24+
25+
* add pubsub interfaces to @libp2p/interface ([#1857](https://www.github.com/libp2p/js-libp2p/issues/1857)) ([2e561fe](https://www.github.com/libp2p/js-libp2p/commit/2e561fe9d2d3a4e7c38bd0bf4baf41978c4d9438))
26+
* close streams gracefully ([#1864](https://www.github.com/libp2p/js-libp2p/issues/1864)) ([b36ec7f](https://www.github.com/libp2p/js-libp2p/commit/b36ec7f24e477af21cec31effc086a6c611bf271)), closes [#1793](https://www.github.com/libp2p/js-libp2p/issues/1793) [#656](https://www.github.com/libp2p/js-libp2p/issues/656)
27+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
28+
829
## [@libp2p/interface-v3.1.0](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/interface-v3.0.1...@libp2p/interface-v3.1.0) (2023-05-05)
930

1031

packages/interface/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/interface",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "The interface implemented by a libp2p node",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/interface#readme",

packages/kad-dht/CHANGELOG.md

+36-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,41 @@
55

66
* skip self-query if not running ([#479](https://github.com/libp2p/js-libp2p-kad-dht/issues/479)) ([7095290](https://github.com/libp2p/js-libp2p-kad-dht/commit/70952907a27fd8778773172059879656b4f08855))
77

8+
## [10.0.0](https://www.github.com/libp2p/js-libp2p/compare/kad-dht-v9.3.6...kad-dht-v10.0.0) (2023-07-31)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous
14+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
15+
* consolidate interface modules (#1833)
16+
17+
### Features
18+
19+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
20+
21+
22+
### Bug Fixes
23+
24+
* close streams gracefully ([#1864](https://www.github.com/libp2p/js-libp2p/issues/1864)) ([b36ec7f](https://www.github.com/libp2p/js-libp2p/commit/b36ec7f24e477af21cec31effc086a6c611bf271)), closes [#1793](https://www.github.com/libp2p/js-libp2p/issues/1793) [#656](https://www.github.com/libp2p/js-libp2p/issues/656)
25+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
26+
27+
28+
### Dependencies
29+
30+
* The following workspace dependencies were updated
31+
* dependencies
32+
* @libp2p/crypto bumped from ^1.0.0 to ^2.0.0
33+
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0
34+
* @libp2p/interface-internal bumped from ~0.0.1 to ^0.1.0
35+
* @libp2p/logger bumped from ^2.0.0 to ^3.0.0
36+
* @libp2p/peer-collections bumped from ^3.0.0 to ^4.0.0
37+
* @libp2p/peer-id bumped from ^2.0.0 to ^3.0.0
38+
* devDependencies
39+
* @libp2p/interface-compliance-tests bumped from ^3.0.0 to ^4.0.0
40+
* @libp2p/peer-id-factory bumped from ^2.0.0 to ^3.0.0
41+
* @libp2p/peer-store bumped from ^8.0.0 to ^9.0.0
42+
843
## [9.3.5](https://github.com/libp2p/js-libp2p-kad-dht/compare/v9.3.4...v9.3.5) (2023-05-26)
944

1045

@@ -1651,4 +1686,4 @@ Co-Authored-By: vasco-santos <vasco.santos@ua.pt>
16511686

16521687
### Features
16531688

1654-
* v0.1.0 ([4bd1fbc](https://github.com/libp2p/js-libp2p-kad-dht/commit/4bd1fbc))
1689+
* v0.1.0 ([4bd1fbc](https://github.com/libp2p/js-libp2p-kad-dht/commit/4bd1fbc))

packages/kad-dht/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/kad-dht",
3-
"version": "9.3.6",
3+
"version": "10.0.0",
44
"description": "JavaScript implementation of the Kad-DHT for libp2p",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/kad-dht#readme",
@@ -51,12 +51,12 @@
5151
"dep-check": "aegir dep-check -i events"
5252
},
5353
"dependencies": {
54-
"@libp2p/crypto": "^1.0.0",
55-
"@libp2p/interface": "~0.0.1",
56-
"@libp2p/interface-internal": "~0.0.1",
57-
"@libp2p/logger": "^2.0.0",
58-
"@libp2p/peer-collections": "^3.0.0",
59-
"@libp2p/peer-id": "^2.0.0",
54+
"@libp2p/crypto": "^2.0.0",
55+
"@libp2p/interface": "^0.1.0",
56+
"@libp2p/interface-internal": "^0.1.0",
57+
"@libp2p/logger": "^3.0.0",
58+
"@libp2p/peer-collections": "^4.0.0",
59+
"@libp2p/peer-id": "^3.0.0",
6060
"@multiformats/multiaddr": "^12.1.3",
6161
"@types/sinon": "^10.0.15",
6262
"abortable-iterator": "^5.0.1",
@@ -88,9 +88,9 @@
8888
"varint": "^6.0.0"
8989
},
9090
"devDependencies": {
91-
"@libp2p/interface-compliance-tests": "^3.0.0",
92-
"@libp2p/peer-id-factory": "^2.0.0",
93-
"@libp2p/peer-store": "^8.0.0",
91+
"@libp2p/interface-compliance-tests": "^4.0.0",
92+
"@libp2p/peer-id-factory": "^3.0.0",
93+
"@libp2p/peer-store": "^9.0.0",
9494
"@types/lodash.random": "^3.2.6",
9595
"@types/lodash.range": "^3.2.6",
9696
"@types/varint": "^6.0.0",

packages/keychain/CHANGELOG.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,35 @@
1111

1212
* **dev:** bump aegir from 38.1.8 to 39.0.10 ([#70](https://github.com/libp2p/js-libp2p-keychain/issues/70)) ([4da4a08](https://github.com/libp2p/js-libp2p-keychain/commit/4da4a08b86f436c36e2fae48ecc48817e9b8066f))
1313

14+
## [3.0.0](https://www.github.com/libp2p/js-libp2p/compare/keychain-v2.0.1...keychain-v3.0.0) (2023-07-31)
15+
16+
17+
### ⚠ BREAKING CHANGES
18+
19+
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*`
20+
* consolidate interface modules (#1833)
21+
22+
### Features
23+
24+
* merge stat properties into stream/connection objects ([#1856](https://www.github.com/libp2p/js-libp2p/issues/1856)) ([e9cafd3](https://www.github.com/libp2p/js-libp2p/commit/e9cafd3d8ab0f8e0655ff44e04aa41fccc912b51)), closes [#1849](https://www.github.com/libp2p/js-libp2p/issues/1849)
25+
26+
27+
### Bug Fixes
28+
29+
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3))
30+
31+
32+
### Dependencies
33+
34+
* The following workspace dependencies were updated
35+
* dependencies
36+
* @libp2p/crypto bumped from ^1.0.0 to ^2.0.0
37+
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0
38+
* @libp2p/logger bumped from ^2.0.0 to ^3.0.0
39+
* @libp2p/peer-id bumped from ^2.0.0 to ^3.0.0
40+
* devDependencies
41+
* @libp2p/peer-id-factory bumped from ^2.0.0 to ^3.0.0
42+
1443
## [2.0.0](https://github.com/libp2p/js-libp2p-keychain/compare/v1.0.1...v2.0.0) (2023-03-13)
1544

1645

@@ -201,4 +230,4 @@ Co-Authored-By: Vasco Santos <vasco.santos@moxy.studio>
201230
### Features
202231

203232
* move bits from https://github.com/richardschneider/ipfs-encryption ([1a96ae8](https://github.com/libp2p/js-libp2p-keychain/commit/1a96ae8))
204-
* use libp2p-crypto ([#18](https://github.com/libp2p/js-libp2p-keychain/issues/18)) ([c1627a9](https://github.com/libp2p/js-libp2p-keychain/commit/c1627a9))
233+
* use libp2p-crypto ([#18](https://github.com/libp2p/js-libp2p-keychain/issues/18)) ([c1627a9](https://github.com/libp2p/js-libp2p-keychain/commit/c1627a9))

0 commit comments

Comments
 (0)