From 0e4ceb6ac991adf53bdc2b93d9ab36a8952aff9f Mon Sep 17 00:00:00 2001 From: fryorcraken <110212804+fryorcraken@users.noreply.github.com> Date: Tue, 17 Oct 2023 01:18:34 +1100 Subject: [PATCH] chore: release master (#1568) --- .release-please-manifest.json | 20 +++++++------- packages/core/CHANGELOG.md | 34 ++++++++++++++++++++++++ packages/core/package.json | 8 +++--- packages/dns-discovery/CHANGELOG.md | 18 +++++++++++++ packages/dns-discovery/package.json | 8 +++--- packages/enr/CHANGELOG.md | 17 ++++++++++++ packages/enr/package.json | 6 ++--- packages/interfaces/CHANGELOG.md | 19 +++++++++++++ packages/interfaces/package.json | 2 +- packages/message-encryption/CHANGELOG.md | 21 +++++++++++++++ packages/message-encryption/package.json | 8 +++--- packages/message-hash/CHANGELOG.md | 16 +++++++++++ packages/message-hash/package.json | 6 ++--- packages/peer-exchange/CHANGELOG.md | 17 ++++++++++++ packages/peer-exchange/package.json | 10 +++---- packages/relay/CHANGELOG.md | 20 ++++++++++++++ packages/relay/package.json | 8 +++--- packages/sdk/CHANGELOG.md | 19 +++++++++++++ packages/sdk/package.json | 14 +++++----- packages/utils/CHANGELOG.md | 19 +++++++++++++ packages/utils/package.json | 4 +-- 21 files changed, 247 insertions(+), 47 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6b96b64096..f6f0bdf5cd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "packages/utils": "0.0.11", + "packages/utils": "0.0.12", "packages/proto": "0.0.5", - "packages/interfaces": "0.0.18", - "packages/message-hash": "0.1.7", - "packages/enr": "0.0.17", - "packages/peer-exchange": "0.0.16", - "packages/core": "0.0.23", - "packages/dns-discovery": "0.0.17", - "packages/message-encryption": "0.0.21", - "packages/relay": "0.0.6", - "packages/sdk": "0.0.19" + "packages/interfaces": "0.0.19", + "packages/message-hash": "0.1.8", + "packages/enr": "0.0.18", + "packages/peer-exchange": "0.0.17", + "packages/core": "0.0.24", + "packages/dns-discovery": "0.0.18", + "packages/message-encryption": "0.0.22", + "packages/relay": "0.0.7", + "packages/sdk": "0.0.20" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b084555df0..ed9980b39d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,40 @@ 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.24](https://github.com/waku-org/js-waku/compare/core-v0.0.23...core-v0.0.24) (2023-10-16) + + +### ⚠ BREAKING CHANGES + +* **store:** use `pubSubTopic` from `DecodedMessage` for `createCursor` ([#1640](https://github.com/waku-org/js-waku/issues/1640)) +* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) +* return `REMOTE_PEER_REJECTED` if remote peer rejected the message + +### Features + +* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab)) +* Enable pinging connected peers by default ([#1647](https://github.com/waku-org/js-waku/issues/1647)) ([1d60c4b](https://github.com/waku-org/js-waku/commit/1d60c4ba44f7fd511371e926247d9151590edec5)) +* Return `REMOTE_PEER_REJECTED` if remote peer rejected the message ([053b654](https://github.com/waku-org/js-waku/commit/053b6545ad0c2450af5687495eb7b6049c0f21ad)) +* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6)) +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Bug Fixes + +* Catch stream creation promise rejection for `lightPush.send` ([b696a89](https://github.com/waku-org/js-waku/commit/b696a8957211bf20577f419a207a23ceca03d23f)) +* Catch top level exception when preemptively creating streams ([fb37c89](https://github.com/waku-org/js-waku/commit/fb37c89e40a9d7c98bef17a085876478486fca8b)) +* **store:** Use `pubSubTopic` from `DecodedMessage` for `createCursor` ([#1640](https://github.com/waku-org/js-waku/issues/1640)) ([b10c46b](https://github.com/waku-org/js-waku/commit/b10c46b910511418a048d7092dfd8b500a71a931)) +* Throw error when no response ([#1567](https://github.com/waku-org/js-waku/issues/1567)) ([d049ebb](https://github.com/waku-org/js-waku/commit/d049ebbc3417e5c20eccba3aa1b9fc5382e8d7fc)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from ^0.0.17 to ^0.0.18 + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + * @waku/utils bumped from 0.0.11 to 0.0.12 + ## [0.0.23](https://github.com/waku-org/js-waku/compare/core-v0.0.22...core-v0.0.23) (2023-09-11) diff --git a/packages/core/package.json b/packages/core/package.json index 3cec1f8272..cb91567fc7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.23", + "version": "0.0.24", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -73,10 +73,10 @@ }, "dependencies": { "@noble/hashes": "^1.3.2", - "@waku/enr": "^0.0.17", - "@waku/interfaces": "0.0.18", + "@waku/enr": "^0.0.18", + "@waku/interfaces": "0.0.19", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.11", + "@waku/utils": "0.0.12", "debug": "^4.3.4", "it-all": "^3.0.3", "it-length-prefixed": "^9.0.1", diff --git a/packages/dns-discovery/CHANGELOG.md b/packages/dns-discovery/CHANGELOG.md index 582c991959..e0ccf2e5da 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -46,6 +46,24 @@ 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.18](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.17...dns-discovery-v0.0.18) (2023-10-16) + + +### Features + +* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab)) +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from 0.0.17 to 0.0.18 + * @waku/utils bumped from 0.0.11 to 0.0.12 + * devDependencies + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + ## [0.0.17](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.16...dns-discovery-v0.0.17) (2023-09-11) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 4644c3bad7..6a7eb86152 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.17", + "version": "0.0.18", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,8 +51,8 @@ "node": ">=18" }, "dependencies": { - "@waku/enr": "0.0.17", - "@waku/utils": "0.0.11", + "@waku/enr": "0.0.18", + "@waku/utils": "0.0.12", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -67,7 +67,7 @@ "@rollup/plugin-node-resolve": "^15.1.0", "@types/chai": "^4.3.5", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.18", + "@waku/interfaces": "0.0.19", "chai": "^4.3.7", "cspell": "^7.3.2", "mocha": "^10.2.0", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 633a21f8fc..2724f33876 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -59,6 +59,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.0.18](https://github.com/waku-org/js-waku/compare/enr-v0.0.17...enr-v0.0.18) (2023-10-16) + + +### Features + +* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab)) +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.11 to 0.0.12 + * devDependencies + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + ## [0.0.17](https://github.com/waku-org/js-waku/compare/enr-v0.0.16...enr-v0.0.17) (2023-09-11) diff --git a/packages/enr/package.json b/packages/enr/package.json index 9a34330df4..40a1ffc28d 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.17", + "version": "0.0.18", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -56,7 +56,7 @@ "@libp2p/peer-id": "^3.0.2", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "0.0.11", + "@waku/utils": "0.0.12", "debug": "^4.3.4", "js-sha3": "^0.9.2" }, @@ -68,7 +68,7 @@ "@types/chai": "^4.3.5", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.18", + "@waku/interfaces": "0.0.19", "chai": "^4.3.7", "cspell": "^7.3.2", "fast-check": "^3.13.1", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index f26270ae90..822d1acbb3 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,25 @@ 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.19](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.18...interfaces-v0.0.19) (2023-10-16) + + +### ⚠ BREAKING CHANGES + +* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) +* return `REMOTE_PEER_REJECTED` if remote peer rejected the message + +### Features + +* Return `REMOTE_PEER_REJECTED` if remote peer rejected the message ([053b654](https://github.com/waku-org/js-waku/commit/053b6545ad0c2450af5687495eb7b6049c0f21ad)) +* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6)) +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Bug Fixes + +* Catch stream creation promise rejection for `lightPush.send` ([b696a89](https://github.com/waku-org/js-waku/commit/b696a8957211bf20577f419a207a23ceca03d23f)) + ## [0.0.18](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.17...interfaces-v0.0.18) (2023-09-11) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index f9e7fc3d31..6630e5dd6f 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.18", + "version": "0.0.19", "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 cc0e7dcf20..f33dbe4413 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -68,6 +68,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.17 to 0.0.18 * @waku/utils bumped from 0.0.10 to 0.0.11 +## [0.0.22](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.21...message-encryption-v0.0.22) (2023-10-16) + + +### ⚠ BREAKING CHANGES + +* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) + +### Features + +* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab)) +* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.23 to 0.0.24 + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + * @waku/utils bumped from 0.0.11 to 0.0.12 + ## [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 bda18ea52d..761e0b1398 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.21", + "version": "0.0.22", "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.23", - "@waku/interfaces": "0.0.18", + "@waku/core": "0.0.24", + "@waku/interfaces": "0.0.19", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.11", + "@waku/utils": "0.0.12", "debug": "^4.3.4", "js-sha3": "^0.9.2" }, diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index 56d97e0944..84bcc4ef32 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -32,6 +32,22 @@ * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.1.8](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.7...message-hash-v0.1.8) (2023-10-16) + + +### Features + +* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.11 to 0.0.12 + * devDependencies + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + ## [0.1.7](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.6...message-hash-v0.1.7) (2023-09-11) diff --git a/packages/message-hash/package.json b/packages/message-hash/package.json index 6a140e3892..72e324d2ce 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.7", + "version": "0.1.8", "description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,7 +51,7 @@ }, "dependencies": { "@noble/hashes": "^1.3.2", - "@waku/utils": "0.0.11" + "@waku/utils": "0.0.12" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.4", @@ -61,7 +61,7 @@ "@types/debug": "^4.1.8", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.18", + "@waku/interfaces": "0.0.19", "chai": "^4.3.7", "cspell": "^7.3.2", "fast-check": "^3.13.1", diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index 7762ed542b..dbe7ffe61f 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.17](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.16...peer-exchange-v0.0.17) (2023-10-16) + + +### Features + +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.23 to 0.0.24 + * @waku/enr bumped from 0.0.17 to 0.0.18 + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + * @waku/utils bumped from 0.0.11 to 0.0.12 + ## [0.0.16](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.15...peer-exchange-v0.0.16) (2023-09-11) diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index 1ce391821b..9eecb26be3 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.16", + "version": "0.0.17", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -49,11 +49,11 @@ }, "dependencies": { "@libp2p/interfaces": "^3.3.2", - "@waku/core": "0.0.23", - "@waku/enr": "0.0.17", - "@waku/interfaces": "0.0.18", + "@waku/core": "0.0.24", + "@waku/enr": "0.0.18", + "@waku/interfaces": "0.0.19", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.11", + "@waku/utils": "0.0.12", "debug": "^4.3.4", "it-all": "^3.0.3", "it-length-prefixed": "^9.0.1", diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index 3b3f351065..abeb8b67e3 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -25,6 +25,26 @@ * @waku/interfaces bumped from 0.0.16 to 0.0.17 * @waku/utils bumped from 0.0.9 to 0.0.10 +## [0.0.7](https://github.com/waku-org/js-waku/compare/relay-v0.0.6...relay-v0.0.7) (2023-10-16) + + +### ⚠ BREAKING CHANGES + +* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) + +### Features + +* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.23 to 0.0.24 + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + * @waku/utils bumped from 0.0.11 to 0.0.12 + ## [0.0.6](https://github.com/waku-org/js-waku/compare/relay-v0.0.5...relay-v0.0.6) (2023-09-11) diff --git a/packages/relay/package.json b/packages/relay/package.json index 5551218382..0818be2424 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.6", + "version": "0.0.7", "description": "Relay Protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,10 +51,10 @@ "dependencies": { "@chainsafe/libp2p-gossipsub": "^10.1.0", "@noble/hashes": "^1.3.2", - "@waku/core": "0.0.23", - "@waku/interfaces": "0.0.18", + "@waku/core": "0.0.24", + "@waku/interfaces": "0.0.19", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.11", + "@waku/utils": "0.0.12", "chai": "^4.3.7", "debug": "^4.3.4", "fast-check": "^3.13.1" diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index cde892d7dc..2006cdb8d5 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -36,6 +36,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @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.20](https://github.com/waku-org/js-waku/compare/sdk-v0.0.19...sdk-v0.0.20) (2023-10-16) + + +### Features + +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.11 to 0.0.12 + * @waku/relay bumped from 0.0.6 to 0.0.7 + * @waku/core bumped from 0.0.23 to 0.0.24 + * @waku/dns-discovery bumped from 0.0.17 to 0.0.18 + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + * @waku/peer-exchange bumped from ^0.0.16 to ^0.0.17 + ## [0.0.19](https://github.com/waku-org/js-waku/compare/sdk-v0.0.18...sdk-v0.0.19) (2023-09-11) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 638e6b76f2..b15b678f0f 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.19", + "version": "0.0.20", "description": "A unified SDK for easy creation and management of js-waku nodes.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,12 +51,12 @@ "@chainsafe/libp2p-noise": "^13.0.0", "@libp2p/mplex": "^9.0.5", "@libp2p/websockets": "^7.0.5", - "@waku/utils": "0.0.11", - "@waku/relay": "0.0.6", - "@waku/core": "0.0.23", - "@waku/dns-discovery": "0.0.17", - "@waku/interfaces": "0.0.18", - "@waku/peer-exchange": "^0.0.16", + "@waku/utils": "0.0.12", + "@waku/relay": "0.0.7", + "@waku/core": "0.0.24", + "@waku/dns-discovery": "0.0.18", + "@waku/interfaces": "0.0.19", + "@waku/peer-exchange": "^0.0.17", "libp2p": "^0.46.12" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b16aeff580..cb6ae809ef 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -12,6 +12,25 @@ * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.0.12](https://github.com/waku-org/js-waku/compare/utils-v0.0.11...utils-v0.0.12) (2023-10-16) + + +### ⚠ BREAKING CHANGES + +* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) + +### Features + +* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6)) +* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @waku/interfaces bumped from 0.0.18 to 0.0.19 + ## [0.0.11](https://github.com/waku-org/js-waku/compare/utils-v0.0.10...utils-v0.0.11) (2023-09-11) diff --git a/packages/utils/package.json b/packages/utils/package.json index d4b3f25a42..45f1f87a5c 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.11", + "version": "0.0.12", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -74,7 +74,7 @@ "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.1.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.18", + "@waku/interfaces": "0.0.19", "cspell": "^7.3.2", "npm-run-all": "^4.1.5", "rollup": "^3.29.2"