chore: release master (#1444)

This commit is contained in:
fryorcraken.eth 2023-08-02 21:02:57 +10:00 committed by GitHub
parent 785df528fe
commit af5d613e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 155 additions and 45 deletions

View File

@ -1,13 +1,13 @@
{
"packages/utils": "0.0.9",
"packages/utils": "0.0.10",
"packages/proto": "0.0.5",
"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"
"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"
}

View File

@ -5,6 +5,27 @@ 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.22](https://github.com/waku-org/js-waku/compare/core-v0.0.21...core-v0.0.22) (2023-08-02)
### Features
* 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))
### Bug Fixes
* 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))
* Refactors message decoding to abort as soon as a suitable decoder found ([#1414](https://github.com/waku-org/js-waku/issues/1414)) ([30fcace](https://github.com/waku-org/js-waku/commit/30fcacea84d9aefbe71e7f4b48506a088f2e1bf8))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10
## [0.0.21](https://github.com/waku-org/js-waku/compare/core-v0.0.20...core-v0.0.21) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/core",
"version": "0.0.21",
"version": "0.0.22",
"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.16",
"@waku/interfaces": "0.0.17",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.9",
"@waku/utils": "0.0.10",
"debug": "^4.3.4",
"it-all": "^3.0.2",
"it-length-prefixed": "^9.0.1",

View File

@ -46,6 +46,23 @@ 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.16](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.15...dns-discovery-v0.0.16) (2023-08-02)
### Bug Fixes
* 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))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.15 to 0.0.16
* @waku/utils bumped from 0.0.9 to 0.0.10
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.15](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.14...dns-discovery-v0.0.15) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/dns-discovery",
"version": "0.0.15",
"version": "0.0.16",
"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.15",
"@waku/utils": "0.0.9",
"@waku/enr": "0.0.16",
"@waku/utils": "0.0.10",
"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.16",
"@waku/interfaces": "0.0.17",
"chai": "^4.3.7",
"cspell": "^6.31.1",
"karma": "^6.4.1",

View File

@ -51,6 +51,14 @@ 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
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.9 to 0.0.10
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.15](https://github.com/waku-org/js-waku/compare/enr-v0.0.14...enr-v0.0.15) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/enr",
"version": "0.0.15",
"version": "0.0.16",
"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.9",
"@waku/utils": "0.0.10",
"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.16",
"@waku/interfaces": "0.0.17",
"chai": "^4.3.7",
"cspell": "^6.31.1",
"karma": "^6.4.1",

View File

@ -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.17](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.16...interfaces-v0.0.17) (2023-08-02)
### Features
* 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))
## [0.0.16](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.15...interfaces-v0.0.16) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/interfaces",
"version": "0.0.16",
"version": "0.0.17",
"description": "Definition of Waku interfaces",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",

View File

@ -52,6 +52,14 @@ 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
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.21 to 0.0.22
* @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10
## [0.0.19](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.18...message-encryption-v0.0.19) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/message-encryption",
"version": "0.0.19",
"version": "0.0.20",
"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.21",
"@waku/interfaces": "0.0.16",
"@waku/core": "0.0.22",
"@waku/interfaces": "0.0.17",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.9",
"@waku/utils": "0.0.10",
"debug": "^4.3.4",
"js-sha3": "^0.8.0"
},

View File

@ -24,6 +24,14 @@
* devDependencies
* @waku/interfaces bumped from 0.0.15 to 0.0.16
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.9 to 0.0.10
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/message-hash",
"version": "0.1.5",
"version": "0.1.6",
"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.9"
"@waku/utils": "0.0.10"
},
"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.16",
"@waku/interfaces": "0.0.17",
"chai": "^4.3.7",
"cspell": "^6.28.0",
"fast-check": "^3.7.0",

View File

@ -64,6 +64,23 @@
* devDependencies
* @waku/interfaces bumped from 0.0.14 to 0.0.15
## [0.0.15](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.14...peer-exchange-v0.0.15) (2023-08-02)
### Bug Fixes
* 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))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.21 to 0.0.22
* @waku/enr bumped from 0.0.15 to 0.0.16
* @waku/utils bumped from 0.0.9 to 0.0.10
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.14](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.13...peer-exchange-v0.0.14) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/peer-exchange",
"version": "0.0.14",
"version": "0.0.15",
"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.21",
"@waku/enr": "0.0.15",
"@waku/core": "0.0.22",
"@waku/enr": "0.0.16",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.9",
"@waku/interfaces": "0.0.16",
"@waku/utils": "0.0.10",
"@waku/interfaces": "0.0.17",
"debug": "^4.3.4",
"it-all": "^3.0.2",
"it-length-prefixed": "^9.0.1",

View File

@ -17,6 +17,14 @@
* @waku/interfaces bumped from 0.0.14 to 0.0.15
* @waku/utils bumped from 0.0.7 to 0.0.8
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.21 to 0.0.22
* @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10
## [0.0.4](https://github.com/waku-org/js-waku/compare/relay-v0.0.3...relay-v0.0.4) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/relay",
"version": "0.0.4",
"version": "0.0.5",
"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.21",
"@waku/interfaces": "0.0.16",
"@waku/core": "0.0.22",
"@waku/interfaces": "0.0.17",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.9",
"@waku/utils": "0.0.10",
"chai": "^4.3.7",
"debug": "^4.3.4",
"fast-check": "^3.8.1"

View File

@ -26,6 +26,16 @@ 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
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.9 to 0.0.10
* @waku/relay bumped from 0.0.4 to 0.0.5
* @waku/core bumped from 0.0.21 to 0.0.22
* @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.17](https://github.com/waku-org/js-waku/compare/sdk-v0.0.16...sdk-v0.0.17) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/sdk",
"version": "0.0.17",
"version": "0.0.18",
"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.9",
"@waku/relay": "0.0.4",
"@waku/core": "0.0.21",
"@waku/interfaces": "0.0.16",
"@waku/dns-discovery": "0.0.15",
"@waku/utils": "0.0.10",
"@waku/relay": "0.0.5",
"@waku/core": "0.0.22",
"@waku/interfaces": "0.0.17",
"@waku/dns-discovery": "0.0.16",
"libp2p": "^0.45.9"
},
"devDependencies": {

View File

@ -6,6 +6,12 @@
* devDependencies
* @waku/interfaces bumped from 0.0.14 to 0.0.15
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.9](https://github.com/waku-org/js-waku/compare/utils-v0.0.8...utils-v0.0.9) (2023-07-26)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/utils",
"version": "0.0.9",
"version": "0.0.10",
"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.16",
"@waku/interfaces": "0.0.17",
"cspell": "^6.31.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",