diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3fb78d6f3f..016a6d2f94 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "packages/utils": "0.0.16", - "packages/proto": "0.0.6", - "packages/interfaces": "0.0.23", - "packages/message-hash": "0.1.12", - "packages/enr": "0.0.22", - "packages/core": "0.0.28", - "packages/message-encryption": "0.0.26", - "packages/relay": "0.0.11", - "packages/sdk": "0.0.24", - "packages/discovery": "0.0.1", + "packages/utils": "0.0.17", + "packages/proto": "0.0.7", + "packages/interfaces": "0.0.24", + "packages/message-hash": "0.1.13", + "packages/enr": "0.0.23", + "packages/core": "0.0.29", + "packages/message-encryption": "0.0.27", + "packages/relay": "0.0.12", + "packages/sdk": "0.0.25", + "packages/discovery": "0.0.2", "packages/react-native-polyfills": "0.0.1" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e5ef36ad3d..368f0fb273 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,39 @@ 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.29](https://github.com/waku-org/js-waku/compare/core-v0.0.28...core-v0.0.29) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) +* **lightpush:** move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) + +### Features + +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Bug Fixes + +* Only override ping metadata in peer store ([#1984](https://github.com/waku-org/js-waku/issues/1984)) ([fb34b72](https://github.com/waku-org/js-waku/commit/fb34b7262a8d85fdf76cb30774d14bcd3a150f58)) +* Use correct shard index when creating encoder ([9514653](https://github.com/waku-org/js-waku/commit/95146534288f842ff1cf180fc62850d539937a05)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) ([5fb1006](https://github.com/waku-org/js-waku/commit/5fb100602b347ad13718c85c52d22a932c15aa18)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from ^0.0.22 to ^0.0.23 + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + * @waku/proto bumped from 0.0.6 to 0.0.7 + * @waku/utils bumped from 0.0.16 to 0.0.17 + ## [0.0.28](https://github.com/waku-org/js-waku/compare/core-v0.0.27...core-v0.0.28) (2024-04-09) diff --git a/packages/core/package.json b/packages/core/package.json index 8fa55b9c7f..71aac2d688 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.28", + "version": "0.0.29", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -73,10 +73,10 @@ }, "dependencies": { "@libp2p/ping": "^1.0.12", - "@waku/enr": "^0.0.22", - "@waku/interfaces": "0.0.23", - "@waku/proto": "0.0.6", - "@waku/utils": "0.0.16", + "@waku/enr": "^0.0.23", + "@waku/interfaces": "0.0.24", + "@waku/proto": "0.0.7", + "@waku/utils": "0.0.17", "debug": "^4.3.4", "it-all": "^3.0.4", "it-length-prefixed": "^9.0.4", diff --git a/packages/discovery/CHANGELOG.md b/packages/discovery/CHANGELOG.md index fc807dea9b..3bb0faab0b 100644 --- a/packages/discovery/CHANGELOG.md +++ b/packages/discovery/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.0.2](https://github.com/waku-org/js-waku/compare/discovery-v0.0.1...discovery-v0.0.2) (2024-04-30) + + +### Bug Fixes + +* Add try catch to local store ([#1956](https://github.com/waku-org/js-waku/issues/1956)) ([e5e8cd5](https://github.com/waku-org/js-waku/commit/e5e8cd5e170defc1c50ec785568b92764e904dd5)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + * @waku/proto bumped from ^0.0.6 to ^0.0.7 + * @waku/enr bumped from 0.0.22 to 0.0.23 + * @waku/core bumped from 0.0.28 to 0.0.29 + * @waku/utils bumped from 0.0.16 to 0.0.17 + ## 0.0.1 (2024-04-09) diff --git a/packages/discovery/package.json b/packages/discovery/package.json index d70a540713..fe67a4b537 100644 --- a/packages/discovery/package.json +++ b/packages/discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/discovery", - "version": "0.0.1", + "version": "0.0.2", "description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,11 +51,11 @@ "node": ">=18" }, "dependencies": { - "@waku/interfaces": "0.0.23", - "@waku/proto": "^0.0.6", - "@waku/enr": "0.0.22", - "@waku/core": "0.0.28", - "@waku/utils": "0.0.16", + "@waku/interfaces": "0.0.24", + "@waku/proto": "^0.0.7", + "@waku/enr": "0.0.23", + "@waku/core": "0.0.29", + "@waku/utils": "0.0.17", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index fa429d3308..b04bf07ce8 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -67,6 +67,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.20 to 0.0.21 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.16 to 0.0.17 + * devDependencies + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + ## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09) diff --git a/packages/enr/package.json b/packages/enr/package.json index df2c13a8e1..9fa9dcfbef 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.22", + "version": "0.0.23", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -56,7 +56,7 @@ "@libp2p/peer-id": "^4.0.4", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "0.0.16", + "@waku/utils": "0.0.17", "debug": "^4.3.4", "js-sha3": "^0.9.2" }, @@ -68,7 +68,7 @@ "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.23", + "@waku/interfaces": "0.0.24", "chai": "^4.3.10", "cspell": "^8.6.1", "fast-check": "^3.15.1", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 0014234bad..4002fed645 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,38 @@ 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/interfaces-v0.0.23...interfaces-v0.0.24) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) +* **lightpush:** move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) + +### Features + +* Add keep alive to Filter ([#1970](https://github.com/waku-org/js-waku/issues/1970)) ([1a6bc4f](https://github.com/waku-org/js-waku/commit/1a6bc4f8ce5d3409b3e82b8b0685beb80f48269a)) +* Add libp2p option for max ping connections ([fa523b7](https://github.com/waku-org/js-waku/commit/fa523b78afa8e87d705c98d1be92f8e6ae1f4ed2)) +* Lift contentTopics and make shardInfo mandatory for createLight… ([#1959](https://github.com/waku-org/js-waku/issues/1959)) ([5b03709](https://github.com/waku-org/js-waku/commit/5b03709dfe683b1cb001fe67c5bd013e664b4d89)) +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Bug Fixes + +* Use correct shard index when creating encoder ([9514653](https://github.com/waku-org/js-waku/commit/95146534288f842ff1cf180fc62850d539937a05)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) ([5fb1006](https://github.com/waku-org/js-waku/commit/5fb100602b347ad13718c85c52d22a932c15aa18)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/proto bumped from ^0.0.6 to ^0.0.7 + ## [0.0.23](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.22...interfaces-v0.0.23) (2024-04-09) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index 30b8ca84ed..911f9e954d 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.23", + "version": "0.0.24", "description": "Definition of Waku interfaces", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -64,6 +64,6 @@ "README.md" ], "dependencies": { - "@waku/proto": "^0.0.6" + "@waku/proto": "^0.0.7" } } diff --git a/packages/message-encryption/CHANGELOG.md b/packages/message-encryption/CHANGELOG.md index 2de89c5b6e..acd996f4b5 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -76,6 +76,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.21 to 0.0.22 * @waku/utils bumped from 0.0.14 to 0.0.15 +## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) + +### Features + +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.28 to 0.0.29 + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + * @waku/proto bumped from 0.0.6 to 0.0.7 + * @waku/utils bumped from 0.0.16 to 0.0.17 + ## [0.0.26](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.25...message-encryption-v0.0.26) (2024-04-09) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index 0eb7773cd5..b428d9883c 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.26", + "version": "0.0.27", "description": "Waku Message Payload Encryption", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -76,10 +76,10 @@ }, "dependencies": { "@noble/secp256k1": "^1.7.1", - "@waku/core": "0.0.28", - "@waku/interfaces": "0.0.23", - "@waku/proto": "0.0.6", - "@waku/utils": "0.0.16", + "@waku/core": "0.0.29", + "@waku/interfaces": "0.0.24", + "@waku/proto": "0.0.7", + "@waku/utils": "0.0.17", "debug": "^4.3.4", "js-sha3": "^0.9.2", "uint8arrays": "^5.0.1" diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index dcc315b1ec..3f12ea734e 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -48,6 +48,27 @@ * devDependencies * @waku/interfaces bumped from 0.0.20 to 0.0.21 +## [0.1.13](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.12...message-hash-v0.1.13) (2024-04-30) + + +### Features + +* Make message hash compatible with decoded message ([#1993](https://github.com/waku-org/js-waku/issues/1993)) ([e529335](https://github.com/waku-org/js-waku/commit/e5293356d86231f413810f97e41d02430732f15c)) + + +### Bug Fixes + +* **message-hash:** Account for `timestamp` ([#1986](https://github.com/waku-org/js-waku/issues/1986)) ([73d4f19](https://github.com/waku-org/js-waku/commit/73d4f197467fe3e58fc49e3264f73e00a79004f9)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.16 to 0.0.17 + * devDependencies + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + ## [0.1.12](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.11...message-hash-v0.1.12) (2024-04-09) diff --git a/packages/message-hash/package.json b/packages/message-hash/package.json index 6618a32f21..4cd4a984aa 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.12", + "version": "0.1.13", "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.16" + "@waku/utils": "0.0.17" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", @@ -61,7 +61,7 @@ "@types/debug": "^4.1.12", "@types/mocha": "^10.0.6", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.23", + "@waku/interfaces": "0.0.24", "chai": "^4.3.10", "cspell": "^8.6.1", "fast-check": "^3.15.1", diff --git a/packages/proto/CHANGELOG.md b/packages/proto/CHANGELOG.md index 58b71a5378..63fead12bf 100644 --- a/packages/proto/CHANGELOG.md +++ b/packages/proto/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.7](https://github.com/waku-org/js-waku/compare/proto-v0.0.6...proto-v0.0.7) (2024-04-30) + + +### Bug Fixes + +* Use correct error message for store rate limit ([6990e6f](https://github.com/waku-org/js-waku/commit/6990e6f4e04d57ac06ef370c8c3642a17911cdf3)) + ## [0.0.6](https://github.com/waku-org/js-waku/compare/proto-v0.0.5...proto-v0.0.6) (2024-01-10) diff --git a/packages/proto/package.json b/packages/proto/package.json index 3345c92fac..6f72e4a73b 100644 --- a/packages/proto/package.json +++ b/packages/proto/package.json @@ -1,6 +1,6 @@ { "name": "@waku/proto", - "version": "0.0.6", + "version": "0.0.7", "description": "Protobuf definitions for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index 1d058104fb..80cdc8176c 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -25,6 +25,27 @@ * @waku/interfaces bumped from 0.0.16 to 0.0.17 * @waku/utils bumped from 0.0.9 to 0.0.10 +## [0.0.12](https://github.com/waku-org/js-waku/compare/relay-v0.0.11...relay-v0.0.12) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) + +### Features + +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.28 to 0.0.29 + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + * @waku/proto bumped from 0.0.6 to 0.0.7 + * @waku/utils bumped from 0.0.16 to 0.0.17 + ## [0.0.11](https://github.com/waku-org/js-waku/compare/relay-v0.0.10...relay-v0.0.11) (2024-04-09) diff --git a/packages/relay/package.json b/packages/relay/package.json index ee03008353..062cfee1eb 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.11", + "version": "0.0.12", "description": "Relay Protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,10 +51,10 @@ "dependencies": { "@chainsafe/libp2p-gossipsub": "^12.0.0", "@noble/hashes": "^1.3.2", - "@waku/core": "0.0.28", - "@waku/interfaces": "0.0.23", - "@waku/proto": "0.0.6", - "@waku/utils": "0.0.16", + "@waku/core": "0.0.29", + "@waku/interfaces": "0.0.24", + "@waku/proto": "0.0.7", + "@waku/utils": "0.0.17", "chai": "^4.3.10", "debug": "^4.3.4", "fast-check": "^3.15.1" diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index b2a3b83102..e8cff33b40 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -47,6 +47,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.19 to 0.0.20 * @waku/peer-exchange bumped from ^0.0.17 to ^0.0.18 +## [0.0.25](https://github.com/waku-org/js-waku/compare/sdk-v0.0.24...sdk-v0.0.25) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) +* **lightpush:** move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) + +### Features + +* Add keep alive to Filter ([#1970](https://github.com/waku-org/js-waku/issues/1970)) ([1a6bc4f](https://github.com/waku-org/js-waku/commit/1a6bc4f8ce5d3409b3e82b8b0685beb80f48269a)) +* Add libp2p option for max ping connections ([fa523b7](https://github.com/waku-org/js-waku/commit/fa523b78afa8e87d705c98d1be92f8e6ae1f4ed2)) +* Lift contentTopics and make shardInfo mandatory for createLight… ([#1959](https://github.com/waku-org/js-waku/issues/1959)) ([5b03709](https://github.com/waku-org/js-waku/commit/5b03709dfe683b1cb001fe67c5bd013e664b4d89)) +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation to `@waku/sdk` (1/n) ([#1964](https://github.com/waku-org/js-waku/issues/1964)) ([5fb1006](https://github.com/waku-org/js-waku/commit/5fb100602b347ad13718c85c52d22a932c15aa18)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.28 to 0.0.29 + * @waku/discovery bumped from 0.0.1 to 0.0.2 + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + * @waku/proto bumped from ^0.0.6 to ^0.0.7 + * @waku/relay bumped from 0.0.11 to 0.0.12 + * @waku/utils bumped from 0.0.16 to 0.0.17 + ## [0.0.24](https://github.com/waku-org/js-waku/compare/sdk-v0.0.23...sdk-v0.0.24) (2024-04-09) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index ba9189839c..7b6c8d9a98 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.24", + "version": "0.0.25", "description": "A unified SDK for easy creation and management of js-waku nodes.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -68,12 +68,12 @@ "@libp2p/ping": "^1.0.12", "@libp2p/websockets": "^8.0.11", "@noble/hashes": "^1.3.3", - "@waku/core": "0.0.28", - "@waku/discovery": "0.0.1", - "@waku/interfaces": "0.0.23", - "@waku/proto": "^0.0.6", - "@waku/relay": "0.0.11", - "@waku/utils": "0.0.16", + "@waku/core": "0.0.29", + "@waku/discovery": "0.0.2", + "@waku/interfaces": "0.0.24", + "@waku/proto": "^0.0.7", + "@waku/relay": "0.0.12", + "@waku/utils": "0.0.17", "libp2p": "^1.1.2" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index dbbd9c45f9..a286aab1a7 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -12,6 +12,30 @@ * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.0.17](https://github.com/waku-org/js-waku/compare/utils-v0.0.16...utils-v0.0.17) (2024-04-30) + + +### ⚠ BREAKING CHANGES + +* use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) + +### Features + +* Use ShardingParams on subscriptions, make Decoder/Encoder auto sharding friendly by default ([#1958](https://github.com/waku-org/js-waku/issues/1958)) ([f3627c4](https://github.com/waku-org/js-waku/commit/f3627c46a4c231013c5ffa4aa6f1ecbe3c06c5e3)) + + +### Bug Fixes + +* **message-hash:** Account for `timestamp` ([#1986](https://github.com/waku-org/js-waku/issues/1986)) ([73d4f19](https://github.com/waku-org/js-waku/commit/73d4f197467fe3e58fc49e3264f73e00a79004f9)) +* Use correct shard index when creating encoder ([9514653](https://github.com/waku-org/js-waku/commit/95146534288f842ff1cf180fc62850d539937a05)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.23 to 0.0.24 + ## [0.0.16](https://github.com/waku-org/js-waku/compare/utils-v0.0.15...utils-v0.0.16) (2024-04-09) diff --git a/packages/utils/package.json b/packages/utils/package.json index 97b56d40e4..c9bd2e46a8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.16", + "version": "0.0.17", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -68,7 +68,7 @@ }, "dependencies": { "@noble/hashes": "^1.3.2", - "@waku/interfaces": "0.0.23", + "@waku/interfaces": "0.0.24", "chai": "^4.3.10", "debug": "^4.3.4", "uint8arrays": "^5.0.1"