chore: release master (#1568)

This commit is contained in:
fryorcraken 2023-10-17 01:18:34 +11:00 committed by GitHub
parent 9fe04d85f3
commit 0e4ceb6ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 247 additions and 47 deletions

View File

@ -1,13 +1,13 @@
{
"packages/utils": "0.0.11",
"packages/utils": "0.0.12",
"packages/proto": "0.0.5",
"packages/interfaces": "0.0.18",
"packages/message-hash": "0.1.7",
"packages/enr": "0.0.17",
"packages/peer-exchange": "0.0.16",
"packages/core": "0.0.23",
"packages/dns-discovery": "0.0.17",
"packages/message-encryption": "0.0.21",
"packages/relay": "0.0.6",
"packages/sdk": "0.0.19"
"packages/interfaces": "0.0.19",
"packages/message-hash": "0.1.8",
"packages/enr": "0.0.18",
"packages/peer-exchange": "0.0.17",
"packages/core": "0.0.24",
"packages/dns-discovery": "0.0.18",
"packages/message-encryption": "0.0.22",
"packages/relay": "0.0.7",
"packages/sdk": "0.0.20"
}

View File

@ -5,6 +5,40 @@ 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.24](https://github.com/waku-org/js-waku/compare/core-v0.0.23...core-v0.0.24) (2023-10-16)
### ⚠ BREAKING CHANGES
* **store:** use `pubSubTopic` from `DecodedMessage` for `createCursor` ([#1640](https://github.com/waku-org/js-waku/issues/1640))
* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586))
* return `REMOTE_PEER_REJECTED` if remote peer rejected the message
### Features
* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab))
* Enable pinging connected peers by default ([#1647](https://github.com/waku-org/js-waku/issues/1647)) ([1d60c4b](https://github.com/waku-org/js-waku/commit/1d60c4ba44f7fd511371e926247d9151590edec5))
* Return `REMOTE_PEER_REJECTED` if remote peer rejected the message ([053b654](https://github.com/waku-org/js-waku/commit/053b6545ad0c2450af5687495eb7b6049c0f21ad))
* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6))
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Bug Fixes
* Catch stream creation promise rejection for `lightPush.send` ([b696a89](https://github.com/waku-org/js-waku/commit/b696a8957211bf20577f419a207a23ceca03d23f))
* Catch top level exception when preemptively creating streams ([fb37c89](https://github.com/waku-org/js-waku/commit/fb37c89e40a9d7c98bef17a085876478486fca8b))
* **store:** Use `pubSubTopic` from `DecodedMessage` for `createCursor` ([#1640](https://github.com/waku-org/js-waku/issues/1640)) ([b10c46b](https://github.com/waku-org/js-waku/commit/b10c46b910511418a048d7092dfd8b500a71a931))
* Throw error when no response ([#1567](https://github.com/waku-org/js-waku/issues/1567)) ([d049ebb](https://github.com/waku-org/js-waku/commit/d049ebbc3417e5c20eccba3aa1b9fc5382e8d7fc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from ^0.0.17 to ^0.0.18
* @waku/interfaces bumped from 0.0.18 to 0.0.19
* @waku/utils bumped from 0.0.11 to 0.0.12
## [0.0.23](https://github.com/waku-org/js-waku/compare/core-v0.0.22...core-v0.0.23) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/core",
"version": "0.0.23",
"version": "0.0.24",
"description": "TypeScript implementation of the Waku v2 protocol",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -73,10 +73,10 @@
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"@waku/enr": "^0.0.17",
"@waku/interfaces": "0.0.18",
"@waku/enr": "^0.0.18",
"@waku/interfaces": "0.0.19",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.11",
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"it-all": "^3.0.3",
"it-length-prefixed": "^9.0.1",

View File

@ -46,6 +46,24 @@ 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.18](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.17...dns-discovery-v0.0.18) (2023-10-16)
### Features
* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab))
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.17 to 0.0.18
* @waku/utils bumped from 0.0.11 to 0.0.12
* devDependencies
* @waku/interfaces bumped from 0.0.18 to 0.0.19
## [0.0.17](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.16...dns-discovery-v0.0.17) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/dns-discovery",
"version": "0.0.17",
"version": "0.0.18",
"description": "DNS Peer Discovery (EIP-1459)",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -51,8 +51,8 @@
"node": ">=18"
},
"dependencies": {
"@waku/enr": "0.0.17",
"@waku/utils": "0.0.11",
"@waku/enr": "0.0.18",
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"dns-query": "^0.11.2",
"hi-base32": "^0.5.1",
@ -67,7 +67,7 @@
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/chai": "^4.3.5",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.18",
"@waku/interfaces": "0.0.19",
"chai": "^4.3.7",
"cspell": "^7.3.2",
"mocha": "^10.2.0",

View File

@ -59,6 +59,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.18](https://github.com/waku-org/js-waku/compare/enr-v0.0.17...enr-v0.0.18) (2023-10-16)
### Features
* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab))
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.11 to 0.0.12
* devDependencies
* @waku/interfaces bumped from 0.0.18 to 0.0.19
## [0.0.17](https://github.com/waku-org/js-waku/compare/enr-v0.0.16...enr-v0.0.17) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/enr",
"version": "0.0.17",
"version": "0.0.18",
"description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -56,7 +56,7 @@
"@libp2p/peer-id": "^3.0.2",
"@multiformats/multiaddr": "^12.0.0",
"@noble/secp256k1": "^1.7.1",
"@waku/utils": "0.0.11",
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"js-sha3": "^0.9.2"
},
@ -68,7 +68,7 @@
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.18",
"@waku/interfaces": "0.0.19",
"chai": "^4.3.7",
"cspell": "^7.3.2",
"fast-check": "^3.13.1",

View File

@ -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.19](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.18...interfaces-v0.0.19) (2023-10-16)
### ⚠ BREAKING CHANGES
* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586))
* return `REMOTE_PEER_REJECTED` if remote peer rejected the message
### Features
* Return `REMOTE_PEER_REJECTED` if remote peer rejected the message ([053b654](https://github.com/waku-org/js-waku/commit/053b6545ad0c2450af5687495eb7b6049c0f21ad))
* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6))
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Bug Fixes
* Catch stream creation promise rejection for `lightPush.send` ([b696a89](https://github.com/waku-org/js-waku/commit/b696a8957211bf20577f419a207a23ceca03d23f))
## [0.0.18](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.17...interfaces-v0.0.18) (2023-09-11)

View File

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

View File

@ -68,6 +68,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* @waku/interfaces bumped from 0.0.17 to 0.0.18
* @waku/utils bumped from 0.0.10 to 0.0.11
## [0.0.22](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.21...message-encryption-v0.0.22) (2023-10-16)
### ⚠ BREAKING CHANGES
* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586))
### Features
* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab))
* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.23 to 0.0.24
* @waku/interfaces bumped from 0.0.18 to 0.0.19
* @waku/utils bumped from 0.0.11 to 0.0.12
## [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.21",
"version": "0.0.22",
"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.23",
"@waku/interfaces": "0.0.18",
"@waku/core": "0.0.24",
"@waku/interfaces": "0.0.19",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.11",
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"js-sha3": "^0.9.2"
},

