diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aec775fb7d..3fb78d6f3f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,13 @@ { - "packages/utils": "0.0.15", + "packages/utils": "0.0.16", "packages/proto": "0.0.6", - "packages/interfaces": "0.0.22", - "packages/message-hash": "0.1.11", - "packages/enr": "0.0.21", - "packages/core": "0.0.27", - "packages/message-encryption": "0.0.25", - "packages/relay": "0.0.10", - "packages/sdk": "0.0.23" + "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/react-native-polyfills": "0.0.1" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9509b448c8..e5ef36ad3d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,36 @@ 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.28](https://github.com/waku-org/js-waku/compare/core-v0.0.27...core-v0.0.28) (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* **store:** move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) +* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) +* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da)) +* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4)) +* **store:** Move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) ([bf42c8f](https://github.com/waku-org/js-waku/commit/bf42c8f53a291172d6af64cbf72c4092146899df)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from ^0.0.21 to ^0.0.22 + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + * @waku/message-hash bumped from ^0.1.11 to ^0.1.12 + * @waku/utils bumped from 0.0.15 to 0.0.16 + ## [0.0.27](https://github.com/waku-org/js-waku/compare/core-v0.0.26...core-v0.0.27) (2024-03-04) diff --git a/packages/core/package.json b/packages/core/package.json index 6ffc0f9c39..806512a6e2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.27", + "version": "0.0.28", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -73,11 +73,11 @@ }, "dependencies": { "@libp2p/ping": "^1.0.12", - "@waku/enr": "^0.0.21", - "@waku/interfaces": "0.0.22", - "@waku/message-hash": "^0.1.11", + "@waku/enr": "^0.0.22", + "@waku/interfaces": "0.0.23", + "@waku/message-hash": "^0.1.12", "@waku/proto": "0.0.6", - "@waku/utils": "0.0.15", + "@waku/utils": "0.0.16", "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 new file mode 100644 index 0000000000..fc807dea9b --- /dev/null +++ b/packages/discovery/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog + +## 0.0.1 (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) + +### Features + +* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) ([1e86c3d](https://github.com/waku-org/js-waku/commit/1e86c3d63e6532dabbe10e01376d42dc6bcb0b85)) +* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + * @waku/enr bumped from 0.0.21 to 0.0.22 + * @waku/core bumped from 0.0.27 to 0.0.28 + * @waku/utils bumped from 0.0.15 to 0.0.16 diff --git a/packages/discovery/package.json b/packages/discovery/package.json index 3a9977629f..d70a540713 100644 --- a/packages/discovery/package.json +++ b/packages/discovery/package.json @@ -51,11 +51,11 @@ "node": ">=18" }, "dependencies": { - "@waku/interfaces": "0.0.22", + "@waku/interfaces": "0.0.23", "@waku/proto": "^0.0.6", - "@waku/enr": "0.0.21", - "@waku/core": "0.0.27", - "@waku/utils": "0.0.15", + "@waku/enr": "0.0.22", + "@waku/core": "0.0.28", + "@waku/utils": "0.0.16", "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 57186279b1..fa429d3308 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -67,6 +67,22 @@ 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 +## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09) + + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.15 to 0.0.16 + * devDependencies + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + ## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04) diff --git a/packages/enr/package.json b/packages/enr/package.json index e434018bb9..df2c13a8e1 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.21", + "version": "0.0.22", "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.15", + "@waku/utils": "0.0.16", "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.22", + "@waku/interfaces": "0.0.23", "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 93066fd986..0014234bad 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.23](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.22...interfaces-v0.0.23) (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* **store:** move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) +* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) + +### Features + +* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da)) +* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4)) +* **store:** Move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) ([bf42c8f](https://github.com/waku-org/js-waku/commit/bf42c8f53a291172d6af64cbf72c4092146899df)) + ## [0.0.22](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.21...interfaces-v0.0.22) (2024-03-04) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index 4fd63f4f56..30b8ca84ed 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.22", + "version": "0.0.23", "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 2eb1c2437d..2de89c5b6e 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -76,6 +76,22 @@ 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.26](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.25...message-encryption-v0.0.26) (2024-04-09) + + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.27 to 0.0.28 + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + * @waku/utils bumped from 0.0.15 to 0.0.16 + ## [0.0.24](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.23...message-encryption-v0.0.24) (2024-01-10) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index 5220c380c9..0eb7773cd5 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.25", + "version": "0.0.26", "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.27", - "@waku/interfaces": "0.0.22", + "@waku/core": "0.0.28", + "@waku/interfaces": "0.0.23", "@waku/proto": "0.0.6", - "@waku/utils": "0.0.15", + "@waku/utils": "0.0.16", "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 a49a03f476..dcc315b1ec 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -48,6 +48,22 @@ * devDependencies * @waku/interfaces bumped from 0.0.20 to 0.0.21 +## [0.1.12](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.11...message-hash-v0.1.12) (2024-04-09) + + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.15 to 0.0.16 + * devDependencies + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + ## [0.1.11](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.10...message-hash-v0.1.11) (2024-03-04) diff --git a/packages/message-hash/package.json b/packages/message-hash/package.json index adfe0615d4..6618a32f21 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.11", + "version": "0.1.12", "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.15" + "@waku/utils": "0.0.16" }, "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.22", + "@waku/interfaces": "0.0.23", "chai": "^4.3.10", "cspell": "^8.6.1", "fast-check": "^3.15.1", diff --git a/packages/react-native-polyfills/CHANGELOG.md b/packages/react-native-polyfills/CHANGELOG.md index 825c32f0d0..97f412ade9 100644 --- a/packages/react-native-polyfills/CHANGELOG.md +++ b/packages/react-native-polyfills/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.0.1 (2024-04-09) + + +### Features + +* Add react-native polyfills ([#1915](https://github.com/waku-org/js-waku/issues/1915)) ([9be942f](https://github.com/waku-org/js-waku/commit/9be942fc23e1e6c1ed5775e44e0d77ec7627b38c)) + +## Changelog diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index 17e88b45eb..1d058104fb 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -25,6 +25,32 @@ * @waku/interfaces bumped from 0.0.16 to 0.0.17 * @waku/utils bumped from 0.0.9 to 0.0.10 +## [0.0.11](https://github.com/waku-org/js-waku/compare/relay-v0.0.10...relay-v0.0.11) (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) +* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.27 to 0.0.28 + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + * @waku/utils bumped from 0.0.15 to 0.0.16 + ## [0.0.10](https://github.com/waku-org/js-waku/compare/relay-v0.0.9...relay-v0.0.10) (2024-03-04) diff --git a/packages/relay/package.json b/packages/relay/package.json index a515a42e48..ee03008353 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.10", + "version": "0.0.11", "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.27", - "@waku/interfaces": "0.0.22", + "@waku/core": "0.0.28", + "@waku/interfaces": "0.0.23", "@waku/proto": "0.0.6", - "@waku/utils": "0.0.15", + "@waku/utils": "0.0.16", "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 7e09968c03..b2a3b83102 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -47,6 +47,42 @@ 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.24](https://github.com/waku-org/js-waku/compare/sdk-v0.0.23...sdk-v0.0.24) (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* **store:** move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) +* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) +* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) + +### Features + +* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) ([1e86c3d](https://github.com/waku-org/js-waku/commit/1e86c3d63e6532dabbe10e01376d42dc6bcb0b85)) +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) +* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da)) + + +### Bug Fixes + +* Make rollup replace env var ([#1951](https://github.com/waku-org/js-waku/issues/1951)) ([8763173](https://github.com/waku-org/js-waku/commit/8763173d2e370cb69a991cdbfa5cdd79f288b0be)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4)) +* **store:** Move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) ([bf42c8f](https://github.com/waku-org/js-waku/commit/bf42c8f53a291172d6af64cbf72c4092146899df)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.27 to 0.0.28 + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + * @waku/relay bumped from 0.0.10 to 0.0.11 + * @waku/utils bumped from 0.0.15 to 0.0.16 + ## [0.0.23](https://github.com/waku-org/js-waku/compare/sdk-v0.0.22...sdk-v0.0.23) (2024-03-04) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 1d3c74abea..9f3d93f8db 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.23", + "version": "0.0.24", "description": "A unified SDK for easy creation and management of js-waku nodes.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -68,11 +68,11 @@ "@libp2p/ping": "^1.0.12", "@libp2p/websockets": "^8.0.11", "@noble/hashes": "^1.3.3", - "@waku/core": "0.0.27", + "@waku/core": "0.0.28", "@waku/discovery": "0.0.1", - "@waku/interfaces": "0.0.22", - "@waku/relay": "0.0.10", - "@waku/utils": "0.0.15", + "@waku/interfaces": "0.0.23", + "@waku/relay": "0.0.11", + "@waku/utils": "0.0.16", "libp2p": "^1.1.2" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 639b38c548..dbbd9c45f9 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.16](https://github.com/waku-org/js-waku/compare/utils-v0.0.15...utils-v0.0.16) (2024-04-09) + + +### ⚠ BREAKING CHANGES + +* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) + +### Features + +* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e)) +* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da)) + + +### Miscellaneous Chores + +* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.22 to 0.0.23 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/utils-v0.0.14...utils-v0.0.15) (2024-03-04) diff --git a/packages/utils/package.json b/packages/utils/package.json index 33bebfffed..97b56d40e4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.15", + "version": "0.0.16", "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.22", + "@waku/interfaces": "0.0.23", "chai": "^4.3.10", "debug": "^4.3.4", "uint8arrays": "^5.0.1"