Skip to content

Commit

Permalink
chore: release master (libp2p#1920)
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] committed Aug 1, 2023
1 parent 8f855a3 commit b3c87b6
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 40 deletions.
28 changes: 1 addition & 27 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,27 +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/pubsub":"8.0.0",
"packages/pubsub-floodsub":"8.0.0",
"packages/stream-multiplexer-mplex":"9.0.0",
"packages/transport-tcp":"8.0.0",
"packages/transport-webrtc":"3.1.0",
"packages/transport-websockets":"7.0.0",
"packages/transport-webtransport":"3.0.0",
"packages/utils":"4.0.0"
}
{"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.1","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/pubsub":"8.0.1","packages/pubsub-floodsub":"8.0.1","packages/stream-multiplexer-mplex":"9.0.0","packages/transport-tcp":"8.0.0","packages/transport-webrtc":"3.1.1","packages/transport-websockets":"7.0.0","packages/transport-webtransport":"3.0.1","packages/utils":"4.0.0"}
11 changes: 10 additions & 1 deletion packages/libp2p/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@

* 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.1](https://www.github.com/libp2p/js-libp2p/compare/libp2p-v0.46.0...libp2p-v0.46.1) (2023-08-01)


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @libp2p/floodsub bumped from ^8.0.0 to ^8.0.1

## [0.46.0](https://www.github.com/libp2p/js-libp2p/compare/libp2p-v0.45.9...libp2p-v0.46.0) (2023-07-31)


Expand Down Expand Up @@ -2264,4 +2273,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.0",
"version": "0.46.1",
"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 @@ -166,7 +166,7 @@
"@libp2p/bootstrap": "^9.0.0",
"@libp2p/daemon-client": "^7.0.0",
"@libp2p/daemon-server": "^6.0.0",
"@libp2p/floodsub": "^8.0.0",
"@libp2p/floodsub": "^8.0.1",
"@libp2p/interface-compliance-tests": "^4.0.0",
"@libp2p/interop": "^9.0.0",
"@libp2p/kad-dht": "^10.0.0",
Expand Down
16 changes: 15 additions & 1 deletion packages/pubsub-floodsub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@

* **dev:** bump aegir from 38.1.8 to 39.0.10 ([#233](https://github.com/libp2p/js-libp2p-floodsub/issues/233)) ([e073298](https://github.com/libp2p/js-libp2p-floodsub/commit/e073298f324a89656b0ca6d9a629e60eaedc7873))

### [8.0.1](https://www.github.com/libp2p/js-libp2p/compare/floodsub-v8.0.0...floodsub-v8.0.1) (2023-08-01)


### Bug Fixes

* update package config ([#1919](https://www.github.com/libp2p/js-libp2p/issues/1919)) ([8d49602](https://www.github.com/libp2p/js-libp2p/commit/8d49602fb6f0c906f1920d397ff28705bb0bc845))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @libp2p/pubsub bumped from ^8.0.0 to ^8.0.1

## [7.0.1](https://github.com/libp2p/js-libp2p-floodsub/compare/v7.0.0...v7.0.1) (2023-04-18)


Expand Down Expand Up @@ -882,4 +896,4 @@


<a name="0.1.0"></a>
# 0.1.0 (2016-09-14)
# 0.1.0 (2016-09-14)
4 changes: 2 additions & 2 deletions packages/pubsub-floodsub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/floodsub",
"version": "8.0.0",
"version": "8.0.1",
"description": "libp2p-floodsub, also known as pubsub-flood or just dumbsub, this implementation of pubsub focused on delivering an API for Publish/Subscribe, but with no CastTree Forming (it just floods the network).",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/pubsub-floodsub#readme",
Expand Down Expand Up @@ -56,7 +56,7 @@
"dependencies": {
"@libp2p/interface": "^0.1.0",
"@libp2p/logger": "^3.0.0",
"@libp2p/pubsub": "^8.0.0",
"@libp2p/pubsub": "^8.0.1",
"protons-runtime": "^5.0.0",
"uint8arraylist": "^2.4.3",
"uint8arrays": "^4.0.4"
Expand Down
7 changes: 7 additions & 0 deletions packages/pubsub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@

* **dev:** bump delay from 5.0.0 to 6.0.0 ([#144](https://github.com/libp2p/js-libp2p-pubsub/issues/144)) ([1364ce4](https://github.com/libp2p/js-libp2p-pubsub/commit/1364ce41815d3392cfca61169e113cc5414ac2d9))

### [8.0.1](https://www.github.com/libp2p/js-libp2p/compare/pubsub-v8.0.0...pubsub-v8.0.1) (2023-08-01)


### Bug Fixes

* update package config ([#1919](https://www.github.com/libp2p/js-libp2p/issues/1919)) ([8d49602](https://www.github.com/libp2p/js-libp2p/commit/8d49602fb6f0c906f1920d397ff28705bb0bc845))

## [7.0.2](https://github.com/libp2p/js-libp2p-pubsub/compare/v7.0.1...v7.0.2) (2023-06-27)


Expand Down
2 changes: 1 addition & 1 deletion packages/pubsub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/pubsub",
"version": "8.0.0",
"version": "8.0.1",
"description": "libp2p pubsub base class",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/pubsub#readme",
Expand Down
16 changes: 15 additions & 1 deletion packages/transport-webrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@

* 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.1](https://www.github.com/libp2p/js-libp2p/compare/webrtc-v3.1.0...webrtc-v3.1.1) (2023-08-01)


### Bug Fixes

* update package config ([#1919](https://www.github.com/libp2p/js-libp2p/issues/1919)) ([8d49602](https://www.github.com/libp2p/js-libp2p/commit/8d49602fb6f0c906f1920d397ff28705bb0bc845))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* libp2p bumped from ^0.46.0 to ^0.46.1

## [3.1.0](https://www.github.com/libp2p/js-libp2p/compare/webrtc-v3.0.0...webrtc-v3.1.0) (2023-07-31)


Expand Down Expand Up @@ -282,4 +296,4 @@

### Documentation

* fix 'browser to server' build config ([#66](https://github.com/libp2p/js-libp2p-webrtc/issues/66)) ([b54132c](https://github.com/libp2p/js-libp2p-webrtc/commit/b54132cecac180f0577a1b7905f79b20207c3647))
* fix 'browser to server' build config ([#66](https://github.com/libp2p/js-libp2p-webrtc/issues/66)) ([b54132c](https://github.com/libp2p/js-libp2p-webrtc/commit/b54132cecac180f0577a1b7905f79b20207c3647))
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.0",
"version": "3.1.1",
"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.0",
"libp2p": "^0.46.1",
"protons": "^7.0.2",
"sinon": "^15.1.2",
"sinon-ts": "^1.0.0"
Expand Down
11 changes: 10 additions & 1 deletion packages/transport-webtransport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@

* 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.1](https://www.github.com/libp2p/js-libp2p/compare/webtransport-v3.0.0...webtransport-v3.0.1) (2023-08-01)


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* libp2p bumped from ^0.46.0 to ^0.46.1

## [3.0.0](https://www.github.com/libp2p/js-libp2p/compare/webtransport-v2.0.2...webtransport-v3.0.0) (2023-07-31)


Expand Down Expand Up @@ -169,4 +178,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.0",
"version": "3.0.1",
"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 @@ -75,7 +75,7 @@
},
"devDependencies": {
"aegir": "^40.0.1",
"libp2p": "^0.46.0",
"libp2p": "^0.46.1",
"p-defer": "^4.0.0"
},
"browser": {
Expand Down

0 comments on commit b3c87b6

Please sign in to comment.