View File

@ -32,6 +32,22 @@
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.1.8](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.7...message-hash-v0.1.8) (2023-10-16)
### Features
* Add Firefox and Webkit to karma ([#1598](https://github.com/waku-org/js-waku/issues/1598)) ([d9e4bcb](https://github.com/waku-org/js-waku/commit/d9e4bcbe3f7bcc092f20621bd362d76426701dab))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.11 to 0.0.12
* devDependencies
* @waku/interfaces bumped from 0.0.18 to 0.0.19
## [0.1.7](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.6...message-hash-v0.1.7) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/message-hash",
"version": "0.1.7",
"version": "0.1.8",
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -51,7 +51,7 @@
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"@waku/utils": "0.0.11"
"@waku/utils": "0.0.12"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
@ -61,7 +61,7 @@
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.1",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.18",
"@waku/interfaces": "0.0.19",
"chai": "^4.3.7",
"cspell": "^7.3.2",
"fast-check": "^3.13.1",

View File

@ -64,6 +64,23 @@
* devDependencies
* @waku/interfaces bumped from 0.0.14 to 0.0.15
## [0.0.17](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.16...peer-exchange-v0.0.17) (2023-10-16)
### Features
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.23 to 0.0.24
* @waku/enr bumped from 0.0.17 to 0.0.18
* @waku/interfaces bumped from 0.0.18 to 0.0.19
* @waku/utils bumped from 0.0.11 to 0.0.12
## [0.0.16](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.15...peer-exchange-v0.0.16) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/peer-exchange",
"version": "0.0.16",
"version": "0.0.17",
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -49,11 +49,11 @@
},
"dependencies": {
"@libp2p/interfaces": "^3.3.2",
"@waku/core": "0.0.23",
"@waku/enr": "0.0.17",
"@waku/interfaces": "0.0.18",
"@waku/core": "0.0.24",
"@waku/enr": "0.0.18",
"@waku/interfaces": "0.0.19",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.11",
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"it-all": "^3.0.3",
"it-length-prefixed": "^9.0.1",

View File

@ -25,6 +25,26 @@
* @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10
## [0.0.7](https://github.com/waku-org/js-waku/compare/relay-v0.0.6...relay-v0.0.7) (2023-10-16)
### ⚠ BREAKING CHANGES
* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586))
### Features
* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.23 to 0.0.24
* @waku/interfaces bumped from 0.0.18 to 0.0.19
* @waku/utils bumped from 0.0.11 to 0.0.12
## [0.0.6](https://github.com/waku-org/js-waku/compare/relay-v0.0.5...relay-v0.0.6) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/relay",
"version": "0.0.6",
"version": "0.0.7",
"description": "Relay Protocol for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -51,10 +51,10 @@
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^10.1.0",
"@noble/hashes": "^1.3.2",
"@waku/core": "0.0.23",
"@waku/interfaces": "0.0.18",
"@waku/core": "0.0.24",
"@waku/interfaces": "0.0.19",
"@waku/proto": "0.0.5",
"@waku/utils": "0.0.11",
"@waku/utils": "0.0.12",
"chai": "^4.3.7",
"debug": "^4.3.4",
"fast-check": "^3.13.1"

