Skip to content

Commit aa645e0

Browse files
committed
chore: release master
1 parent dfb2baf commit aa645e0

24 files changed

+350
-97
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.25",
3-
"packages/proto": "0.0.12",
4-
"packages/interfaces": "0.0.32",
5-
"packages/enr": "0.0.31",
6-
"packages/core": "0.0.37",
7-
"packages/message-encryption": "0.0.35",
8-
"packages/relay": "0.0.20",
9-
"packages/sdk": "0.0.33",
10-
"packages/discovery": "0.0.10",
11-
"packages/sds": "0.0.5",
12-
"packages/rln": "0.1.7"
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"
1313
}

package-lock.json

Lines changed: 43 additions & 43 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: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ 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.38](https://github.com/waku-org/js-waku/compare/core-v0.0.37...core-v0.0.38) (2025-08-14)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* local peer discovery improvements ([#2557](https://github.com/waku-org/js-waku/issues/2557))
14+
* Introduce routing info concept
15+
16+
### Features
17+
18+
* Introduce routing info concept ([3842d84](https://github.com/waku-org/js-waku/commit/3842d84b55eb96728f6b05b9307ff823fac58a54))
19+
* Local peer discovery improvements ([#2557](https://github.com/waku-org/js-waku/issues/2557)) ([eab8ce8](https://github.com/waku-org/js-waku/commit/eab8ce81b431b11d79dcbec31aea759319853336))
20+
* Peer exchange discovery improvements ([#2537](https://github.com/waku-org/js-waku/issues/2537)) ([95da57a](https://github.com/waku-org/js-waku/commit/95da57a8705fa195529ef52a6c908642da5e120c))
21+
22+
23+
### Bug Fixes
24+
25+
* Improve error handling for stream manager ([#2546](https://github.com/waku-org/js-waku/issues/2546)) ([ada2657](https://github.com/waku-org/js-waku/commit/ada265731acfeddc2bfe2e8e963bc2be37f13900))
26+
27+
28+
### Dependencies
29+
30+
* The following workspace dependencies were updated
31+
* dependencies
32+
* @waku/enr bumped from ^0.0.31 to ^0.0.32
33+
* @waku/interfaces bumped from 0.0.32 to 0.0.33
34+
* @waku/proto bumped from 0.0.12 to 0.0.13
35+
* @waku/utils bumped from 0.0.25 to 0.0.26
36+
837
## [0.0.37](https://github.com/waku-org/js-waku/compare/core-v0.0.36...core-v0.0.37) (2025-07-18)
938

1039

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.37",
3+
"version": "0.0.38",
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.31",
68-
"@waku/interfaces": "0.0.32",
67+
"@waku/enr": "^0.0.32",
68+
"@waku/interfaces": "0.0.33",
6969
"@libp2p/ping": "2.0.35",
70-
"@waku/proto": "0.0.12",
71-
"@waku/utils": "0.0.25",
70+
"@waku/proto": "0.0.13",
71+
"@waku/utils": "0.0.26",
7272
"debug": "^4.3.4",
7373
"@noble/hashes": "^1.3.2",
7474
"it-all": "^3.0.4",

packages/discovery/CHANGELOG.md

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

3+
## [0.0.11](https://github.com/waku-org/js-waku/compare/discovery-v0.0.10...discovery-v0.0.11) (2025-08-14)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* local peer discovery improvements ([#2557](https://github.com/waku-org/js-waku/issues/2557))
9+
* Introduce routing info concept
10+
11+
### Features
12+
13+
* Introduce routing info concept ([3842d84](https://github.com/waku-org/js-waku/commit/3842d84b55eb96728f6b05b9307ff823fac58a54))
14+
* Local peer discovery improvements ([#2557](https://github.com/waku-org/js-waku/issues/2557)) ([eab8ce8](https://github.com/waku-org/js-waku/commit/eab8ce81b431b11d79dcbec31aea759319853336))
15+
* Peer exchange discovery improvements ([#2537](https://github.com/waku-org/js-waku/issues/2537)) ([95da57a](https://github.com/waku-org/js-waku/commit/95da57a8705fa195529ef52a6c908642da5e120c))
16+
* Retrieve peers from all passed enrtree URLs ([25f884e](https://github.com/waku-org/js-waku/commit/25f884e05b430cebe3b6650c16026d771d1b7626))
17+
18+
19+
### Bug Fixes
20+
21+
* Do not limit DNS Peer Discovery on capability ([0dfe352](https://github.com/waku-org/js-waku/commit/0dfe35281c677e91c064557a83a50e6a1ca6d0ac))
22+
* Improve error handling for stream manager ([#2546](https://github.com/waku-org/js-waku/issues/2546)) ([ada2657](https://github.com/waku-org/js-waku/commit/ada265731acfeddc2bfe2e8e963bc2be37f13900))
23+
* Prevent setting shard info from PX if it exists ([#2561](https://github.com/waku-org/js-waku/issues/2561)) ([dfb2baf](https://github.com/waku-org/js-waku/commit/dfb2baf004a58c29f7afd0144c82a8d2e6710d5a))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* @waku/core bumped from 0.0.37 to 0.0.38
31+
* @waku/enr bumped from 0.0.31 to 0.0.32
32+
* @waku/interfaces bumped from 0.0.32 to 0.0.33
33+
* @waku/proto bumped from ^0.0.12 to ^0.0.13
34+
* @waku/utils bumped from 0.0.25 to 0.0.26
35+
336
## [0.0.10](https://github.com/waku-org/js-waku/compare/discovery-v0.0.9...discovery-v0.0.10) (2025-07-18)
437

538

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.10",
3+
"version": "0.0.11",
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.37",
55-
"@waku/enr": "0.0.31",
56-
"@waku/interfaces": "0.0.32",
57-
"@waku/proto": "^0.0.12",
58-
"@waku/utils": "0.0.25",
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",
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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,26 @@ 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.32](https://github.com/waku-org/js-waku/compare/enr-v0.0.31...enr-v0.0.32) (2025-08-14)
103+
104+
105+
### ⚠ BREAKING CHANGES
106+
107+
* Introduce routing info concept
108+
109+
### Features
110+
111+
* Introduce routing info concept ([3842d84](https://github.com/waku-org/js-waku/commit/3842d84b55eb96728f6b05b9307ff823fac58a54))
112+
113+
114+
### Dependencies
115+
116+
* The following workspace dependencies were updated
117+
* dependencies
118+
* @waku/utils bumped from 0.0.25 to 0.0.26
119+
* devDependencies
120+
* @waku/interfaces bumped from 0.0.32 to 0.0.33
121+
102122
## [0.0.31](https://github.com/waku-org/js-waku/compare/enr-v0.0.30...enr-v0.0.31) (2025-07-18)
103123

104124

0 commit comments

Comments
 (0)