diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 00a37338a5..6b96b64096 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "packages/utils": "0.0.10", + "packages/utils": "0.0.11", "packages/proto": "0.0.5", - "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" + "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" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 373d6d125c..b084555df0 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,33 @@ 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/core-v0.0.22...core-v0.0.23) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) +* refactor store protocol for readability ([#1456](https://github.com/waku-org/js-waku/issues/1456)) + +### Features + +* Pre-emptive stream creation for protocols ([#1516](https://github.com/waku-org/js-waku/issues/1516)) ([b4f8216](https://github.com/waku-org/js-waku/commit/b4f821676120aa06f4772eed62fb105d5afae7c6)) +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) +* Use the lowest latency peer for protocols ([#1540](https://github.com/waku-org/js-waku/issues/1540)) ([6f09fbf](https://github.com/waku-org/js-waku/commit/6f09fbf4ed181cb2fe5a15643cf2bebdc889ec64)) + + +### Miscellaneous Chores + +* Refactor store protocol for readability ([#1456](https://github.com/waku-org/js-waku/issues/1456)) ([2389977](https://github.com/waku-org/js-waku/commit/2389977a9840281dff4008c015fe76451c0f0df5)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @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/core-v0.0.21...core-v0.0.22) (2023-08-02) diff --git a/packages/core/package.json b/packages/core/package.json index 44e769820e..f9cd93e740 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.22", + "version": "0.0.23", "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.2", - "@waku/interfaces": "0.0.17", + "@waku/interfaces": "0.0.18", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.10", + "@waku/utils": "0.0.11", "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 52c77f9b99..582c991959 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -46,6 +46,38 @@ 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.17](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.16...dns-discovery-v0.0.17) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) +* @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)) +* Allow passing of multiple ENR URLs to DNS Discovery & dial multiple peers in parallel ([#1379](https://github.com/waku-org/js-waku/issues/1379)) ([f32d7d9](https://github.com/waku-org/js-waku/commit/f32d7d9fe0b930b4fa9c46b8644e6d21be45d5c1)) +* **dns-discovery:** Set default for `NodeRequirements` ([#1466](https://github.com/waku-org/js-waku/issues/1466)) ([aab9c08](https://github.com/waku-org/js-waku/commit/aab9c08caefb9f72460261ec0c38df88ae0f02ce)) +* Upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) ([420e6c6](https://github.com/waku-org/js-waku/commit/420e6c698dd8f44d40d34e47d876da5d2e1ce85e)) + + +### Bug Fixes + +* **dns-discovery:** Use DOH list from dns-query ([1dd3210](https://github.com/waku-org/js-waku/commit/1dd32101baf2750527369f7f25981882aa1f9527)) +* 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)) +* 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 0.0.16 to 0.0.17 + * @waku/utils bumped from 0.0.10 to 0.0.11 + * devDependencies + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + ## [0.0.16](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.15...dns-discovery-v0.0.16) (2023-08-02) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 41a048c3bb..92e6d38ad5 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.16", + "version": "0.0.17", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,8 +51,8 @@ "node": ">=16" }, "dependencies": { - "@waku/enr": "0.0.16", - "@waku/utils": "0.0.10", + "@waku/enr": "0.0.17", + "@waku/utils": "0.0.11", "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.17", + "@waku/interfaces": "0.0.18", "chai": "^4.3.7", "cspell": "^7.3.2", "karma": "^6.4.1", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 7b8710e97f..633a21f8fc 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -59,6 +59,28 @@ 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.17](https://github.com/waku-org/js-waku/compare/enr-v0.0.16...enr-v0.0.17) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) +* @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)) +* Upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) ([420e6c6](https://github.com/waku-org/js-waku/commit/420e6c698dd8f44d40d34e47d876da5d2e1ce85e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.10 to 0.0.11 + * devDependencies + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + ## [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 d7b00abf21..7dbc3eb4bb 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.16", + "version": "0.0.17", "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.10", + "@waku/utils": "0.0.11", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -68,7 +68,7 @@ "@types/chai": "^4.3.5", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.17", + "@waku/interfaces": "0.0.18", "chai": "^4.3.7", "cspell": "^7.3.2", "karma": "^6.4.1", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 5cfc3e03d9..f26270ae90 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.18](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.17...interfaces-v0.0.18) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) +* refactor store protocol for readability ([#1456](https://github.com/waku-org/js-waku/issues/1456)) +* remove filter v1 ([#1433](https://github.com/waku-org/js-waku/issues/1433)) +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) +* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) +* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) + +### 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)) +* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2)) +* Allow passing of multiple ENR URLs to DNS Discovery & dial multiple peers in parallel ([#1379](https://github.com/waku-org/js-waku/issues/1379)) ([f32d7d9](https://github.com/waku-org/js-waku/commit/f32d7d9fe0b930b4fa9c46b8644e6d21be45d5c1)) +* 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)) +* **dns-discovery:** Set default for `NodeRequirements` ([#1466](https://github.com/waku-org/js-waku/issues/1466)) ([aab9c08](https://github.com/waku-org/js-waku/commit/aab9c08caefb9f72460261ec0c38df88ae0f02ce)) +* Enable event emission for peer discovery/connection in ConnectionManager ([#1438](https://github.com/waku-org/js-waku/issues/1438)) ([6ce898d](https://github.com/waku-org/js-waku/commit/6ce898d77132f30b5d8f33b48c7f6276992a486e)) +* Expose `meta` on `IDecodedMessage` ([5724bb2](https://github.com/waku-org/js-waku/commit/5724bb2b21367e4e397acbc5530b3a2bf315194e)) +* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78)) +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) +* ToSubscriptionIterator impl for IReceiver ([#1307](https://github.com/waku-org/js-waku/issues/1307)) ([7daa9d0](https://github.com/waku-org/js-waku/commit/7daa9d05bf44b33296b56df214f5d5901887a129)) +* Upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) ([420e6c6](https://github.com/waku-org/js-waku/commit/420e6c698dd8f44d40d34e47d876da5d2e1ce85e)) + + +### Miscellaneous Chores + +* Refactor store protocol for readability ([#1456](https://github.com/waku-org/js-waku/issues/1456)) ([2389977](https://github.com/waku-org/js-waku/commit/2389977a9840281dff4008c015fe76451c0f0df5)) +* Remove filter v1 ([#1433](https://github.com/waku-org/js-waku/issues/1433)) ([d483644](https://github.com/waku-org/js-waku/commit/d483644a4bb4350df380719b9bcfbdd0b1439482)) + ## [0.0.17](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.16...interfaces-v0.0.17) (2023-08-02) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index 77840da770..e8e4a854fb 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.17", + "version": "0.0.18", "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 366392f5c5..cc0e7dcf20 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -60,6 +60,14 @@ 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/utils bumped from 0.0.9 to 0.0.10 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.22 to 0.0.23 + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + * @waku/utils bumped from 0.0.10 to 0.0.11 + ## [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 813ae64ac0..09df1ed5bc 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.20", + "version": "0.0.21", "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.22", - "@waku/interfaces": "0.0.17", + "@waku/core": "0.0.23", + "@waku/interfaces": "0.0.18", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.10", + "@waku/utils": "0.0.11", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index d96dac26d8..56d97e0944 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -32,6 +32,27 @@ * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.1.7](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.6...message-hash-v0.1.7) (2023-09-11) + + +### ⚠ 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)) +* Implement deterministic message hash logic ([fe57461](https://github.com/waku-org/js-waku/commit/fe574613290875d1c142aa51c18641346208401d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.10 to 0.0.11 + * devDependencies + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + ## [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 f1d844de2b..2c085f5629 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.6", + "version": "0.1.7", "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.10" + "@waku/utils": "0.0.11" }, "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.17", + "@waku/interfaces": "0.0.18", "chai": "^4.3.7", "cspell": "^7.3.2", "fast-check": "^3.12.0", diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index 8477f42577..7762ed542b 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -64,6 +64,28 @@ * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +## [0.0.16](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.15...peer-exchange-v0.0.16) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) + +### Features + +* Pre-emptive stream creation for protocols ([#1516](https://github.com/waku-org/js-waku/issues/1516)) ([b4f8216](https://github.com/waku-org/js-waku/commit/b4f821676120aa06f4772eed62fb105d5afae7c6)) +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.22 to 0.0.23 + * @waku/enr bumped from 0.0.16 to 0.0.17 + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + * @waku/utils bumped from 0.0.10 to 0.0.11 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.14...peer-exchange-v0.0.15) (2023-08-02) diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index 37470cc00d..8931be6ca7 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.15", + "version": "0.0.16", "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.22", - "@waku/enr": "0.0.16", - "@waku/interfaces": "0.0.17", + "@waku/core": "0.0.23", + "@waku/enr": "0.0.17", + "@waku/interfaces": "0.0.18", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.10", + "@waku/utils": "0.0.11", "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 95961aab45..3b3f351065 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.6](https://github.com/waku-org/js-waku/compare/relay-v0.0.5...relay-v0.0.6) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) + +### Features + +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.22 to 0.0.23 + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + * @waku/utils bumped from 0.0.10 to 0.0.11 + ## [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 d00cd417f3..f43b798017 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.5", + "version": "0.0.6", "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.22", - "@waku/interfaces": "0.0.17", + "@waku/core": "0.0.23", + "@waku/interfaces": "0.0.18", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.10", + "@waku/utils": "0.0.11", "chai": "^4.3.7", "debug": "^4.3.4", "fast-check": "^3.12.0" diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 106978cac6..cde892d7dc 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -36,6 +36,29 @@ 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.19](https://github.com/waku-org/js-waku/compare/sdk-v0.0.18...sdk-v0.0.19) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) + +### Features + +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.10 to 0.0.11 + * @waku/relay bumped from 0.0.5 to 0.0.6 + * @waku/core bumped from 0.0.22 to 0.0.23 + * @waku/dns-discovery bumped from 0.0.16 to 0.0.17 + * @waku/interfaces bumped from 0.0.17 to 0.0.18 + * @waku/peer-exchange 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 a05e18899a..d32fc5e030 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.18", + "version": "0.0.19", "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.2", "@libp2p/websockets": "^7.0.5", - "@waku/utils": "0.0.10", - "@waku/relay": "0.0.5", - "@waku/core": "0.0.22", - "@waku/dns-discovery": "0.0.16", - "@waku/interfaces": "0.0.17", - "@waku/peer-exchange": "^0.0.15", + "@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", "libp2p": "^0.46.9" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 8f9ec99c4e..b16aeff580 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -12,6 +12,38 @@ * devDependencies * @waku/interfaces bumped from 0.0.16 to 0.0.17 +## [0.0.11](https://github.com/waku-org/js-waku/compare/utils-v0.0.10...utils-v0.0.11) (2023-09-11) + + +### ⚠ BREAKING CHANGES + +* set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) +* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) +* @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)) +* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78)) +* Set peer-exchange with default bootstrap ([#1469](https://github.com/waku-org/js-waku/issues/1469)) ([81a52a8](https://github.com/waku-org/js-waku/commit/81a52a8097ba948783c9d798ba362af0f27e1c10)) +* ToSubscriptionIterator impl for IReceiver ([#1307](https://github.com/waku-org/js-waku/issues/1307)) ([7daa9d0](https://github.com/waku-org/js-waku/commit/7daa9d05bf44b33296b56df214f5d5901887a129)) +* Upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) ([420e6c6](https://github.com/waku-org/js-waku/commit/420e6c698dd8f44d40d34e47d876da5d2e1ce85e)) +* Use the lowest latency peer for protocols ([#1540](https://github.com/waku-org/js-waku/issues/1540)) ([6f09fbf](https://github.com/waku-org/js-waku/commit/6f09fbf4ed181cb2fe5a15643cf2bebdc889ec64)) + + +### Bug Fixes + +* **utils:** Typescript to able to find types ([03c9cac](https://github.com/waku-org/js-waku/commit/03c9cac3d0f0167dee3b99d3945d96648bdb8685)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from ^0.0.17 to 0.0.18 + ## [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 117b33c3b4..b31140bc41 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.10", + "version": "0.0.11", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -67,7 +67,7 @@ "dependencies": { "debug": "^4.3.4", "uint8arrays": "^4.0.4", - "@waku/interfaces": "^0.0.17" + "@waku/interfaces": "0.0.18" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.4",