From af5d613e472a6333cdaf8a2f2dbdb350ae5b851b Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" <110212804+fryorcraken@users.noreply.github.com> Date: Wed, 2 Aug 2023 21:02:57 +1000 Subject: [PATCH] chore: release master (#1444) --- .release-please-manifest.json | 20 ++++++++++---------- packages/core/CHANGELOG.md | 21 +++++++++++++++++++++ packages/core/package.json | 6 +++--- packages/dns-discovery/CHANGELOG.md | 17 +++++++++++++++++ packages/dns-discovery/package.json | 8 ++++---- packages/enr/CHANGELOG.md | 8 ++++++++ packages/enr/package.json | 6 +++--- packages/interfaces/CHANGELOG.md | 7 +++++++ packages/interfaces/package.json | 2 +- packages/message-encryption/CHANGELOG.md | 8 ++++++++ packages/message-encryption/package.json | 8 ++++---- packages/message-hash/CHANGELOG.md | 8 ++++++++ packages/message-hash/package.json | 6 +++--- packages/peer-exchange/CHANGELOG.md | 17 +++++++++++++++++ packages/peer-exchange/package.json | 10 +++++----- packages/relay/CHANGELOG.md | 8 ++++++++ packages/relay/package.json | 8 ++++---- packages/sdk/CHANGELOG.md | 10 ++++++++++ packages/sdk/package.json | 12 ++++++------ packages/utils/CHANGELOG.md | 6 ++++++ packages/utils/package.json | 4 ++-- 21 files changed, 155 insertions(+), 45 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5b2b1b3f2c..00a37338a5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "packages/utils": "0.0.9", + "packages/utils": "0.0.10", "packages/proto": "0.0.5", - "packages/interfaces": "0.0.16", - "packages/message-hash": "0.1.5", - "packages/enr": "0.0.15", - "packages/peer-exchange": "0.0.14", - "packages/core": "0.0.21", - "packages/dns-discovery": "0.0.15", - "packages/message-encryption": "0.0.19", - "packages/relay": "0.0.4", - "packages/sdk": "0.0.17" + "packages/interfaces": "0.0.17", + "packages/message-hash": "0.1.6", + "packages/enr": "0.0.16", + "packages/peer-exchange": "0.0.15", + "packages/core": "0.0.22", + "packages/dns-discovery": "0.0.16", + "packages/message-encryption": "0.0.20", + "packages/relay": "0.0.5", + "packages/sdk": "0.0.18" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c21c9263a8..373d6d125c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file. The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification, and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.22](https://github.com/waku-org/js-waku/compare/core-v0.0.21...core-v0.0.22) (2023-08-02) + + +### Features + +* ConnectionManager extends EventEmitter & exposed on the Waku interface (& minor improvements) ([#1447](https://github.com/waku-org/js-waku/issues/1447)) ([0b8936f](https://github.com/waku-org/js-waku/commit/0b8936f1f1ad33f6cb90eb88d027a19e787ae7a2)) + + +### Bug Fixes + +* Improve connection manager error handling + edge cases ([#1450](https://github.com/waku-org/js-waku/issues/1450)) ([785df52](https://github.com/waku-org/js-waku/commit/785df528fe6e5010a61391994e222028dbc4e4c5)) +* Refactors message decoding to abort as soon as a suitable decoder found ([#1414](https://github.com/waku-org/js-waku/issues/1414)) ([30fcace](https://github.com/waku-org/js-waku/commit/30fcacea84d9aefbe71e7f4b48506a088f2e1bf8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + * @waku/utils bumped from 0.0.9 to 0.0.10 + ## [0.0.21](https://github.com/waku-org/js-waku/compare/core-v0.0.20...core-v0.0.21) (2023-07-26) diff --git a/packages/core/package.json b/packages/core/package.json index fd4a00cb94..aea917c438 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.21", + "version": "0.0.22", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -73,9 +73,9 @@ }, "dependencies": { "@noble/hashes": "^1.3.0", - "@waku/interfaces": "0.0.16", + "@waku/interfaces": "0.0.17", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.9", + "@waku/utils": "0.0.10", "debug": "^4.3.4", "it-all": "^3.0.2", "it-length-prefixed": "^9.0.1", diff --git a/packages/dns-discovery/CHANGELOG.md b/packages/dns-discovery/CHANGELOG.md index 3f6ff5f921..52c77f9b99 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -46,6 +46,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.13 to 0.0.14 +## [0.0.16](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.15...dns-discovery-v0.0.16) (2023-08-02) + + +### Bug Fixes + +* Improve connection manager error handling + edge cases ([#1450](https://github.com/waku-org/js-waku/issues/1450)) ([785df52](https://github.com/waku-org/js-waku/commit/785df528fe6e5010a61391994e222028dbc4e4c5)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from 0.0.15 to 0.0.16 + * @waku/utils bumped from 0.0.9 to 0.0.10 + * devDependencies + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.14...dns-discovery-v0.0.15) (2023-07-26) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 50b11d72c2..72c96e4b1d 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.15", + "version": "0.0.16", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,8 +53,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^2.0.0", "@libp2p/interfaces": "^3.3.2", - "@waku/enr": "0.0.15", - "@waku/utils": "0.0.9", + "@waku/enr": "0.0.16", + "@waku/utils": "0.0.10", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -71,7 +71,7 @@ "@rollup/plugin-node-resolve": "^15.0.2", "@types/chai": "^4.3.4", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.16", + "@waku/interfaces": "0.0.17", "chai": "^4.3.7", "cspell": "^6.31.1", "karma": "^6.4.1", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 1b01fc9244..7b8710e97f 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -51,6 +51,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.9 to 0.0.10 + * devDependencies + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/enr-v0.0.14...enr-v0.0.15) (2023-07-26) diff --git a/packages/enr/package.json b/packages/enr/package.json index a8fc8be74d..f0c1328d0b 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.15", + "version": "0.0.16", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -56,7 +56,7 @@ "@libp2p/peer-id": "^2.0.4", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "0.0.9", + "@waku/utils": "0.0.10", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -70,7 +70,7 @@ "@types/chai": "^4.3.4", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.16", + "@waku/interfaces": "0.0.17", "chai": "^4.3.7", "cspell": "^6.31.1", "karma": "^6.4.1", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 5be3f385cb..5cfc3e03d9 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification, and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.17](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.16...interfaces-v0.0.17) (2023-08-02) + + +### Features + +* ConnectionManager extends EventEmitter & exposed on the Waku interface (& minor improvements) ([#1447](https://github.com/waku-org/js-waku/issues/1447)) ([0b8936f](https://github.com/waku-org/js-waku/commit/0b8936f1f1ad33f6cb90eb88d027a19e787ae7a2)) + ## [0.0.16](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.15...interfaces-v0.0.16) (2023-07-26) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index bff2147acb..e72ec937d8 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.16", + "version": "0.0.17", "description": "Definition of Waku interfaces", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/message-encryption/CHANGELOG.md b/packages/message-encryption/CHANGELOG.md index 6f9c6bfc79..366392f5c5 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -52,6 +52,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.14 to 0.0.15 * @waku/utils bumped from 0.0.7 to 0.0.8 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.21 to 0.0.22 + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + * @waku/utils bumped from 0.0.9 to 0.0.10 + ## [0.0.19](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.18...message-encryption-v0.0.19) (2023-07-26) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index c97182b927..9139b415ff 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.19", + "version": "0.0.20", "description": "Waku Message Payload Encryption", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -72,10 +72,10 @@ }, "dependencies": { "@noble/secp256k1": "^1.7.1", - "@waku/core": "0.0.21", - "@waku/interfaces": "0.0.16", + "@waku/core": "0.0.22", + "@waku/interfaces": "0.0.17", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.9", + "@waku/utils": "0.0.10", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index 9611f181fe..d96dac26d8 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -24,6 +24,14 @@ * devDependencies * @waku/interfaces bumped from 0.0.15 to 0.0.16 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.9 to 0.0.10 + * devDependencies + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + ## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18) diff --git a/packages/message-hash/package.json b/packages/message-hash/package.json index b7e84b7bfb..0cb8068415 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.5", + "version": "0.1.6", "description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,7 +53,7 @@ }, "dependencies": { "@noble/hashes": "^1.2.0", - "@waku/utils": "0.0.9" + "@waku/utils": "0.0.10" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", @@ -63,7 +63,7 @@ "@types/debug": "^4.1.7", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.16", + "@waku/interfaces": "0.0.17", "chai": "^4.3.7", "cspell": "^6.28.0", "fast-check": "^3.7.0", diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index 40496a797d..8477f42577 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -64,6 +64,23 @@ * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +## [0.0.15](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.14...peer-exchange-v0.0.15) (2023-08-02) + + +### Bug Fixes + +* Improve connection manager error handling + edge cases ([#1450](https://github.com/waku-org/js-waku/issues/1450)) ([785df52](https://github.com/waku-org/js-waku/commit/785df528fe6e5010a61391994e222028dbc4e4c5)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.21 to 0.0.22 + * @waku/enr bumped from 0.0.15 to 0.0.16 + * @waku/utils bumped from 0.0.9 to 0.0.10 + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + ## [0.0.14](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.13...peer-exchange-v0.0.14) (2023-07-26) diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index d4132580d7..8e91076f5d 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.14", + "version": "0.0.15", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -50,11 +50,11 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^2.0.0", "@libp2p/interfaces": "^3.3.2", - "@waku/core": "0.0.21", - "@waku/enr": "0.0.15", + "@waku/core": "0.0.22", + "@waku/enr": "0.0.16", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.9", - "@waku/interfaces": "0.0.16", + "@waku/utils": "0.0.10", + "@waku/interfaces": "0.0.17", "debug": "^4.3.4", "it-all": "^3.0.2", "it-length-prefixed": "^9.0.1", diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index 81e5a17f41..95961aab45 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -17,6 +17,14 @@ * @waku/interfaces bumped from 0.0.14 to 0.0.15 * @waku/utils bumped from 0.0.7 to 0.0.8 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.21 to 0.0.22 + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + * @waku/utils bumped from 0.0.9 to 0.0.10 + ## [0.0.4](https://github.com/waku-org/js-waku/compare/relay-v0.0.3...relay-v0.0.4) (2023-07-26) diff --git a/packages/relay/package.json b/packages/relay/package.json index cdcb2de4d9..2e84032019 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.4", + "version": "0.0.5", "description": "Relay Protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,10 +51,10 @@ "dependencies": { "@chainsafe/libp2p-gossipsub": "^9.1.0", "@noble/hashes": "^1.3.0", - "@waku/core": "0.0.21", - "@waku/interfaces": "0.0.16", + "@waku/core": "0.0.22", + "@waku/interfaces": "0.0.17", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.9", + "@waku/utils": "0.0.10", "chai": "^4.3.7", "debug": "^4.3.4", "fast-check": "^3.8.1" diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 19ec8354ab..106978cac6 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -26,6 +26,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.11 to 0.0.12 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.9 to 0.0.10 + * @waku/relay bumped from 0.0.4 to 0.0.5 + * @waku/core bumped from 0.0.21 to 0.0.22 + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + * @waku/dns-discovery bumped from 0.0.15 to 0.0.16 + ## [0.0.17](https://github.com/waku-org/js-waku/compare/sdk-v0.0.16...sdk-v0.0.17) (2023-07-26) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index ee5204943c..3731f8749a 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.17", + "version": "0.0.18", "description": "A unified SDK for easy creation and management of js-waku nodes.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,11 +51,11 @@ "@chainsafe/libp2p-noise": "^12.0.1", "@libp2p/mplex": "^8.0.4", "@libp2p/websockets": "^6.0.3", - "@waku/utils": "0.0.9", - "@waku/relay": "0.0.4", - "@waku/core": "0.0.21", - "@waku/interfaces": "0.0.16", - "@waku/dns-discovery": "0.0.15", + "@waku/utils": "0.0.10", + "@waku/relay": "0.0.5", + "@waku/core": "0.0.22", + "@waku/interfaces": "0.0.17", + "@waku/dns-discovery": "0.0.16", "libp2p": "^0.45.9" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index e9a43faba3..8f9ec99c4e 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -6,6 +6,12 @@ * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @waku/interfaces bumped from 0.0.16 to 0.0.17 + ## [0.0.9](https://github.com/waku-org/js-waku/compare/utils-v0.0.8...utils-v0.0.9) (2023-07-26) diff --git a/packages/utils/package.json b/packages/utils/package.json index 78754dfc93..8fe2ea23a0 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.9", + "version": "0.0.10", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -76,7 +76,7 @@ "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.2", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.16", + "@waku/interfaces": "0.0.17", "cspell": "^6.31.1", "npm-run-all": "^4.1.5", "prettier": "^2.8.8",