From 92238136dea179ad6d716e113a96a267e171a8f4 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" <110212804+fryorcraken@users.noreply.github.com> Date: Thu, 27 Jul 2023 05:47:04 +1000 Subject: [PATCH] chore: release master (#1410) --- .release-please-manifest.json | 20 ++++++++-------- packages/core/CHANGELOG.md | 27 ++++++++++++++++++++++ packages/core/package.json | 6 ++--- packages/dns-discovery/CHANGELOG.md | 21 +++++++++++++++++ packages/dns-discovery/package.json | 8 +++---- packages/enr/CHANGELOG.md | 20 ++++++++++++++++ packages/enr/package.json | 6 ++--- packages/interfaces/CHANGELOG.md | 18 +++++++++++++++ packages/interfaces/package.json | 2 +- packages/message-encryption/CHANGELOG.md | 20 ++++++++++++++++ packages/message-encryption/package.json | 8 +++---- packages/message-hash/CHANGELOG.md | 8 +++++++ packages/message-hash/package.json | 6 ++--- packages/peer-exchange/CHANGELOG.md | 22 ++++++++++++++++++ packages/peer-exchange/package.json | 10 ++++---- packages/relay/CHANGELOG.md | 20 ++++++++++++++++ packages/relay/package-lock.json | 4 ++-- packages/relay/package.json | 8 +++---- packages/sdk/CHANGELOG.md | 29 ++++++++++++++++++++++++ packages/sdk/package.json | 12 +++++----- packages/utils/CHANGELOG.md | 18 +++++++++++++++ packages/utils/package-lock.json | 4 ++-- packages/utils/package.json | 4 ++-- 23 files changed, 252 insertions(+), 49 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9f93e74882..5b2b1b3f2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "packages/utils": "0.0.8", + "packages/utils": "0.0.9", "packages/proto": "0.0.5", - "packages/interfaces": "0.0.15", - "packages/message-hash": "0.1.4", - "packages/enr": "0.0.14", - "packages/peer-exchange": "0.0.13", - "packages/core": "0.0.20", - "packages/dns-discovery": "0.0.14", - "packages/message-encryption": "0.0.18", - "packages/relay": "0.0.3", - "packages/sdk": "0.0.16" + "packages/interfaces": "0.0.16", + "packages/message-hash": "0.1.5", + "packages/enr": "0.0.15", + "packages/peer-exchange": "0.0.14", + "packages/core": "0.0.21", + "packages/dns-discovery": "0.0.15", + "packages/message-encryption": "0.0.19", + "packages/relay": "0.0.4", + "packages/sdk": "0.0.17" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5b5f33e947..c21c9263a8 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.21](https://github.com/waku-org/js-waku/compare/core-v0.0.20...core-v0.0.21) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* 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)) + +### Features + +* 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)) +* Spec test for connection manager ([#1417](https://github.com/waku-org/js-waku/issues/1417)) ([d2f675d](https://github.com/waku-org/js-waku/commit/d2f675d690f4a648dc7294455891f2d66a49ea76)) +* 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 + +* Remove filter v1 ([#1433](https://github.com/waku-org/js-waku/issues/1433)) ([d483644](https://github.com/waku-org/js-waku/commit/d483644a4bb4350df380719b9bcfbdd0b1439482)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + * @waku/utils bumped from 0.0.8 to 0.0.9 + ## [0.0.20](https://github.com/waku-org/js-waku/compare/core-v0.0.19...core-v0.0.20) (2023-06-08) diff --git a/packages/core/package.json b/packages/core/package.json index adfd2c5011..bf50574662 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.20", + "version": "0.0.21", "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.0", - "@waku/interfaces": "0.0.15", + "@waku/interfaces": "0.0.16", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.8", + "@waku/utils": "0.0.9", "debug": "^4.3.4", "it-all": "^3.0.2", "it-length-prefixed": "^9.0.1", diff --git a/packages/dns-discovery/CHANGELOG.md b/packages/dns-discovery/CHANGELOG.md index 8905195b13..3f6ff5f921 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -46,6 +46,27 @@ 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.15](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.14...dns-discovery-v0.0.15) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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/enr bumped from 0.0.14 to 0.0.15 + * @waku/utils bumped from 0.0.8 to 0.0.9 + * devDependencies + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + ## [0.0.14](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.13...dns-discovery-v0.0.14) (2023-06-08) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 38460d1df2..063069efc3 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.14", + "version": "0.0.15", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,8 +53,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^2.0.0", "@libp2p/interfaces": "^3.3.2", - "@waku/enr": "0.0.14", - "@waku/utils": "0.0.8", + "@waku/enr": "0.0.15", + "@waku/utils": "0.0.9", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -71,7 +71,7 @@ "@rollup/plugin-node-resolve": "^15.0.2", "@types/chai": "^4.3.4", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.15", + "@waku/interfaces": "0.0.16", "chai": "^4.3.7", "cspell": "^6.31.1", "karma": "^6.4.1", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 91d521d2e6..1b01fc9244 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -51,6 +51,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +## [0.0.15](https://github.com/waku-org/js-waku/compare/enr-v0.0.14...enr-v0.0.15) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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.8 to 0.0.9 + * devDependencies + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + ## [0.0.12](https://github.com/waku-org/js-waku/compare/enr-v0.0.11...enr-v0.0.12) (2023-05-18) diff --git a/packages/enr/package.json b/packages/enr/package.json index b5d3304858..d5060772f9 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.14", + "version": "0.0.15", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -56,7 +56,7 @@ "@libp2p/peer-id": "^2.0.4", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "0.0.8", + "@waku/utils": "0.0.9", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -70,7 +70,7 @@ "@types/chai": "^4.3.4", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.15", + "@waku/interfaces": "0.0.16", "chai": "^4.3.7", "cspell": "^6.31.1", "karma": "^6.4.1", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index a40812439f..5be3f385cb 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,24 @@ 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.16](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.15...interfaces-v0.0.16) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* 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)) + +### Features + +* 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)) +* 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 + +* 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.15](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.14...interfaces-v0.0.15) (2023-06-08) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index a1670c13d8..bff2147acb 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.15", + "version": "0.0.16", "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 f33acb1230..6f9c6bfc79 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -52,6 +52,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/interfaces bumped from 0.0.14 to 0.0.15 * @waku/utils bumped from 0.0.7 to 0.0.8 +## [0.0.19](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.18...message-encryption-v0.0.19) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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/core bumped from 0.0.20 to 0.0.21 + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + * @waku/utils bumped from 0.0.8 to 0.0.9 + ## [0.0.16](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.15...message-encryption-v0.0.16) (2023-05-18) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index 1e2a91b370..fe7f6ccd13 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.18", + "version": "0.0.19", "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.20", - "@waku/interfaces": "0.0.15", + "@waku/core": "0.0.21", + "@waku/interfaces": "0.0.16", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.8", + "@waku/utils": "0.0.9", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/message-hash/CHANGELOG.md b/packages/message-hash/CHANGELOG.md index 91ccdbb468..9611f181fe 100644 --- a/packages/message-hash/CHANGELOG.md +++ b/packages/message-hash/CHANGELOG.md @@ -16,6 +16,14 @@ * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.8 to 0.0.9 + * devDependencies + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + ## [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 81199a97c3..686c49adc8 100644 --- a/packages/message-hash/package.json +++ b/packages/message-hash/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-hash", - "version": "0.1.4", + "version": "0.1.5", "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": "0.0.8" + "@waku/utils": "0.0.9" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", @@ -63,7 +63,7 @@ "@types/debug": "^4.1.7", "@types/mocha": "^10.0.1", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.15", + "@waku/interfaces": "0.0.16", "chai": "^4.3.7", "cspell": "^6.28.0", "fast-check": "^3.7.0", diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index 8db40fa9d7..40496a797d 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.14](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.13...peer-exchange-v0.0.14) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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)) +* 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/core bumped from 0.0.20 to 0.0.21 + * @waku/enr bumped from 0.0.14 to 0.0.15 + * @waku/utils bumped from 0.0.8 to 0.0.9 + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + ## [0.0.11](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.10...peer-exchange-v0.0.11) (2023-05-18) diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index 9ac859bd1a..d4132580d7 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.13", + "version": "0.0.14", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -50,11 +50,11 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^2.0.0", "@libp2p/interfaces": "^3.3.2", - "@waku/core": "0.0.20", - "@waku/enr": "0.0.14", + "@waku/core": "0.0.21", + "@waku/enr": "0.0.15", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.8", - "@waku/interfaces": "0.0.15", + "@waku/utils": "0.0.9", + "@waku/interfaces": "0.0.16", "debug": "^4.3.4", "it-all": "^3.0.2", "it-length-prefixed": "^9.0.1", diff --git a/packages/relay/CHANGELOG.md b/packages/relay/CHANGELOG.md index 52705c3a4b..81e5a17f41 100644 --- a/packages/relay/CHANGELOG.md +++ b/packages/relay/CHANGELOG.md @@ -17,6 +17,26 @@ * @waku/interfaces bumped from 0.0.14 to 0.0.15 * @waku/utils bumped from 0.0.7 to 0.0.8 +## [0.0.4](https://github.com/waku-org/js-waku/compare/relay-v0.0.3...relay-v0.0.4) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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/core bumped from 0.0.20 to 0.0.21 + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + * @waku/utils bumped from 0.0.8 to 0.0.9 + ## 0.0.1 (2023-05-18) diff --git a/packages/relay/package-lock.json b/packages/relay/package-lock.json index cca3b0d2d1..84018030cd 100644 --- a/packages/relay/package-lock.json +++ b/packages/relay/package-lock.json @@ -1,12 +1,12 @@ { "name": "@waku/relay", - "version": "0.0.1", + "version": "0.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@waku/relay", - "version": "0.0.1", + "version": "0.0.4", "license": "MIT OR Apache-2.0", "dependencies": { "@chainsafe/libp2p-gossipsub": "^6.1.0", diff --git a/packages/relay/package.json b/packages/relay/package.json index 9acb192dfc..cdcb2de4d9 100644 --- a/packages/relay/package.json +++ b/packages/relay/package.json @@ -1,6 +1,6 @@ { "name": "@waku/relay", - "version": "0.0.3", + "version": "0.0.4", "description": "Relay Protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,10 +51,10 @@ "dependencies": { "@chainsafe/libp2p-gossipsub": "^9.1.0", "@noble/hashes": "^1.3.0", - "@waku/core": "0.0.20", - "@waku/interfaces": "0.0.15", + "@waku/core": "0.0.21", + "@waku/interfaces": "0.0.16", "@waku/proto": "0.0.5", - "@waku/utils": "0.0.8", + "@waku/utils": "0.0.9", "chai": "^4.3.7", "debug": "^4.3.4", "fast-check": "^3.8.1" diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index c4894557b2..19ec8354ab 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -26,6 +26,35 @@ 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.17](https://github.com/waku-org/js-waku/compare/sdk-v0.0.16...sdk-v0.0.17) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* 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)) + +### Features + +* Export interfaces and relay from sdk ([#1409](https://github.com/waku-org/js-waku/issues/1409)) ([0d9265a](https://github.com/waku-org/js-waku/commit/0d9265aaf15260be5974c551e84ca6290273dbf0)) +* 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 + +* Remove filter v1 ([#1433](https://github.com/waku-org/js-waku/issues/1433)) ([d483644](https://github.com/waku-org/js-waku/commit/d483644a4bb4350df380719b9bcfbdd0b1439482)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.8 to 0.0.9 + * @waku/relay bumped from 0.0.3 to 0.0.4 + * @waku/core bumped from 0.0.20 to 0.0.21 + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + * @waku/dns-discovery bumped from 0.0.14 to 0.0.15 + ## 0.0.16 (2023-06-08) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 5f347a0123..ee5204943c 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@waku/sdk", - "version": "0.0.16", + "version": "0.0.17", "description": "A unified SDK for easy creation and management of js-waku nodes.", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -51,11 +51,11 @@ "@chainsafe/libp2p-noise": "^12.0.1", "@libp2p/mplex": "^8.0.4", "@libp2p/websockets": "^6.0.3", - "@waku/utils": "0.0.8", - "@waku/relay": "0.0.3", - "@waku/core": "0.0.20", - "@waku/interfaces": "0.0.15", - "@waku/dns-discovery": "0.0.14", + "@waku/utils": "0.0.9", + "@waku/relay": "0.0.4", + "@waku/core": "0.0.21", + "@waku/interfaces": "0.0.16", + "@waku/dns-discovery": "0.0.15", "libp2p": "^0.45.9" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 0d8ed85457..e9a43faba3 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -6,6 +6,24 @@ * devDependencies * @waku/interfaces bumped from 0.0.14 to 0.0.15 +## [0.0.9](https://github.com/waku-org/js-waku/compare/utils-v0.0.8...utils-v0.0.9) (2023-07-26) + + +### ⚠ BREAKING CHANGES + +* upgrade to libp2p@0.45 ([#1400](https://github.com/waku-org/js-waku/issues/1400)) + +### Features + +* 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 + * devDependencies + * @waku/interfaces bumped from 0.0.15 to 0.0.16 + ## [0.0.7](https://github.com/waku-org/js-waku/compare/utils-v0.0.6...utils-v0.0.7) (2023-05-26) diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 121e77c0aa..ff7f6d1163 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@waku/utils", - "version": "0.0.7", + "version": "0.0.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@waku/utils", - "version": "0.0.7", + "version": "0.0.9", "license": "MIT OR Apache-2.0", "dependencies": { "debug": "^4.3.4", diff --git a/packages/utils/package.json b/packages/utils/package.json index 8047fffbbc..78754dfc93 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.8", + "version": "0.0.9", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -76,7 +76,7 @@ "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.2", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.15", + "@waku/interfaces": "0.0.16", "cspell": "^6.31.1", "npm-run-all": "^4.1.5", "prettier": "^2.8.8",