-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
eabf6f3
commit 58c261e
Showing
47 changed files
with
827 additions
and
173 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,25 +1 @@ | ||
{ | ||
"packages/crypto":"1.0.17", | ||
"packages/interface":"0.0.1", | ||
"packages/interface-compliance-tests":"3.0.7", | ||
"packages/interface-internal":"0.0.1", | ||
"packages/kad-dht":"9.3.6", | ||
"packages/keychain":"2.0.1", | ||
"packages/libp2p":"0.45.9", | ||
"packages/logger":"2.1.1", | ||
"packages/metrics-prometheus":"1.1.5", | ||
"packages/multistream-select":"3.1.9", | ||
"packages/peer-collections":"3.0.2", | ||
"packages/peer-discovery-bootstrap":"8.0.0", | ||
"packages/peer-discovery-mdns":"8.0.0", | ||
"packages/peer-id":"2.0.3", | ||
"packages/peer-id-factory":"2.0.3", | ||
"packages/peer-record":"5.0.4", | ||
"packages/peer-store":"8.2.1", | ||
"packages/stream-multiplexer-mplex":"8.0.4", | ||
"packages/transport-tcp":"7.0.3", | ||
"packages/transport-webrtc":"2.0.10", | ||
"packages/transport-websockets":"6.0.3", | ||
"packages/transport-webtransport":"2.0.2", | ||
"packages/utils":"3.0.12" | ||
} | ||
{"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"} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Changelog | ||
|
||
## [0.1.0](https://www.github.com/libp2p/js-libp2p/compare/interface-internal-v0.0.1...interface-internal-v0.1.0) (2023-07-31) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous | ||
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*` | ||
* consolidate interface modules (#1833) | ||
|
||
### Features | ||
|
||
* 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)) | ||
* 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) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* 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) | ||
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3)) | ||
|
||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0 | ||
* @libp2p/peer-collections bumped from ^3.0.0 to ^4.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
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 |
---|---|---|
|
@@ -5,6 +5,41 @@ | |
|
||
* 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)) | ||
|
||
## [10.0.0](https://www.github.com/libp2p/js-libp2p/compare/kad-dht-v9.3.6...kad-dht-v10.0.0) (2023-07-31) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* the `.close`, `closeRead` and `closeWrite` methods on the `Stream` interface are now asynchronous | ||
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*` | ||
* consolidate interface modules (#1833) | ||
|
||
### Features | ||
|
||
* 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) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* 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) | ||
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3)) | ||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @libp2p/crypto bumped from ^1.0.0 to ^2.0.0 | ||
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0 | ||
* @libp2p/interface-internal bumped from ~0.0.1 to ^0.1.0 | ||
* @libp2p/logger bumped from ^2.0.0 to ^3.0.0 | ||
* @libp2p/peer-collections bumped from ^3.0.0 to ^4.0.0 | ||
* @libp2p/peer-id bumped from ^2.0.0 to ^3.0.0 | ||
* devDependencies | ||
* @libp2p/interface-compliance-tests bumped from ^3.0.0 to ^4.0.0 | ||
* @libp2p/peer-id-factory bumped from ^2.0.0 to ^3.0.0 | ||
* @libp2p/peer-store bumped from ^8.0.0 to ^9.0.0 | ||
|
||
## [9.3.5](https://github.com/libp2p/js-libp2p-kad-dht/compare/v9.3.4...v9.3.5) (2023-05-26) | ||
|
||
|
||
|
@@ -1651,4 +1686,4 @@ Co-Authored-By: vasco-santos <[email protected]> | |
|
||
### Features | ||
|
||
* v0.1.0 ([4bd1fbc](https://github.com/libp2p/js-libp2p-kad-dht/commit/4bd1fbc)) | ||
* v0.1.0 ([4bd1fbc](https://github.com/libp2p/js-libp2p-kad-dht/commit/4bd1fbc)) |
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 |
---|---|---|
|
@@ -11,6 +11,35 @@ | |
|
||
* **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)) | ||
|
||
## [3.0.0](https://www.github.com/libp2p/js-libp2p/compare/keychain-v2.0.1...keychain-v3.0.0) (2023-07-31) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* `stream.stat.*` and `conn.stat.*` properties are now accessed via `stream.*` and `conn.*` | ||
* consolidate interface modules (#1833) | ||
|
||
### Features | ||
|
||
* 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) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* consolidate interface modules ([#1833](https://www.github.com/libp2p/js-libp2p/issues/1833)) ([4255b1e](https://www.github.com/libp2p/js-libp2p/commit/4255b1e2485d31e00c33efa029b6426246ea23e3)) | ||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @libp2p/crypto bumped from ^1.0.0 to ^2.0.0 | ||
* @libp2p/interface bumped from ~0.0.1 to ^0.1.0 | ||
* @libp2p/logger bumped from ^2.0.0 to ^3.0.0 | ||
* @libp2p/peer-id bumped from ^2.0.0 to ^3.0.0 | ||
* devDependencies | ||
* @libp2p/peer-id-factory bumped from ^2.0.0 to ^3.0.0 | ||
|
||
## [2.0.0](https://github.com/libp2p/js-libp2p-keychain/compare/v1.0.1...v2.0.0) (2023-03-13) | ||
|
||
|
||
|
@@ -201,4 +230,4 @@ Co-Authored-By: Vasco Santos <[email protected]> | |
### Features | ||
|
||
* move bits from https://github.com/richardschneider/ipfs-encryption ([1a96ae8](https://github.com/libp2p/js-libp2p-keychain/commit/1a96ae8)) | ||
* use libp2p-crypto ([#18](https://github.com/libp2p/js-libp2p-keychain/issues/18)) ([c1627a9](https://github.com/libp2p/js-libp2p-keychain/commit/c1627a9)) | ||
* use libp2p-crypto ([#18](https://github.com/libp2p/js-libp2p-keychain/issues/18)) ([c1627a9](https://github.com/libp2p/js-libp2p-keychain/commit/c1627a9)) |
Oops, something went wrong.