Skip to content

Commit

Permalink
chore: release master (#2015)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Sep 1, 2023
1 parent a533cc3 commit ac8a1ca
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"packages/crypto":"2.0.3","packages/interface":"0.1.2","packages/interface-compliance-tests":"4.0.5","packages/interface-internal":"0.1.4","packages/kad-dht":"10.0.5","packages/keychain":"3.0.3","packages/libp2p":"0.46.7","packages/logger":"3.0.2","packages/metrics-prometheus":"2.0.5","packages/multistream-select":"4.0.2","packages/peer-collections":"4.0.3","packages/peer-discovery-bootstrap":"9.0.5","packages/peer-discovery-mdns":"9.0.5","packages/peer-id":"3.0.2","packages/peer-id-factory":"3.0.3","packages/peer-record":"6.0.3","packages/peer-store":"9.0.3","packages/protocol-perf":"1.1.4","packages/pubsub":"8.0.5","packages/pubsub-floodsub":"8.0.6","packages/stream-multiplexer-mplex":"9.0.5","packages/transport-tcp":"8.0.5","packages/transport-webrtc":"3.1.7","packages/transport-websockets":"7.0.5","packages/transport-webtransport":"3.0.7","packages/utils":"4.0.2"}
{"packages/crypto":"2.0.3","packages/interface":"0.1.2","packages/interface-compliance-tests":"4.0.5","packages/interface-internal":"0.1.4","packages/kad-dht":"10.0.5","packages/keychain":"3.0.3","packages/libp2p":"0.46.8","packages/logger":"3.0.2","packages/metrics-prometheus":"2.0.5","packages/multistream-select":"4.0.2","packages/peer-collections":"4.0.3","packages/peer-discovery-bootstrap":"9.0.5","packages/peer-discovery-mdns":"9.0.6","packages/peer-id":"3.0.2","packages/peer-id-factory":"3.0.3","packages/peer-record":"6.0.3","packages/peer-store":"9.0.3","packages/protocol-perf":"1.1.5","packages/pubsub":"8.0.5","packages/pubsub-floodsub":"8.0.6","packages/stream-multiplexer-mplex":"9.0.5","packages/transport-tcp":"8.0.5","packages/transport-webrtc":"3.1.8","packages/transport-websockets":"7.0.5","packages/transport-webtransport":"3.0.8","packages/utils":"4.0.2"}
16 changes: 15 additions & 1 deletion packages/libp2p/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@

