diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4af898ceee..8c653976f5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,12 +1,13 @@ { - "packages/utils": "0.0.5", + "packages/utils": "0.0.6", "packages/proto": "0.0.4", - "packages/interfaces": "0.0.12", - "packages/message-hash": "0.1.1", - "packages/enr": "0.0.11", - "packages/peer-exchange": "0.0.10", - "packages/core": "0.0.17", - "packages/dns-discovery": "0.0.11", - "packages/message-encryption": "0.0.15", - "packages/create": "0.0.13" + "packages/interfaces": "0.0.13", + "packages/message-hash": "0.1.2", + "packages/enr": "0.0.12", + "packages/peer-exchange": "0.0.11", + "packages/core": "0.0.18", + "packages/dns-discovery": "0.0.12", + "packages/message-encryption": "0.0.16", + "packages/create": "0.0.14", + "packages/relay": "0.0.1" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 551e2b99cd..5c25619e86 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,31 @@ 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.18](https://github.com/waku-org/js-waku/compare/core-v0.0.17...core-v0.0.18) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) +* Add 1MB restriction to LightPush and Relay ([#1351](https://github.com/waku-org/js-waku/issues/1351)) ([72f97d4](https://github.com/waku-org/js-waku/commit/72f97d4545512f92936b1a9b50fa0b53f8603f9d)) + + +### Bug Fixes + +* Improve logging for connection manager ([#1303](https://github.com/waku-org/js-waku/issues/1303)) ([f4e3101](https://github.com/waku-org/js-waku/commit/f4e31019e115de0fffef01bb51a8f8e22c6cc8af)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from * to 0.0.13 + * @waku/utils bumped from * to 0.0.6 + ## [0.0.17](https://github.com/waku-org/js-waku/compare/core-v0.0.16...core-v0.0.17) (2023-05-09) diff --git a/packages/core/package.json b/packages/core/package.json index 1e66f1f73c..cb38a625ed 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.17", + "version": "0.0.18", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -74,9 +74,9 @@ }, "dependencies": { "@noble/hashes": "^1.3.0", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "@waku/proto": "*", - "@waku/utils": "*", + "@waku/utils": "0.0.6", "debug": "^4.3.4", "it-all": "^3.0.1", "it-length-prefixed": "^9.0.1", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index f2c7ce2030..9c8f7eb43c 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -26,6 +26,28 @@ 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 +## [0.0.14](https://github.com/waku-org/js-waku/compare/create-v0.0.13...create-v0.0.14) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/relay bumped from * to 0.0.1 + * @waku/core bumped from * to 0.0.18 + * @waku/dns-discovery bumped from * to 0.0.12 + * devDependencies + * @waku/interfaces bumped from * to 0.0.13 + ## [0.0.12](https://github.com/waku-org/js-waku/compare/create-v0.0.11...create-v0.0.12) (2023-04-03) diff --git a/packages/create/package.json b/packages/create/package.json index 71e9f33e59..fc352b4156 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@waku/create", - "version": "0.0.13", + "version": "0.0.14", "description": "Easily create a Waku node", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,9 +51,9 @@ "@chainsafe/libp2p-noise": "^11.0.0", "@libp2p/mplex": "^7.1.1", "@libp2p/websockets": "^5.0.3", - "@waku/relay": "*", - "@waku/core": "*", - "@waku/dns-discovery": "*", + "@waku/relay": "0.0.1", + "@waku/core": "0.0.18", + "@waku/dns-discovery": "0.0.12", "libp2p": "^0.42.2" }, "devDependencies": { @@ -77,7 +77,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "cspell": "^6.31.1", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0", diff --git a/packages/dns-discovery/CHANGELOG.md b/packages/dns-discovery/CHANGELOG.md index f660eb67f8..bd3aaf8374 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -37,6 +37,32 @@ 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 +## [0.0.12](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.11...dns-discovery-v0.0.12) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Bug Fixes + +* Remove typesVersions ([#1359](https://github.com/waku-org/js-waku/issues/1359)) ([0ad1954](https://github.com/waku-org/js-waku/commit/0ad19540d527309e0174afa7e9fff2924570d361)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from * to 0.0.12 + * @waku/utils bumped from * to 0.0.6 + * devDependencies + * @waku/interfaces bumped from * to 0.0.13 + ## [0.0.10](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.9...dns-discovery-v0.0.10) (2023-04-03) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 4449f15be1..307651d522 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.11", + "version": "0.0.12", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,8 +53,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/enr": "*", - "@waku/utils": "*", + "@waku/enr": "0.0.12", + "@waku/utils": "0.0.6", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -73,7 +73,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index bbcf5567ba..b8d4aa949d 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -35,6 +35,26 @@ 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 +## [0.0.12](https://github.com/waku-org/js-waku/compare/enr-v0.0.11...enr-v0.0.12) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from * to 0.0.6 + * devDependencies + * @waku/interfaces bumped from 0.0.12 to 0.0.13 + ## [0.0.9](https://github.com/waku-org/js-waku/compare/enr-v0.0.8...enr-v0.0.9) (2023-03-28) diff --git a/packages/enr/package.json b/packages/enr/package.json index 29a85d4872..49fdfd6b74 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.11", + "version": "0.0.12", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -56,7 +56,7 @@ "@libp2p/peer-id": "^2.0.3", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "*", + "@waku/utils": "0.0.6", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -72,7 +72,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.12", + "@waku/interfaces": "0.0.13", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 6e15366bc1..573c5d71bf 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,14 @@ 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.13](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.12...interfaces-v0.0.13) (2023-05-18) + + +### Features + +* Add 1MB restriction to LightPush and Relay ([#1351](https://github.com/waku-org/js-waku/issues/1351)) ([72f97d4](https://github.com/waku-org/js-waku/commit/72f97d4545512f92936b1a9b50fa0b53f8603f9d)) +* Expose `meta` on `IDecodedMessage` ([5724bb2](https://github.com/waku-org/js-waku/commit/5724bb2b21367e4e397acbc5530b3a2bf315194e)) + ## [0.0.12](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.11...interfaces-v0.0.12) (2023-05-09) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index bbe1987ae2..f319dd63db 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.12", + "version": "0.0.13", "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 9aaa171fe1..96bbe9ef75 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -35,6 +35,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.10 to 0.0.11 * @waku/utils bumped from 0.0.3 to 0.0.4 +## [0.0.16](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.15...message-encryption-v0.0.16) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from * to 0.0.18 + * @waku/interfaces bumped from * to 0.0.13 + * @waku/utils bumped from * to 0.0.6 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.14...message-encryption-v0.0.15) (2023-05-09) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index ad028e969a..dc40fc2525 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.15", + "version": "0.0.16", "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": "*", - "@waku/interfaces": "*", + "@waku/core": "0.0.18", + "@waku/interfaces": "0.0.13", "@waku/proto": "*", - "@waku/utils": "*", + "@waku/utils": "0.0.6", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index d6921e37f8..a677f99191 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from * to 0.0.6 + * devDependencies + * @waku/interfaces bumped from * to 0.0.13 + ## [0.1.1](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.0...message-hash-v0.1.1) (2023-05-09) diff --git a/packages/message-hash/package.json b/packages/message-hash/package.json index 0aa90d4c8d..15799b7a4c 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.1", + "version": "0.1.2", "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": "*" + "@waku/utils": "0.0.6" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", @@ -65,7 +65,7 @@ "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "chai": "^4.3.7", "cspell": "^6.28.0", "eslint": "^8.35.0", diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index 076c3226ca..5db8914c8d 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -43,6 +43,28 @@ * devDependencies * @waku/interfaces bumped from 0.0.11 to 0.0.12 +## [0.0.11](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.10...peer-exchange-v0.0.11) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from * to 0.0.18 + * @waku/enr bumped from * to 0.0.12 + * @waku/utils bumped from * to 0.0.6 + * devDependencies + * @waku/interfaces bumped from * to 0.0.13 + ## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23) diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index 35f4e73d76..6a59d260ae 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.10", + "version": "0.0.11", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -50,10 +50,10 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/core": "*", - "@waku/enr": "*", + "@waku/core": "0.0.18", + "@waku/enr": "0.0.12", "@waku/proto": "*", - "@waku/utils": "*", + "@waku/utils": "0.0.6", "debug": "^4.3.4", "it-all": "^3.0.1", "it-length-prefixed": "^9.0.1", @@ -71,7 +71,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index e69de29bb2..c74afaf30d 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +## 0.0.1 (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) +* Add 1MB restriction to LightPush and Relay ([#1351](https://github.com/waku-org/js-waku/issues/1351)) ([72f97d4](https://github.com/waku-org/js-waku/commit/72f97d4545512f92936b1a9b50fa0b53f8603f9d)) + + +### Bug Fixes + +* Remove typesVersions ([#1359](https://github.com/waku-org/js-waku/issues/1359)) ([0ad1954](https://github.com/waku-org/js-waku/commit/0ad19540d527309e0174afa7e9fff2924570d361)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from * to 0.0.18 + * @waku/interfaces bumped from * to 0.0.13 + * @waku/utils bumped from * to 0.0.6 diff --git a/packages/relay/package.json b/packages/relay/package.json index b9ffeb3ee7..b04674ced4 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -53,10 +53,10 @@ "@chainsafe/libp2p-gossipsub": "^6.1.0", "@noble/hashes": "^1.3.0", "@waku/build-utils": "*", - "@waku/core": "*", - "@waku/interfaces": "*", + "@waku/core": "0.0.18", + "@waku/interfaces": "0.0.13", "@waku/proto": "*", - "@waku/utils": "*", + "@waku/utils": "0.0.6", "chai": "^4.3.7", "debug": "^4.3.4", "fast-check": "^3.8.1" diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 44a16b1885..496ec4935d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.0.6](https://github.com/waku-org/js-waku/compare/utils-v0.0.5...utils-v0.0.6) (2023-05-18) + + +### ⚠ BREAKING CHANGES + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) + +### Features + +* @waku/relay ([#1316](https://github.com/waku-org/js-waku/issues/1316)) ([50c2c25](https://github.com/waku-org/js-waku/commit/50c2c2540f3c5ff78d93f3fea646da0eee246e17)) +* Add 1MB restriction to LightPush and Relay ([#1351](https://github.com/waku-org/js-waku/issues/1351)) ([72f97d4](https://github.com/waku-org/js-waku/commit/72f97d4545512f92936b1a9b50fa0b53f8603f9d)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @waku/interfaces bumped from * to 0.0.13 + ## [0.0.5](https://github.com/waku-org/js-waku/compare/utils-v0.0.4...utils-v0.0.5) (2023-05-09) diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 5764de2de7..e86932738b 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@waku/utils", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@waku/utils", - "version": "0.0.5", + "version": "0.0.6", "license": "MIT OR Apache-2.0", "dependencies": { "debug": "^4.3.4", diff --git a/packages/utils/package.json b/packages/utils/package.json index dd68e821de..36bed48f2f 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.5", + "version": "0.0.6", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -78,7 +78,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.13", "cspell": "^6.31.1", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0",