Skip to content

Commit 79dd001

Browse files
authored
chore: release master (#2576)
1 parent 11d84ad commit 79dd001

24 files changed

+289
-101
lines changed

.release-please-manifest.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"packages/utils": "0.0.26",
3-
"packages/proto": "0.0.13",
4-
"packages/interfaces": "0.0.33",
5-
"packages/enr": "0.0.32",
6-
"packages/core": "0.0.38",
7-
"packages/message-encryption": "0.0.36",
8-
"packages/relay": "0.0.21",
9-
"packages/sdk": "0.0.34",
10-
"packages/discovery": "0.0.11",
11-
"packages/sds": "0.0.6",
12-
"packages/rln": "0.1.8"
2+
"packages/utils": "0.0.27",
3+
"packages/proto": "0.0.14",
4+
"packages/interfaces": "0.0.34",
5+
"packages/enr": "0.0.33",
6+
"packages/core": "0.0.39",
7+
"packages/message-encryption": "0.0.37",
8+
"packages/relay": "0.0.22",
9+
"packages/sdk": "0.0.35",
10+
"packages/discovery": "0.0.12",
11+
"packages/sds": "0.0.7",
12+
"packages/rln": "0.1.9"
1313
}

package-lock.json

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
55
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.39](https://github.com/waku-org/js-waku/compare/core-v0.0.38...core-v0.0.39) (2025-09-20)
9+
10+
11+
### Features
12+
13+
* Add start/stop to filter ([#2592](https://github.com/waku-org/js-waku/issues/2592)) ([2fba052](https://github.com/waku-org/js-waku/commit/2fba052b8b98cb64f6383de95d01b33beb771448))
14+
* Expose message hash from IDecodedMessage ([#2578](https://github.com/waku-org/js-waku/issues/2578)) ([836d6b8](https://github.com/waku-org/js-waku/commit/836d6b8793a5124747684f6ea76b6dd47c73048b))
15+
* Implement lp-v3 error codes with backwards compatibility ([#2501](https://github.com/waku-org/js-waku/issues/2501)) ([1625302](https://github.com/waku-org/js-waku/commit/16253026c6e30052d87d9975b58480951de469d8))
16+
* Implement peer-store re-bootstrapping ([#2641](https://github.com/waku-org/js-waku/issues/2641)) ([11d84ad](https://github.com/waku-org/js-waku/commit/11d84ad342fe45158ef0734f9ca070f14704503f))
17+
* StoreConnect events ([#2601](https://github.com/waku-org/js-waku/issues/2601)) ([0dfbcf6](https://github.com/waku-org/js-waku/commit/0dfbcf6b6bd9225dcb0dec540aeb1eb2703c8397))
18+
19+
20+
### Dependencies
21+
22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* @waku/enr bumped from ^0.0.32 to ^0.0.33
25+
* @waku/interfaces bumped from 0.0.33 to 0.0.34
26+
* @waku/proto bumped from 0.0.13 to 0.0.14
27+
* @waku/utils bumped from 0.0.26 to 0.0.27
28+
829
## [0.0.38](https://github.com/waku-org/js-waku/compare/core-v0.0.37...core-v0.0.38) (2025-08-14)
930

1031

packages/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.38",
3+
"version": "0.0.39",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -64,11 +64,11 @@
6464
"node": ">=22"
6565
},
6666
"dependencies": {
67-
"@waku/enr": "^0.0.32",
68-
"@waku/interfaces": "0.0.33",
67+
"@waku/enr": "^0.0.33",
68+
"@waku/interfaces": "0.0.34",
6969
"@libp2p/ping": "2.0.35",
70-
"@waku/proto": "0.0.13",
71-
"@waku/utils": "0.0.26",
70+
"@waku/proto": "0.0.14",
71+
"@waku/utils": "0.0.27",
7272
"debug": "^4.3.4",
7373
"@noble/hashes": "^1.3.2",
7474
"it-all": "^3.0.4",

packages/discovery/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.0.12](https://github.com/waku-org/js-waku/compare/discovery-v0.0.11...discovery-v0.0.12) (2025-09-20)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @waku/core bumped from 0.0.38 to 0.0.39
11+
* @waku/enr bumped from 0.0.32 to 0.0.33
12+
* @waku/interfaces bumped from 0.0.33 to 0.0.34
13+
* @waku/proto bumped from ^0.0.13 to ^0.0.14
14+
* @waku/utils bumped from 0.0.26 to 0.0.27
15+
316
## [0.0.11](https://github.com/waku-org/js-waku/compare/discovery-v0.0.10...discovery-v0.0.11) (2025-08-14)
417

518

packages/discovery/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/discovery",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,11 +51,11 @@
5151
"node": ">=22"
5252
},
5353
"dependencies": {
54-
"@waku/core": "0.0.38",
55-
"@waku/enr": "0.0.32",
56-
"@waku/interfaces": "0.0.33",
57-
"@waku/proto": "^0.0.13",
58-
"@waku/utils": "0.0.26",
54+
"@waku/core": "0.0.39",
55+
"@waku/enr": "0.0.33",
56+
"@waku/interfaces": "0.0.34",
57+
"@waku/proto": "^0.0.14",
58+
"@waku/utils": "0.0.27",
5959
"debug": "^4.3.4",
6060
"dns-over-http-resolver": "^3.0.8",
6161
"hi-base32": "^0.5.1",

packages/enr/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9999
* devDependencies
100100
* @waku/interfaces bumped from 0.0.27 to 0.0.28
101101

102+
## [0.0.33](https://github.com/waku-org/js-waku/compare/enr-v0.0.32...enr-v0.0.33) (2025-09-20)
103+
104+
105+
### Dependencies
106+
107+
* The following workspace dependencies were updated
108+
* dependencies
109+
* @waku/utils bumped from 0.0.26 to 0.0.27
110+
* devDependencies
111+
* @waku/interfaces bumped from 0.0.33 to 0.0.34
112+
102113
## [0.0.32](https://github.com/waku-org/js-waku/compare/enr-v0.0.31...enr-v0.0.32) (2025-08-14)
103114

104115

packages/enr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/enr",
3-
"version": "0.0.32",
3+
"version": "0.0.33",
44
"description": "ENR (EIP-778) for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -56,7 +56,7 @@
5656
"@libp2p/peer-id": "5.1.7",
5757
"@multiformats/multiaddr": "^12.0.0",
5858
"@noble/secp256k1": "^1.7.1",
59-
"@waku/utils": "0.0.26",
59+
"@waku/utils": "0.0.27",
6060
"debug": "^4.3.4",
6161
"js-sha3": "^0.9.2"
6262
},
@@ -67,7 +67,7 @@
6767
"@types/chai": "^4.3.11",
6868
"@types/mocha": "^10.0.6",
6969
"@waku/build-utils": "*",
70-
"@waku/interfaces": "0.0.33",
70+
"@waku/interfaces": "0.0.34",
7171
"chai": "^4.3.10",
7272
"cspell": "^8.6.1",
7373
"fast-check": "^3.19.0",

0 commit comments

Comments
 (0)