diff --git a/.release-please-manifest.json b/.release-please-manifest.json index da291b882..e0a9768aa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "packages/utils": "0.0.3", + "packages/utils": "0.0.4", "packages/proto": "0.0.4", - "packages/interfaces": "0.0.10", - "packages/enr": "0.0.9", - "packages/peer-exchange": "0.0.8", - "packages/core": "0.0.15", - "packages/dns-discovery": "0.0.9", - "packages/message-encryption": "0.0.13", - "packages/create": "0.0.11" + "packages/interfaces": "0.0.11", + "packages/enr": "0.0.10", + "packages/peer-exchange": "0.0.9", + "packages/core": "0.0.16", + "packages/dns-discovery": "0.0.10", + "packages/message-encryption": "0.0.14", + "packages/create": "0.0.12" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 3ccd9406e..960fdd991 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -5,6 +5,25 @@ 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/core-v0.0.15...core-v0.0.16) (2023-04-03) + + +### ⚠ BREAKING CHANGES + +* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) + +### Features + +* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + * @waku/utils bumped from 0.0.3 to 0.0.4 + ## [0.0.15](https://github.com/waku-org/js-waku/compare/core-v0.0.14...core-v0.0.15) (2023-03-31) diff --git a/packages/core/package.json b/packages/core/package.json index 1ae91dcfb..af0e60181 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.15", + "version": "0.0.16", "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.10", + "@waku/interfaces": "0.0.11", "@waku/proto": "0.0.4", - "@waku/utils": "0.0.3", + "@waku/utils": "0.0.4", "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 725a12dbb..d0832ef6c 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -17,6 +17,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * dependencies * @waku/core bumped from 0.0.14 to 0.0.15 +## [0.0.12](https://github.com/waku-org/js-waku/compare/create-v0.0.11...create-v0.0.12) (2023-04-03) + + +### ⚠ BREAKING CHANGES + +* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) + +### Features + +* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.15 to 0.0.16 + * @waku/dns-discovery bumped from 0.0.9 to 0.0.10 + * devDependencies + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + ## [0.0.9](https://github.com/waku-org/js-waku/compare/create-v0.0.8...create-v0.0.9) (2023-03-24) diff --git a/packages/create/package.json b/packages/create/package.json index d4dd9da8d..ba4d732b9 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@waku/create", - "version": "0.0.11", + "version": "0.0.12", "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.15", - "@waku/dns-discovery": "0.0.9", + "@waku/core": "0.0.16", + "@waku/dns-discovery": "0.0.10", "libp2p": "^0.42.2" }, "devDependencies": { @@ -78,7 +78,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.10", + "@waku/interfaces": "0.0.11", "cspell": "^6.31.1", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0", diff --git a/packages/dns-discovery/CHANGELOG.md b/packages/dns-discovery/CHANGELOG.md index 87d6596e7..da5043732 100644 --- a/packages/dns-discovery/CHANGELOG.md +++ b/packages/dns-discovery/CHANGELOG.md @@ -28,6 +28,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * dependencies * @waku/enr bumped from 0.0.8 to 0.0.9 +## [0.0.10](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.9...dns-discovery-v0.0.10) (2023-04-03) + + +### Bug Fixes + +* **dns-discovery:** Use DOH list from dns-query ([1dd3210](https://github.com/waku-org/js-waku/commit/1dd32101baf2750527369f7f25981882aa1f9527)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/enr bumped from 0.0.9 to 0.0.10 + * @waku/utils bumped from 0.0.3 to 0.0.4 + * devDependencies + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + ## [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 552975a0d..f3703b074 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.9", + "version": "0.0.10", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", @@ -62,8 +62,8 @@ "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interfaces": "^3.3.1", - "@waku/enr": "0.0.9", - "@waku/utils": "0.0.3", + "@waku/enr": "0.0.10", + "@waku/utils": "0.0.4", "debug": "^4.3.4", "dns-query": "^0.11.2", "hi-base32": "^0.5.1", @@ -82,7 +82,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.10", + "@waku/interfaces": "0.0.11", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/enr/CHANGELOG.md b/packages/enr/CHANGELOG.md index 3ef199811..52af7c262 100644 --- a/packages/enr/CHANGELOG.md +++ b/packages/enr/CHANGELOG.md @@ -19,6 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * devDependencies * @waku/interfaces bumped from 0.0.9 to 0.0.10 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/utils bumped from 0.0.3 to 0.0.4 + * devDependencies + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + ## [0.0.9](https://github.com/waku-org/js-waku/compare/enr-v0.0.8...enr-v0.0.9) (2023-03-28) diff --git a/packages/enr/package.json b/packages/enr/package.json index 0fc73ab3f..513d0d606 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.9", + "version": "0.0.10", "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.3", + "@waku/utils": "0.0.4", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, @@ -74,7 +74,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.10", + "@waku/interfaces": "0.0.11", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index 34d095eb0..4ffb9210b 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -5,6 +5,17 @@ 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/interfaces-v0.0.10...interfaces-v0.0.11) (2023-04-03) + + +### ⚠ BREAKING CHANGES + +* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) + +### Features + +* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2)) + ## [0.0.10](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.9...interfaces-v0.0.10) (2023-03-24) diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index 1265ceaf2..51e8ba945 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.10", + "version": "0.0.11", "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 fd07b3cb1..95dfe4742 100644 --- a/packages/message-encryption/CHANGELOG.md +++ b/packages/message-encryption/CHANGELOG.md @@ -27,6 +27,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * dependencies * @waku/core bumped from 0.0.14 to 0.0.15 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.15 to 0.0.16 + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + * @waku/utils bumped from 0.0.3 to 0.0.4 + ## [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 806dcc12b..cb62a555b 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.13", + "version": "0.0.14", "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.15", - "@waku/interfaces": "0.0.10", + "@waku/core": "0.0.16", + "@waku/interfaces": "0.0.11", "@waku/proto": "0.0.4", - "@waku/utils": "0.0.3", + "@waku/utils": "0.0.4", "debug": "^4.3.4", "js-sha3": "^0.8.0" }, diff --git a/packages/peer-exchange/CHANGELOG.md b/packages/peer-exchange/CHANGELOG.md index d9acdc7e1..d2eb94209 100644 --- a/packages/peer-exchange/CHANGELOG.md +++ b/packages/peer-exchange/CHANGELOG.md @@ -23,6 +23,16 @@ * dependencies * @waku/core bumped from 0.0.14 to 0.0.15 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @waku/core bumped from 0.0.15 to 0.0.16 + * @waku/enr bumped from 0.0.9 to 0.0.10 + * @waku/utils bumped from 0.0.3 to 0.0.4 + * devDependencies + * @waku/interfaces bumped from 0.0.10 to 0.0.11 + ## [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 926ba2459..76ff91df6 100644 --- a/packages/peer-exchange/package.json +++ b/packages/peer-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@waku/peer-exchange", - "version": "0.0.8", + "version": "0.0.9", "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.15", - "@waku/enr": "0.0.9", + "@waku/core": "0.0.16", + "@waku/enr": "0.0.10", "@waku/proto": "0.0.4", - "@waku/utils": "0.0.3", + "@waku/utils": "0.0.4", "debug": "^4.3.4", "it-all": "^2.0.0", "it-length-prefixed": "^8.0.4", @@ -73,7 +73,7 @@ "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", - "@waku/interfaces": "0.0.10", + "@waku/interfaces": "0.0.11", "chai": "^4.3.7", "cspell": "^6.31.1", "eslint": "^8.35.0", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 8c559dc4d..ba5cf1b9c 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.4](https://github.com/waku-org/js-waku/compare/utils-v0.0.3...utils-v0.0.4) (2023-04-03) + + +### Bug Fixes + +* **utils:** Typescript to able to find types ([03c9cac](https://github.com/waku-org/js-waku/commit/03c9cac3d0f0167dee3b99d3945d96648bdb8685)) + ## [0.0.3](https://github.com/waku-org/js-waku/compare/utils-v0.0.2...utils-v0.0.3) (2023-03-24) diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 5319f7e2c..06ef5273c 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@waku/utils", - "version": "0.0.3", + "version": "0.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@waku/utils", - "version": "0.0.3", + "version": "0.0.4", "license": "MIT OR Apache-2.0", "dependencies": { "debug": "^4.3.4", diff --git a/packages/utils/package.json b/packages/utils/package.json index 1b1620f99..984125987 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/utils", - "version": "0.0.3", + "version": "0.0.4", "description": "Different utilities for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js",