From 08d0786bd4560cee647f45df8f5f11b2ca06707d Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" <110212804+fryorcraken@users.noreply.github.com> Date: Sat, 25 Mar 2023 10:22:44 +1100 Subject: [PATCH] chore: release master (#1269) --- .release-please-manifest.json | 18 +++++++++--------- packages/core/CHANGELOG.md | 16 ++++++++++++++++ packages/core/package.json | 8 ++++---- packages/create/CHANGELOG.md | 17 +++++++++++++++++ packages/create/package.json | 8 ++++---- packages/dns-discovery/CHANGELOG.md | 9 +++++++++ packages/dns-discovery/package.json | 8 ++++---- packages/enr/CHANGELOG.md | 8 ++++++++ packages/enr/package.json | 6 +++--- packages/interfaces/CHANGELOG.md | 7 +++++++ packages/interfaces/package.json | 2 +- packages/message-encryption/CHANGELOG.md | 9 +++++++++ packages/message-encryption/package.json | 10 +++++----- packages/peer-exchange/CHANGELOG.md | 11 +++++++++++ packages/peer-exchange/package.json | 12 ++++++------ packages/proto/CHANGELOG.md | 7 +++++++ packages/proto/package.json | 2 +- packages/utils/CHANGELOG.md | 7 +++++++ packages/utils/package-lock.json | 4 ++-- packages/utils/package.json | 2 +- 20 files changed, 131 insertions(+), 40 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8c472c4166..a9dc6f539d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "packages/utils": "0.0.2", - "packages/proto": "0.0.3", - "packages/interfaces": "0.0.9", - "packages/enr": "0.0.7", - "packages/peer-exchange": "0.0.5", - "packages/core": "0.0.12", - "packages/dns-discovery": "0.0.7", - "packages/message-encryption": "0.0.11", - "packages/create": "0.0.8" + "packages/utils": "0.0.3", + "packages/proto": "0.0.4", + "packages/interfaces": "0.0.10", + "packages/enr": "0.0.8", + "packages/peer-exchange": "0.0.6", + "packages/core": "0.0.13", + "packages/dns-discovery": "0.0.8", + "packages/message-encryption": "0.0.12", + "packages/create": "0.0.9" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 8ba98b800c..8a8e8cfd72 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,22 @@ 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/core-v0.0.12...core-v0.0.13) (2023-03-24) + + +### Bug Fixes + +* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + * @waku/proto bumped from 0.0.3 to 0.0.4 + * @waku/utils bumped from 0.0.2 to 0.0.3 + ## [0.0.12](https://github.com/waku-org/js-waku/compare/core-v0.0.11...core-v0.0.12) (2023-03-23) diff --git a/packages/core/package.json b/packages/core/package.json index 71c1a9df6c..2d4e5547c0 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.12", + "version": "0.0.13", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -82,9 +82,9 @@ "dependencies": { "@chainsafe/libp2p-gossipsub": "^6.1.0", "@noble/hashes": "^1.3.0", - "@waku/interfaces": "0.0.9", - "@waku/proto": "0.0.3", - "@waku/utils": "0.0.2", + "@waku/interfaces": "0.0.10", + "@waku/proto": "0.0.4", + "@waku/utils": "0.0.3", "debug": "^4.3.4", "it-all": "^2.0.0", "it-length-prefixed": "^8.0.4", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index 82691affbe..80d9139942 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -5,6 +5,23 @@ 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.9](https://github.com/waku-org/js-waku/compare/create-v0.0.8...create-v0.0.9) (2023-03-24) + + +### Bug Fixes + +* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.12 to 0.0.13 + * @waku/dns-discovery bumped from 0.0.7 to 0.0.8 + * devDependencies + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + ## [0.0.8](https://github.com/waku-org/js-waku/compare/create-v0.0.7...create-v0.0.8) (2023-03-23) diff --git a/packages/create/package.json b/packages/create/package.json index 55cd1cb9f7..6c612664ee 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@waku/create", - "version": "0.0.8", + "version": "0.0.9", "description": "Easily create a Waku node", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,8 +53,8 @@ "@chainsafe/libp2p-noise": "^11.0.0", "@libp2p/mplex": "^7.1.1", "@libp2p/websockets": "^5.0.3", - "@waku/core": "0.0.12", - "@waku/dns-discovery": "0.0.7", + "@waku/core": "0.0.13", + "@waku/dns-discovery": "0.0.8", "libp2p": "^0.42.2" }, "devDependencies": { @@ -78,7 +78,7 @@ "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.9", + "@waku/interfaces": "0.0.10", "cspell": "^6.28.0", "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 73be7f4056..50c0e4869c 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.8 to 0.0.9 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from 0.0.7 to 0.0.8 + * @waku/utils bumped from 0.0.2 to 0.0.3 + * devDependencies + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + ## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16) diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 710222ec7f..83666f1020 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.7", + "version": "0.0.8", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -61,8 +61,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/enr": "0.0.7", - "@waku/utils": "0.0.2", + "@waku/enr": "0.0.8", + "@waku/utils": "0.0.3", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -81,7 +81,7 @@ "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.9", + "@waku/interfaces": "0.0.10", "chai": "^4.3.7", "cspell": "^6.28.0", "eslint": "^8.35.0", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 92b6959bb0..6c18fc2f55 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.8 to 0.0.9 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.2 to 0.0.3 + * devDependencies + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + ## [0.0.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-16) diff --git a/packages/enr/package.json b/packages/enr/package.json index b5c533155e..ad944e3cff 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.7", + "version": "0.0.8", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -58,7 +58,7 @@ "@libp2p/peer-id": "^2.0.2", "@multiformats/multiaddr": "^12.0.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "0.0.2", + "@waku/utils": "0.0.3", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -74,7 +74,7 @@ "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.9", + "@waku/interfaces": "0.0.10", "chai": "^4.3.7", "cspell": "^6.28.0", "eslint": "^8.35.0", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 06fcee9b06..34d095eb0a 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,13 @@ 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.10](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.9...interfaces-v0.0.10) (2023-03-24) + + +### Bug Fixes + +* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f)) + ## [0.0.9](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.8...interfaces-v0.0.9) (2023-03-23) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index fc7496abc7..da586db45e 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.9", + "version": "0.0.10", "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 bfe4e69e92..e44ff141da 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -12,6 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * @waku/core bumped from 0.0.11 to 0.0.12 * @waku/interfaces bumped from 0.0.8 to 0.0.9 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.12 to 0.0.13 + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + * @waku/proto bumped from 0.0.3 to 0.0.4 + * @waku/utils bumped from 0.0.2 to 0.0.3 + ## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16) diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index f048a419a0..3b50a07da4 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.11", + "version": "0.0.12", "description": "Waku Message Payload Encryption", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -74,10 +74,10 @@ }, "dependencies": { "@noble/secp256k1": "^1.7.1", - "@waku/core": "0.0.12", - "@waku/interfaces": "0.0.9", - "@waku/proto": "0.0.3", - "@waku/utils": "0.0.2", + "@waku/core": "0.0.13", + "@waku/interfaces": "0.0.10", + "@waku/proto": "0.0.4", + "@waku/utils": "0.0.3", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index bfe626f07f..ba8eb25456 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.12 to 0.0.13 + * @waku/enr bumped from 0.0.7 to 0.0.8 + * @waku/proto bumped from 0.0.3 to 0.0.4 + * @waku/utils bumped from * to 0.0.3 + * devDependencies + * @waku/interfaces bumped from 0.0.9 to 0.0.10 + ## [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 8dac5f2162..8cbd08f19a 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.5", + "version": "0.0.6", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -52,10 +52,10 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/core": "0.0.12", - "@waku/enr": "0.0.7", - "@waku/proto": "0.0.3", - "@waku/utils": "*", + "@waku/core": "0.0.13", + "@waku/enr": "0.0.8", + "@waku/proto": "0.0.4", + "@waku/utils": "0.0.3", "debug": "^4.3.4", "it-all": "^2.0.0", "it-length-prefixed": "^8.0.4", @@ -73,7 +73,7 @@ "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.9", + "@waku/interfaces": "0.0.10", "chai": "^4.3.7", "cspell": "^6.28.0", "eslint": "^8.35.0", diff --git a/packages/proto/CHANGELOG.md b/packages/proto/CHANGELOG.md index b97e5c7af2..a0fd8e9997 100644 --- a/packages/proto/CHANGELOG.md +++ b/packages/proto/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.4](https://github.com/waku-org/js-waku/compare/proto-v0.0.3...proto-v0.0.4) (2023-03-24) + + +### Bug Fixes + +* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f)) + ## [0.0.3](https://github.com/waku-org/js-waku/compare/proto-v0.0.2...proto-v0.0.3) (2023-03-16) diff --git a/packages/proto/package.json b/packages/proto/package.json index 6032692285..8aa1e6e114 100644 --- a/packages/proto/package.json +++ b/packages/proto/package.json @@ -1,6 +1,6 @@ { "name": "@waku/proto", - "version": "0.0.3", + "version": "0.0.4", "description": "Protobuf definitions for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index e31312c0c9..8c559dc4d4 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.3](https://github.com/waku-org/js-waku/compare/utils-v0.0.2...utils-v0.0.3) (2023-03-24) + + +### Bug Fixes + +* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f)) + ## [0.0.2](https://github.com/waku-org/js-waku/compare/utils-v0.0.1...utils-v0.0.2) (2023-03-16) diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index b25b51211b..5319f7e2cc 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@waku/utils", - "version": "0.0.2", + "version": "0.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@waku/utils", - "version": "0.0.2", + "version": "0.0.3", "license": "MIT OR Apache-2.0", "dependencies": { "debug": "^4.3.4", diff --git a/packages/utils/package.json b/packages/utils/package.json index e4f9c9eaf0..1f36ffa454 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.2", + "version": "0.0.3", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js",