View File

@ -36,6 +36,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* @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.20](https://github.com/waku-org/js-waku/compare/sdk-v0.0.19...sdk-v0.0.20) (2023-10-16)
### Features
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.11 to 0.0.12
* @waku/relay bumped from 0.0.6 to 0.0.7
* @waku/core bumped from 0.0.23 to 0.0.24
* @waku/dns-discovery bumped from 0.0.17 to 0.0.18
* @waku/interfaces bumped from 0.0.18 to 0.0.19
* @waku/peer-exchange bumped from ^0.0.16 to ^0.0.17
## [0.0.19](https://github.com/waku-org/js-waku/compare/sdk-v0.0.18...sdk-v0.0.19) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/sdk",
"version": "0.0.19",
"version": "0.0.20",
"description": "A unified SDK for easy creation and management of js-waku nodes.",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -51,12 +51,12 @@
"@chainsafe/libp2p-noise": "^13.0.0",
"@libp2p/mplex": "^9.0.5",
"@libp2p/websockets": "^7.0.5",
"@waku/utils": "0.0.11",
"@waku/relay": "0.0.6",
"@waku/core": "0.0.23",
"@waku/dns-discovery": "0.0.17",
"@waku/interfaces": "0.0.18",
"@waku/peer-exchange": "^0.0.16",
"@waku/utils": "0.0.12",
"@waku/relay": "0.0.7",
"@waku/core": "0.0.24",
"@waku/dns-discovery": "0.0.18",
"@waku/interfaces": "0.0.19",
"@waku/peer-exchange": "^0.0.17",
"libp2p": "^0.46.12"
},
"devDependencies": {

View File

@ -12,6 +12,25 @@
* devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.12](https://github.com/waku-org/js-waku/compare/utils-v0.0.11...utils-v0.0.12) (2023-10-16)
### ⚠ BREAKING CHANGES
* **static-sharding:** allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586))
### Features
* **static-sharding:** Allow multiple pubSubTopics ([#1586](https://github.com/waku-org/js-waku/issues/1586)) ([a3c45b6](https://github.com/waku-org/js-waku/commit/a3c45b6e1a9beae488cae3c71c48949fa47bcaf6))
* **static-sharding:** Filter peer connections per shards ([#1626](https://github.com/waku-org/js-waku/issues/1626)) ([124a29e](https://github.com/waku-org/js-waku/commit/124a29ebba59c05fbbf199d969e6ba3f9e57d45b))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @waku/interfaces bumped from 0.0.18 to 0.0.19
## [0.0.11](https://github.com/waku-org/js-waku/compare/utils-v0.0.10...utils-v0.0.11) (2023-09-11)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/utils",
"version": "0.0.11",
"version": "0.0.12",
"description": "Different utilities for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -74,7 +74,7 @@
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.18",
"@waku/interfaces": "0.0.19",
"cspell": "^7.3.2",
"npm-run-all": "^4.1.5",
"rollup": "^3.29.2"