* allow specifiying maxOutboundStreams in connection.newStream ([#1817](https://www.github.com/libp2p/js-libp2p/issues/1817)) ([b348fba](https://www.github.com/libp2p/js-libp2p/commit/b348fbaa7e16fd40f9a93e83a92c8152ad9e97e9))

### [0.46.8](https://www.github.com/libp2p/js-libp2p/compare/libp2p-v0.46.7...libp2p-v0.46.8) (2023-09-01)


### Bug Fixes

* **libp2p:** update peer store with supported protocols after unhandle ([#2013](https://www.github.com/libp2p/js-libp2p/issues/2013)) ([63041af](https://www.github.com/libp2p/js-libp2p/commit/63041afefbefd246ee1d6d6a4958b1999076dc17))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @libp2p/mdns bumped from ^9.0.5 to ^9.0.6

### [0.46.7](https://www.github.com/libp2p/js-libp2p/compare/libp2p-v0.46.6...libp2p-v0.46.7) (2023-08-25)


Expand Down Expand Up @@ -2414,4 +2428,4 @@ for subscribe to see how it should be used.


<a name="0.5.5"></a>
## [0.5.5](https://github.com/libp2p/js-libp2p/compare/v0.5.4...v0.5.5) (2017-03-21)
## [0.5.5](https://github.com/libp2p/js-libp2p/compare/v0.5.4...v0.5.5) (2017-03-21)
4 changes: 2 additions & 2 deletions packages/libp2p/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libp2p",
"version": "0.46.7",
"version": "0.46.8",
"description": "JavaScript implementation of libp2p, a modular peer to peer network stack",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/libp2p#readme",
Expand Down Expand Up @@ -177,7 +177,7 @@
"@libp2p/interface-compliance-tests": "^4.0.5",
"@libp2p/interop": "^9.0.0",
"@libp2p/kad-dht": "^10.0.5",
"@libp2p/mdns": "^9.0.5",
"@libp2p/mdns": "^9.0.6",
"@libp2p/mplex": "^9.0.5",
"@libp2p/tcp": "^8.0.5",
"@libp2p/websockets": "^7.0.5",
Expand Down
7 changes: 7 additions & 0 deletions packages/peer-discovery-mdns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@

* update @libp2p/interface-peer-discovery to 2.0.0 ([#197](https://github.com/libp2p/js-libp2p-mdns/issues/197)) ([e8172af](https://github.com/libp2p/js-libp2p-mdns/commit/e8172af8b9856a934327195238b00e5fbba436a4))

### [9.0.6](https://www.github.com/libp2p/js-libp2p/compare/mdns-v9.0.5...mdns-v9.0.6) (2023-09-01)


### Bug Fixes

* **@libp2p/mdns:** do not send TXT records that are too long ([#2014](https://www.github.com/libp2p/js-libp2p/issues/2014)) ([4f19234](https://www.github.com/libp2p/js-libp2p/commit/4f19234ecd7701795543715dbadf537f5c2f1ccb)), closes [#2012](https://www.github.com/libp2p/js-libp2p/issues/2012)

### [9.0.5](https://www.github.com/libp2p/js-libp2p/compare/mdns-v9.0.4...mdns-v9.0.5) (2023-08-25)


Expand Down
2 changes: 1 addition & 1 deletion packages/peer-discovery-mdns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/mdns",
"version": "9.0.5",
"version": "9.0.6",
"description": "Node.js libp2p mDNS discovery implementation for peer discovery",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/peer-discovery-mdns#readme",
Expand Down
11 changes: 10 additions & 1 deletion packages/protocol-perf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

### [1.1.5](https://www.github.com/libp2p/js-libp2p/compare/perf-v1.1.4...perf-v1.1.5) (2023-09-01)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* libp2p bumped from ^0.46.7 to ^0.46.8

### [1.1.4](https://www.github.com/libp2p/js-libp2p/compare/perf-v1.1.3...perf-v1.1.4) (2023-08-25)


Expand Down Expand Up @@ -69,4 +78,4 @@
* @libp2p/logger bumped from ^3.0.0 to ^3.0.2
* @libp2p/peer-id-factory bumped from 3.0.0 to ^3.0.3
* @libp2p/tcp bumped from ^8.0.0 to ^8.0.3
* libp2p bumped from ^0.46.3 to ^0.46.4
* libp2p bumped from ^0.46.3 to ^0.46.4
4 changes: 2 additions & 2 deletions packages/protocol-perf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/perf",
"version": "1.1.4",
"version": "1.1.5",
"description": "Implementation of Perf Protocol",
"author": "@maschad / @marcopolo",
"license": "Apache-2.0 OR MIT",
Expand Down Expand Up @@ -58,7 +58,7 @@
"@libp2p/peer-id-factory": "^3.0.3",
"@libp2p/tcp": "^8.0.5",
"@multiformats/multiaddr": "^12.1.5",
"libp2p": "^0.46.7",
"libp2p": "^0.46.8",
"uint8arrays": "^4.0.6",
"yargs": "^17.7.2"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/transport-webrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@

* add browser-to-browser test for bi-directional communication ([#172](https://github.com/libp2p/js-libp2p-webrtc/issues/172)) ([1ec3d8a](https://github.com/libp2p/js-libp2p-webrtc/commit/1ec3d8a8b611d5227f430037e2547fd86d115eaa))

### [3.1.8](https://www.github.com/libp2p/js-libp2p/compare/webrtc-v3.1.7...webrtc-v3.1.8) (2023-09-01)


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* libp2p bumped from ^0.46.7 to ^0.46.8

### [3.1.7](https://www.github.com/libp2p/js-libp2p/compare/webrtc-v3.1.6...webrtc-v3.1.7) (2023-08-25)


Expand Down
4 changes: 2 additions & 2 deletions packages/transport-webrtc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/webrtc",
"version": "3.1.7",
"version": "3.1.8",
"description": "A libp2p transport using WebRTC connections",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/transport-webrtc#readme",
Expand Down Expand Up @@ -79,7 +79,7 @@
"it-length": "^3.0.2",
"it-map": "^3.0.3",
"it-pair": "^2.0.6",
"libp2p": "^0.46.7",
"libp2p": "^0.46.8",
"protons": "^7.0.2",
"sinon": "^15.1.2",
"sinon-ts": "^1.0.0"
Expand Down
16 changes: 15 additions & 1 deletion packages/transport-webtransport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@

* bump @chainsafe/libp2p-noise from 11.0.4 to 12.0.1 ([#80](https://github.com/libp2p/js-libp2p-webtransport/issues/80)) ([599dab1](https://github.com/libp2p/js-libp2p-webtransport/commit/599dab1b4f6ae816b0c0feefc926c1b38d24b676))

### [3.0.8](https://www.github.com/libp2p/js-libp2p/compare/webtransport-v3.0.7...webtransport-v3.0.8) (2023-09-01)


### Bug Fixes

* **@libp2p/webtransport:** remove filters export ([#2018](https://www.github.com/libp2p/js-libp2p/issues/2018)) ([3282563](https://www.github.com/libp2p/js-libp2p/commit/328256339b1539bb048f41cd22542234b2b7a44f))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* libp2p bumped from ^0.46.7 to ^0.46.8

### [3.0.7](https://www.github.com/libp2p/js-libp2p/compare/webtransport-v3.0.6...webtransport-v3.0.7) (2023-08-25)


Expand Down Expand Up @@ -251,4 +265,4 @@

* bump protons-runtime from 3.1.0 to 4.0.1 ([a7ef395](https://github.com/libp2p/js-libp2p-webtransport/commit/a7ef3959d024813caa327afdd502d5bcb91a15e3))
* **dev:** bump @libp2p/interface-mocks from 4.0.3 to 7.0.1 ([85a492d](https://github.com/libp2p/js-libp2p-webtransport/commit/85a492da5b8df76d710dd21dd4b8bf59df4e1184))
* **dev:** bump uint8arrays from 3.1.1 to 4.0.2 ([cb554e8](https://github.com/libp2p/js-libp2p-webtransport/commit/cb554e8dbb19a6ec5b085307f4c04c04ae313d2d))
* **dev:** bump uint8arrays from 3.1.1 to 4.0.2 ([cb554e8](https://github.com/libp2p/js-libp2p-webtransport/commit/cb554e8dbb19a6ec5b085307f4c04c04ae313d2d))
4 changes: 2 additions & 2 deletions packages/transport-webtransport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/webtransport",
"version": "3.0.7",
"version": "3.0.8",
"description": "JavaScript implementation of the WebTransport module that libp2p uses and that implements the interface-transport spec",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/transport-webtransport#readme",
Expand Down Expand Up @@ -72,7 +72,7 @@
},
"devDependencies": {
"aegir": "^40.0.8",
"libp2p": "^0.46.7",
"libp2p": "^0.46.8",
"p-defer": "^4.0.0"
},
"browser": {
Expand Down

0 comments on commit ac8a1ca

Please sign in to comment.