From b3546ae69271762dd315253e9188073d2e137f56 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" <110212804+fryorcraken@users.noreply.github.com> Date: Fri, 17 Mar 2023 06:29:40 +1100 Subject: [PATCH] chore: release master (#1237) --- .release-please-manifest.json | 18 ++++---- packages/core/CHANGELOG.md | 52 ++++++++++++++++++++++++ packages/core/package.json | 8 ++-- packages/create/CHANGELOG.md | 35 ++++++++++++++++ packages/create/package.json | 10 ++--- packages/dns-discovery/CHANGELOG.md | 41 +++++++++++++++++++ packages/dns-discovery/package.json | 8 ++-- packages/enr/CHANGELOG.md | 37 +++++++++++++++++ packages/enr/package.json | 6 +-- packages/interfaces/CHANGELOG.md | 40 ++++++++++++++++++ packages/interfaces/package.json | 2 +- packages/message-encryption/CHANGELOG.md | 39 ++++++++++++++++++ packages/message-encryption/package.json | 10 ++--- packages/peer-exchange/CHANGELOG.md | 44 ++++++++++++++++++++ packages/peer-exchange/package.json | 8 ++-- packages/proto/CHANGELOG.md | 32 +++++++++++++++ packages/proto/package.json | 2 +- packages/utils/CHANGELOG.md | 24 +++++++++++ packages/utils/package.json | 2 +- 19 files changed, 381 insertions(+), 37 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3806418880..34ce35fcdf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "packages/utils": "0.0.1", - "packages/proto": "0.0.2", - "packages/interfaces": "0.0.7", - "packages/enr": "0.0.5", - "packages/peer-exchange": "0.0.3", - "packages/core": "0.0.10", - "packages/dns-discovery": "0.0.5", - "packages/message-encryption": "0.0.9", - "packages/create": "0.0.6" + "packages/utils": "0.0.2", + "packages/proto": "0.0.3", + "packages/interfaces": "0.0.8", + "packages/enr": "0.0.6", + "packages/peer-exchange": "0.0.4", + "packages/core": "0.0.11", + "packages/dns-discovery": "0.0.6", + "packages/message-encryption": "0.0.10", + "packages/create": "0.0.7" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bbfe045a2c..f8e13c53f7 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,58 @@ 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.11](https://github.com/waku-org/js-waku/compare/core-v0.0.10...core-v0.0.11) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add custom events to Relay and make observers private ([#1213](https://github.com/waku-org/js-waku/issues/1213)) +* add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) +* enable encoding of `meta` field +* expose pubsub topic in `IDecodedMessage` +* update store.proto +* update message.proto: payload and content topic are always defined +* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) +* bump typescript +* bump all prod dependencies +* bump libp2p dependencies + +### Features + +* Add custom events to Relay and make observers private ([#1213](https://github.com/waku-org/js-waku/issues/1213)) ([275b166](https://github.com/waku-org/js-waku/commit/275b16641e620956a5f8ebbb3a8c4156149d489e)) +* Codec as a property of the protocol implementations ([a5ff788](https://github.com/waku-org/js-waku/commit/a5ff788eed419556e11319f22ca9e3109c81df92)) +* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) ([24c24cc](https://github.com/waku-org/js-waku/commit/24c24cc27d83ec12de45ef3cf3d00f6eb817e4ca)) +* Enable encoding of `meta` field ([bd983ea](https://github.com/waku-org/js-waku/commit/bd983ea48ee73fda5a7137d5ef681965aeabb4a5)) +* Export `Decoder`, `Encoder` and `DecodedMessage` types from root ([da1b18d](https://github.com/waku-org/js-waku/commit/da1b18d9956259af4cb2e6f7c1f06de52b6ec3ac)), closes [#1010](https://github.com/waku-org/js-waku/issues/1010) +* Expose pubsub topic in `IDecodedMessage` ([628ac50](https://github.com/waku-org/js-waku/commit/628ac50d7104ec3c1dff44db58077a85db6b6aa1)), closes [#1208](https://github.com/waku-org/js-waku/issues/1208) +* **relay:** Validate waku message at gossip layer ([9684737](https://github.com/waku-org/js-waku/commit/96847374d6c61f3372a16185d9fff93e582505bb)) + + +### Bug Fixes + +* Add payload to relay ping messages to avoid poor relay peer scoring ([560c393](https://github.com/waku-org/js-waku/commit/560c39366259f9902cac7f2afd0d301c49e13f4c)) +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) +* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18)) + + +### Miscellaneous Chores + +* Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67)) +* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260)) +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249)) +* Update store.proto ([967e6ff](https://github.com/waku-org/js-waku/commit/967e6ffc7ec6f780094e29599c47b723fa222dcc)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from * to 0.0.8 + * @waku/proto bumped from * to 0.0.3 + * @waku/utils bumped from * to 0.0.2 + ## [Unreleased] ### Added diff --git a/packages/core/package.json b/packages/core/package.json index b59360e736..849b3b0d68 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.10", + "version": "0.0.11", "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.2.0", - "@waku/interfaces": "*", - "@waku/proto": "*", - "@waku/utils": "*", + "@waku/interfaces": "0.0.8", + "@waku/proto": "0.0.3", + "@waku/utils": "0.0.2", "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 8ae0fda0d5..3db3a5c632 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -5,6 +5,41 @@ 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.7](https://github.com/waku-org/js-waku/compare/create-v0.0.6...create-v0.0.7) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* bump typescript +* bump libp2p dependencies + +### Features + +* DNS discovery as default bootstrap discovery ([#1114](https://github.com/waku-org/js-waku/issues/1114)) ([11819fc](https://github.com/waku-org/js-waku/commit/11819fc7b14e18385d421facaf2af0832cad1da8)) + + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) +* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18)) + + +### Miscellaneous Chores + +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from * to 0.0.11 + * @waku/dns-discovery bumped from * to 0.0.6 + * @waku/peer-exchange bumped from * to 0.0.4 + * devDependencies + * @waku/interfaces bumped from * to 0.0.8 + ## [Unreleased] ### Fixed diff --git a/packages/create/package.json b/packages/create/package.json index 87585ed54f..76f8395a12 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@waku/create", - "version": "0.0.6", + "version": "0.0.7", "description": "Easily create a Waku node", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -53,9 +53,9 @@ "@chainsafe/libp2p-noise": "^11.0.0", "@libp2p/mplex": "^7.1.1", "@libp2p/websockets": "^5.0.3", - "@waku/core": "*", - "@waku/dns-discovery": "*", - "@waku/peer-exchange": "*", + "@waku/core": "0.0.11", + "@waku/dns-discovery": "0.0.6", + "@waku/peer-exchange": "0.0.4", "libp2p": "^0.42.2" }, "devDependencies": { @@ -79,7 +79,7 @@ "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.8", "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 d1cc8c96a5..2e2fcbe7bf 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -5,6 +5,47 @@ 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.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) +* directly convert from ENR to `PeerInfo`, remove unneeded utility +* extract decoder code +* bump typescript +* bump libp2p dependencies + +### Features + +* Add mocha to dns-discovery ([#1154](https://github.com/waku-org/js-waku/issues/1154)) ([f945eb9](https://github.com/waku-org/js-waku/commit/f945eb90c49bb54322c4cb58c20cfdeee72ff4f2)) +* DNS discovery as default bootstrap discovery ([#1114](https://github.com/waku-org/js-waku/issues/1114)) ([11819fc](https://github.com/waku-org/js-waku/commit/11819fc7b14e18385d421facaf2af0832cad1da8)) + + +### Bug Fixes + +* **dns-discovery/peer-exchange:** Check if peer is already tagged ([952aadd](https://github.com/waku-org/js-waku/commit/952aadd7bbbe1a7265c5126c1678f552bef0648d)) +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) + + +### Miscellaneous Chores + +* Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67)) +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Directly convert from ENR to `PeerInfo`, remove unneeded utility ([6dbcde0](https://github.com/waku-org/js-waku/commit/6dbcde041ab8fa8c2df75cc25319a0eccf6b0454)) +* Extract decoder code ([130c49b](https://github.com/waku-org/js-waku/commit/130c49b636807063364f309da0da2a24a68f2178)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from * to 0.0.6 + * @waku/utils bumped from * to 0.0.2 + * devDependencies + * @waku/interfaces bumped from * to 0.0.8 + ## [Unreleased] ## [0.0.5] - 2023-01-25 diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 222abe1723..9955014f0c 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.5", + "version": "0.0.6", "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": "*", - "@waku/utils": "*", + "@waku/enr": "0.0.6", + "@waku/utils": "0.0.2", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -81,7 +81,7 @@ "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.8", "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 f1c147436d..73e2b786dc 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -5,6 +5,43 @@ 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.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) +* directly convert from ENR to `PeerInfo`, remove unneeded utility +* extract encoder code +* extract decoder code +* bump typescript +* bump all prod dependencies +* bump libp2p dependencies + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) + + +### Miscellaneous Chores + +* Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67)) +* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260)) +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Directly convert from ENR to `PeerInfo`, remove unneeded utility ([6dbcde0](https://github.com/waku-org/js-waku/commit/6dbcde041ab8fa8c2df75cc25319a0eccf6b0454)) +* Extract decoder code ([130c49b](https://github.com/waku-org/js-waku/commit/130c49b636807063364f309da0da2a24a68f2178)) +* Extract encoder code ([22ffcf5](https://github.com/waku-org/js-waku/commit/22ffcf571aa3998267f0f3b59576abc38f3f4281)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from * to 0.0.2 + * devDependencies + * @waku/interfaces bumped from * to 0.0.8 + ## [Unreleased] ## [0.0.5] - 2023-01-25 diff --git a/packages/enr/package.json b/packages/enr/package.json index 2d902a3122..11373f7265 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.5", + "version": "0.0.6", "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": "^11.4.0", "@noble/secp256k1": "^1.7.1", - "@waku/utils": "*", + "@waku/utils": "0.0.2", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -74,7 +74,7 @@ "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.8", "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 86a3ed748c..70e35f53ce 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,46 @@ 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.8](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.7...interfaces-v0.0.8) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add custom events to Relay and make observers private ([#1213](https://github.com/waku-org/js-waku/issues/1213)) +* enable encoding of `meta` field +* expose pubsub topic in `IDecodedMessage` +* directly convert from ENR to `PeerInfo`, remove unneeded utility +* extract encoder code +* update store.proto +* update message.proto: payload and content topic are always defined +* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) +* bump typescript +* bump libp2p dependencies + +### Features + +* Add custom events to Relay and make observers private ([#1213](https://github.com/waku-org/js-waku/issues/1213)) ([275b166](https://github.com/waku-org/js-waku/commit/275b16641e620956a5f8ebbb3a8c4156149d489e)) +* Codec as a property of the protocol implementations ([a5ff788](https://github.com/waku-org/js-waku/commit/a5ff788eed419556e11319f22ca9e3109c81df92)) +* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) ([24c24cc](https://github.com/waku-org/js-waku/commit/24c24cc27d83ec12de45ef3cf3d00f6eb817e4ca)) +* Enable encoding of `meta` field ([bd983ea](https://github.com/waku-org/js-waku/commit/bd983ea48ee73fda5a7137d5ef681965aeabb4a5)) +* Expose pubsub topic in `IDecodedMessage` ([628ac50](https://github.com/waku-org/js-waku/commit/628ac50d7104ec3c1dff44db58077a85db6b6aa1)), closes [#1208](https://github.com/waku-org/js-waku/issues/1208) + + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) +* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18)) + + +### Miscellaneous Chores + +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Directly convert from ENR to `PeerInfo`, remove unneeded utility ([6dbcde0](https://github.com/waku-org/js-waku/commit/6dbcde041ab8fa8c2df75cc25319a0eccf6b0454)) +* Extract encoder code ([22ffcf5](https://github.com/waku-org/js-waku/commit/22ffcf571aa3998267f0f3b59576abc38f3f4281)) +* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249)) +* Update store.proto ([967e6ff](https://github.com/waku-org/js-waku/commit/967e6ffc7ec6f780094e29599c47b723fa222dcc)) + ## [Unreleased] ### Added diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index b8f4e101b0..1af159b71c 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.7", + "version": "0.0.8", "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 e470b18160..ef451d9f07 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -5,6 +5,45 @@ 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/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) +* enable encoding of `meta` field +* expose pubsub topic in `IDecodedMessage` +* update message.proto: payload and content topic are always defined +* bump typescript + +### Features + +* Enable encoding of `meta` field ([bd983ea](https://github.com/waku-org/js-waku/commit/bd983ea48ee73fda5a7137d5ef681965aeabb4a5)) +* Export `Decoder`, `Encoder` and `DecodedMessage` types from root ([da1b18d](https://github.com/waku-org/js-waku/commit/da1b18d9956259af4cb2e6f7c1f06de52b6ec3ac)), closes [#1010](https://github.com/waku-org/js-waku/issues/1010) +* Expose pubsub topic in `IDecodedMessage` ([628ac50](https://github.com/waku-org/js-waku/commit/628ac50d7104ec3c1dff44db58077a85db6b6aa1)), closes [#1208](https://github.com/waku-org/js-waku/issues/1208) + + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) + + +### Miscellaneous Chores + +* Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from * to 0.0.11 + * @waku/interfaces bumped from * to 0.0.8 + * @waku/proto bumped from * to 0.0.3 + * @waku/utils bumped from * to 0.0.2 + ## [Unreleased] ### Changed diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index f06c0e0473..073330d742 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.9", + "version": "0.0.10", "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": "*", - "@waku/interfaces": "*", - "@waku/proto": "*", - "@waku/utils": "*", + "@waku/core": "0.0.11", + "@waku/interfaces": "0.0.8", + "@waku/proto": "0.0.3", + "@waku/utils": "0.0.2", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index b743b26d79..4248a6b0ee 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -1,5 +1,49 @@ # Changelog +## [0.0.4](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.3...peer-exchange-v0.0.4) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* directly convert from ENR to `PeerInfo`, remove unneeded utility +* extract decoder code +* bump typescript +* bump all prod dependencies +* bump libp2p dependencies + +### Features + +* Codec as a property of the protocol implementations ([a5ff788](https://github.com/waku-org/js-waku/commit/a5ff788eed419556e11319f22ca9e3109c81df92)) +* DNS discovery as default bootstrap discovery ([#1114](https://github.com/waku-org/js-waku/issues/1114)) ([11819fc](https://github.com/waku-org/js-waku/commit/11819fc7b14e18385d421facaf2af0832cad1da8)) + + +### Bug Fixes + +* **dns-discovery/peer-exchange:** Check if peer is already tagged ([952aadd](https://github.com/waku-org/js-waku/commit/952aadd7bbbe1a7265c5126c1678f552bef0648d)) +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) +* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18)) + + +### Miscellaneous Chores + +* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260)) +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Directly convert from ENR to `PeerInfo`, remove unneeded utility ([6dbcde0](https://github.com/waku-org/js-waku/commit/6dbcde041ab8fa8c2df75cc25319a0eccf6b0454)) +* Extract decoder code ([130c49b](https://github.com/waku-org/js-waku/commit/130c49b636807063364f309da0da2a24a68f2178)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from * to 0.0.6 + * @waku/proto bumped from * to 0.0.3 + * devDependencies + * @waku/interfaces bumped from * to 0.0.8 + +## Changelog + 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, diff --git a/packages/peer-exchange/package.json b/packages/peer-exchange/package.json index 5d3d3a2e11..83c8a35b94 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.3", + "version": "0.0.4", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -52,8 +52,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/enr": "*", - "@waku/proto": "*", + "@waku/enr": "0.0.6", + "@waku/proto": "0.0.3", "debug": "^4.3.4", "it-all": "^2.0.0", "it-length-prefixed": "^8.0.4", @@ -71,7 +71,7 @@ "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "*", + "@waku/interfaces": "0.0.8", "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 b743b26d79..b97e5c7af2 100644 --- a/packages/proto/CHANGELOG.md +++ b/packages/proto/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## [0.0.3](https://github.com/waku-org/js-waku/compare/proto-v0.0.2...proto-v0.0.3) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* enable encoding of `meta` field +* update store.proto +* update message.proto: payload and content topic are always defined +* bump protons from 5.1.0 to 7.0.2 +* bump typescript +* bump all prod dependencies + +### Features + +* Enable encoding of `meta` field ([bd983ea](https://github.com/waku-org/js-waku/commit/bd983ea48ee73fda5a7137d5ef681965aeabb4a5)) + + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) + + +### Miscellaneous Chores + +* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260)) +* Bump protons from 5.1.0 to 7.0.2 ([2f2d266](https://github.com/waku-org/js-waku/commit/2f2d266e8180cd1e7b89a7e261a33f87acce6ed2)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249)) +* Update store.proto ([967e6ff](https://github.com/waku-org/js-waku/commit/967e6ffc7ec6f780094e29599c47b723fa222dcc)) + +## Changelog + 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, diff --git a/packages/proto/package.json b/packages/proto/package.json index db3321b166..4909ac6899 100644 --- a/packages/proto/package.json +++ b/packages/proto/package.json @@ -1,6 +1,6 @@ { "name": "@waku/proto", - "version": "0.0.2", + "version": "0.0.3", "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 b743b26d79..e31312c0c9 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.0.2](https://github.com/waku-org/js-waku/compare/utils-v0.0.1...utils-v0.0.2) (2023-03-16) + + +### ⚠ BREAKING CHANGES + +* add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) +* directly convert from ENR to `PeerInfo`, remove unneeded utility +* bump typescript +* bump libp2p dependencies + +### Bug Fixes + +* Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5)) + + +### Miscellaneous Chores + +* Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67)) +* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36)) +* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000)) +* Directly convert from ENR to `PeerInfo`, remove unneeded utility ([6dbcde0](https://github.com/waku-org/js-waku/commit/6dbcde041ab8fa8c2df75cc25319a0eccf6b0454)) + +## Changelog + 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, diff --git a/packages/utils/package.json b/packages/utils/package.json index 0d6c264e2c..e305609bfb 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.1", + "version": "0.0.2", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js",