chore: release master (#2122)

This commit is contained in:
Sasha 2024-09-06 01:42:16 +02:00 committed by GitHub
parent 0263cb80c5
commit a2c5dba32d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
19 changed files with 183 additions and 42 deletions

View File

@ -1,13 +1,13 @@
{ {
"packages/utils": "0.0.19", "packages/utils": "0.0.20",
"packages/proto": "0.0.8", "packages/proto": "0.0.8",
"packages/interfaces": "0.0.26", "packages/interfaces": "0.0.27",
"packages/message-hash": "0.1.15", "packages/message-hash": "0.1.16",
"packages/enr": "0.0.25", "packages/enr": "0.0.26",
"packages/core": "0.0.31", "packages/core": "0.0.32",
"packages/message-encryption": "0.0.29", "packages/message-encryption": "0.0.30",
"packages/relay": "0.0.14", "packages/relay": "0.0.15",
"packages/sdk": "0.0.27", "packages/sdk": "0.0.28",
"packages/discovery": "0.0.4", "packages/discovery": "0.0.5",
"packages/react-native-polyfills": "0.0.1" "packages/react-native-polyfills": "0.0.1"
} }

View File

@ -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, 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.32](https://github.com/waku-org/js-waku/compare/core-v0.0.31...core-v0.0.32) (2024-09-05)
### Bug Fixes
* Improve node bootstrapping ([#2121](https://github.com/waku-org/js-waku/issues/2121)) ([0263cb8](https://github.com/waku-org/js-waku/commit/0263cb80c5d2bc61984b5357761236ba4f759036))
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from ^0.0.25 to ^0.0.26
* @waku/interfaces bumped from 0.0.26 to 0.0.27
* @waku/utils bumped from 0.0.19 to 0.0.20
## [0.0.31](https://github.com/waku-org/js-waku/compare/core-v0.0.30...core-v0.0.31) (2024-08-29) ## [0.0.31](https://github.com/waku-org/js-waku/compare/core-v0.0.30...core-v0.0.31) (2024-08-29)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/core", "name": "@waku/core",
"version": "0.0.31", "version": "0.0.32",
"description": "TypeScript implementation of the Waku v2 protocol", "description": "TypeScript implementation of the Waku v2 protocol",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -69,10 +69,10 @@
}, },
"dependencies": { "dependencies": {
"@libp2p/ping": "^1.1.2", "@libp2p/ping": "^1.1.2",
"@waku/enr": "^0.0.25", "@waku/enr": "^0.0.26",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"@waku/proto": "0.0.8", "@waku/proto": "0.0.8",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"debug": "^4.3.4", "debug": "^4.3.4",
"it-all": "^3.0.4", "it-all": "^3.0.4",
"it-length-prefixed": "^9.0.4", "it-length-prefixed": "^9.0.4",

View File

@ -1,5 +1,23 @@
# Changelog # Changelog
## [0.0.5](https://github.com/waku-org/js-waku/compare/discovery-v0.0.4...discovery-v0.0.5) (2024-09-05)
### Bug Fixes
* Improve node bootstrapping ([#2121](https://github.com/waku-org/js-waku/issues/2121)) ([0263cb8](https://github.com/waku-org/js-waku/commit/0263cb80c5d2bc61984b5357761236ba4f759036))
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.26 to 0.0.27
* @waku/enr bumped from 0.0.25 to 0.0.26
* @waku/core bumped from 0.0.31 to 0.0.32
* @waku/utils bumped from 0.0.19 to 0.0.20
## [0.0.4](https://github.com/waku-org/js-waku/compare/discovery-v0.0.3...discovery-v0.0.4) (2024-08-29) ## [0.0.4](https://github.com/waku-org/js-waku/compare/discovery-v0.0.3...discovery-v0.0.4) (2024-08-29)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/discovery", "name": "@waku/discovery",
"version": "0.0.4", "version": "0.0.5",
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.", "description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -51,11 +51,11 @@
"node": ">=20" "node": ">=20"
}, },
"dependencies": { "dependencies": {
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"@waku/proto": "^0.0.8", "@waku/proto": "^0.0.8",
"@waku/enr": "0.0.25", "@waku/enr": "0.0.26",
"@waku/core": "0.0.31", "@waku/core": "0.0.32",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"debug": "^4.3.4", "debug": "^4.3.4",
"dns-query": "^0.11.2", "dns-query": "^0.11.2",
"hi-base32": "^0.5.1", "hi-base32": "^0.5.1",

View File

@ -91,6 +91,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.25 to 0.0.26 * @waku/interfaces bumped from 0.0.25 to 0.0.26
## [0.0.26](https://github.com/waku-org/js-waku/compare/enr-v0.0.25...enr-v0.0.26) (2024-09-05)
### Bug Fixes
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.19 to 0.0.20
* devDependencies
* @waku/interfaces bumped from 0.0.26 to 0.0.27
## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09) ## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/enr", "name": "@waku/enr",
"version": "0.0.25", "version": "0.0.26",
"description": "ENR (EIP-778) for Waku", "description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -56,7 +56,7 @@
"@libp2p/peer-id": "^4.2.1", "@libp2p/peer-id": "^4.2.1",
"@multiformats/multiaddr": "^12.0.0", "@multiformats/multiaddr": "^12.0.0",
"@noble/secp256k1": "^1.7.1", "@noble/secp256k1": "^1.7.1",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"debug": "^4.3.4", "debug": "^4.3.4",
"js-sha3": "^0.9.2" "js-sha3": "^0.9.2"
}, },
@ -68,7 +68,7 @@
"@types/chai": "^4.3.11", "@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6", "@types/mocha": "^10.0.6",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"chai": "^4.3.10", "chai": "^4.3.10",
"cspell": "^8.6.1", "cspell": "^8.6.1",
"fast-check": "^3.19.0", "fast-check": "^3.19.0",

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, 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.27](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.26...interfaces-v0.0.27) (2024-09-05)
### Bug Fixes
* Improve node bootstrapping ([#2121](https://github.com/waku-org/js-waku/issues/2121)) ([0263cb8](https://github.com/waku-org/js-waku/commit/0263cb80c5d2bc61984b5357761236ba4f759036))
## [0.0.26](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.25...interfaces-v0.0.26) (2024-08-29) ## [0.0.26](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.25...interfaces-v0.0.26) (2024-08-29)

View File

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

View File

@ -93,6 +93,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* @waku/proto bumped from 0.0.7 to 0.0.8 * @waku/proto bumped from 0.0.7 to 0.0.8
* @waku/utils bumped from 0.0.18 to 0.0.19 * @waku/utils bumped from 0.0.18 to 0.0.19
## [0.0.30](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.29...message-encryption-v0.0.30) (2024-09-05)
### Bug Fixes
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.31 to 0.0.32
* @waku/interfaces bumped from 0.0.26 to 0.0.27
* @waku/utils bumped from 0.0.19 to 0.0.20
## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30) ## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/message-encryption", "name": "@waku/message-encryption",
"version": "0.0.29", "version": "0.0.30",
"description": "Waku Message Payload Encryption", "description": "Waku Message Payload Encryption",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -76,10 +76,10 @@
}, },
"dependencies": { "dependencies": {
"@noble/secp256k1": "^1.7.1", "@noble/secp256k1": "^1.7.1",
"@waku/core": "0.0.31", "@waku/core": "0.0.32",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"@waku/proto": "0.0.8", "@waku/proto": "0.0.8",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"debug": "^4.3.4", "debug": "^4.3.4",
"js-sha3": "^0.9.2", "js-sha3": "^0.9.2",
"uint8arrays": "^5.0.1" "uint8arrays": "^5.0.1"

View File

@ -64,6 +64,22 @@
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.25 to 0.0.26 * @waku/interfaces bumped from 0.0.25 to 0.0.26
## [0.1.16](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.15...message-hash-v0.1.16) (2024-09-05)
### Bug Fixes
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.19 to 0.0.20
* devDependencies
* @waku/interfaces bumped from 0.0.26 to 0.0.27
## [0.1.13](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.12...message-hash-v0.1.13) (2024-04-30) ## [0.1.13](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.12...message-hash-v0.1.13) (2024-04-30)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/message-hash", "name": "@waku/message-hash",
"version": "0.1.15", "version": "0.1.16",
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE", "description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -51,7 +51,7 @@
}, },
"dependencies": { "dependencies": {
"@noble/hashes": "^1.3.2", "@noble/hashes": "^1.3.2",
"@waku/utils": "0.0.19" "@waku/utils": "0.0.20"
}, },
"devDependencies": { "devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-commonjs": "^25.0.7",
@ -61,7 +61,7 @@
"@types/debug": "^4.1.12", "@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6", "@types/mocha": "^10.0.6",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"chai": "^4.3.10", "chai": "^4.3.10",
"cspell": "^8.6.1", "cspell": "^8.6.1",
"fast-check": "^3.19.0", "fast-check": "^3.19.0",

View File

@ -25,6 +25,23 @@
* @waku/interfaces bumped from 0.0.16 to 0.0.17 * @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10 * @waku/utils bumped from 0.0.9 to 0.0.10
## [0.0.15](https://github.com/waku-org/js-waku/compare/relay-v0.0.14...relay-v0.0.15) (2024-09-05)
### Bug Fixes
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.31 to 0.0.32
* @waku/sdk bumped from 0.0.27 to 0.0.28
* @waku/interfaces bumped from 0.0.26 to 0.0.27
* @waku/utils bumped from 0.0.19 to 0.0.20
## [0.0.14](https://github.com/waku-org/js-waku/compare/relay-v0.0.13...relay-v0.0.14) (2024-08-29) ## [0.0.14](https://github.com/waku-org/js-waku/compare/relay-v0.0.13...relay-v0.0.14) (2024-08-29)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/relay", "name": "@waku/relay",
"version": "0.0.14", "version": "0.0.15",
"description": "Relay Protocol for Waku", "description": "Relay Protocol for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -51,11 +51,11 @@
"dependencies": { "dependencies": {
"@chainsafe/libp2p-gossipsub": "^13.1.0", "@chainsafe/libp2p-gossipsub": "^13.1.0",
"@noble/hashes": "^1.3.2", "@noble/hashes": "^1.3.2",
"@waku/core": "0.0.31", "@waku/core": "0.0.32",
"@waku/sdk": "0.0.27", "@waku/sdk": "0.0.28",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"@waku/proto": "0.0.8", "@waku/proto": "0.0.8",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"chai": "^4.3.10", "chai": "^4.3.10",
"debug": "^4.3.4", "debug": "^4.3.4",
"fast-check": "^3.19.0" "fast-check": "^3.19.0"

View File

@ -47,6 +47,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* @waku/interfaces bumped from 0.0.19 to 0.0.20 * @waku/interfaces bumped from 0.0.19 to 0.0.20
* @waku/peer-exchange bumped from ^0.0.17 to ^0.0.18 * @waku/peer-exchange bumped from ^0.0.17 to ^0.0.18
## [0.0.28](https://github.com/waku-org/js-waku/compare/sdk-v0.0.27...sdk-v0.0.28) (2024-09-05)
### Bug Fixes
* Filter missing messages ([#2119](https://github.com/waku-org/js-waku/issues/2119)) ([5d3cc5f](https://github.com/waku-org/js-waku/commit/5d3cc5fd45ea4e2f89a2e7580111f53370adfb1a))
* Improve node bootstrapping ([#2121](https://github.com/waku-org/js-waku/issues/2121)) ([0263cb8](https://github.com/waku-org/js-waku/commit/0263cb80c5d2bc61984b5357761236ba4f759036))
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.31 to 0.0.32
* @waku/discovery bumped from 0.0.4 to 0.0.5
* @waku/interfaces bumped from 0.0.26 to 0.0.27
* @waku/utils bumped from 0.0.19 to 0.0.20
* @waku/message-hash bumped from 0.1.15 to 0.1.16
## [0.0.27](https://github.com/waku-org/js-waku/compare/sdk-v0.0.26...sdk-v0.0.27) (2024-08-29) ## [0.0.27](https://github.com/waku-org/js-waku/compare/sdk-v0.0.26...sdk-v0.0.27) (2024-08-29)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/sdk", "name": "@waku/sdk",
"version": "0.0.27", "version": "0.0.28",
"description": "A unified SDK for easy creation and management of js-waku nodes.", "description": "A unified SDK for easy creation and management of js-waku nodes.",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -64,12 +64,12 @@
"@libp2p/ping": "^1.1.2", "@libp2p/ping": "^1.1.2",
"@libp2p/websockets": "^8.1.4", "@libp2p/websockets": "^8.1.4",
"@noble/hashes": "^1.3.3", "@noble/hashes": "^1.3.3",
"@waku/core": "0.0.31", "@waku/core": "0.0.32",
"@waku/discovery": "0.0.4", "@waku/discovery": "0.0.5",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"@waku/proto": "^0.0.8", "@waku/proto": "^0.0.8",
"@waku/utils": "0.0.19", "@waku/utils": "0.0.20",
"@waku/message-hash": "0.1.15", "@waku/message-hash": "0.1.16",
"libp2p": "^1.8.1" "libp2p": "^1.8.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -12,6 +12,20 @@
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.16 to 0.0.17 * @waku/interfaces bumped from 0.0.16 to 0.0.17
## [0.0.20](https://github.com/waku-org/js-waku/compare/utils-v0.0.19...utils-v0.0.20) (2024-09-05)
### Bug Fixes
* Temporarily remove peer cross dependencies ([#2123](https://github.com/waku-org/js-waku/issues/2123)) ([f4b6bb0](https://github.com/waku-org/js-waku/commit/f4b6bb04b38842745c946b427bb3518680df09dc))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.26 to 0.0.27
## [0.0.19](https://github.com/waku-org/js-waku/compare/utils-v0.0.18...utils-v0.0.19) (2024-08-29) ## [0.0.19](https://github.com/waku-org/js-waku/compare/utils-v0.0.18...utils-v0.0.19) (2024-08-29)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/utils", "name": "@waku/utils",
"version": "0.0.19", "version": "0.0.20",
"description": "Different utilities for Waku", "description": "Different utilities for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -68,7 +68,7 @@
}, },
"dependencies": { "dependencies": {
"@noble/hashes": "^1.3.2", "@noble/hashes": "^1.3.2",
"@waku/interfaces": "0.0.26", "@waku/interfaces": "0.0.27",
"chai": "^4.3.10", "chai": "^4.3.10",
"debug": "^4.3.4", "debug": "^4.3.4",
"uint8arrays": "^5.0.1" "uint8arrays": "^5.0.1"