Skip to content

Commit e92cc57

Browse files
authored
Merge pull request #2441 from waku-org/release-please--branches--master
chore: release master
2 parents 36f6884 + 79f319c commit e92cc57

24 files changed

+335
-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.24",
3-
"packages/proto": "0.0.11",
4-
"packages/interfaces": "0.0.31",
5-
"packages/enr": "0.0.30",
6-
"packages/core": "0.0.36",
7-
"packages/message-encryption": "0.0.34",
8-
"packages/relay": "0.0.19",
9-
"packages/sdk": "0.0.32",
10-
"packages/discovery": "0.0.9",
11-
"packages/sds": "0.0.4",
12-
"packages/rln": "0.1.6"
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"
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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ 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.37](https://github.com/waku-org/js-waku/compare/core-v0.0.36...core-v0.0.37) (2025-07-18)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* remove node level pubsub topic concept
14+
* unify events under one source ([#2473](https://github.com/waku-org/js-waku/issues/2473))
15+
* re-architect connection manager ([#2445](https://github.com/waku-org/js-waku/issues/2445))
16+
17+
### Features
18+
19+
* Add recovery and connection maintenance ([#2496](https://github.com/waku-org/js-waku/issues/2496)) ([ed389cc](https://github.com/waku-org/js-waku/commit/ed389ccbc970c8e41761c5c427d151bcf9f72725))
20+
* Don't dial peers that failed before, make dialer use dial queue ([#2478](https://github.com/waku-org/js-waku/issues/2478)) ([35acdf8](https://github.com/waku-org/js-waku/commit/35acdf8fa5a8f8d79b75cc0361302628178b5193))
21+
* Implement store query chunking ([#2511](https://github.com/waku-org/js-waku/issues/2511)) ([36f6884](https://github.com/waku-org/js-waku/commit/36f6884d220eab42d4ce25cc4b2cc12cf36e5468))
22+
* Make peer manager aware of codec and shard, fix retry manager and shut down subscriptions ([#2425](https://github.com/waku-org/js-waku/issues/2425)) ([058f2ff](https://github.com/waku-org/js-waku/commit/058f2ff620a4a9a6f465a1498c05fb85df369941))
23+
* Re-architect connection manager ([#2445](https://github.com/waku-org/js-waku/issues/2445)) ([c7682ea](https://github.com/waku-org/js-waku/commit/c7682ea67c54d2c26a68ce96208003fb1ffc915c))
24+
* Unify events under one source ([#2473](https://github.com/waku-org/js-waku/issues/2473)) ([27292ed](https://github.com/waku-org/js-waku/commit/27292edabce801a5d2296437ca3e6198da018a24))
25+
26+
27+
### Bug Fixes
28+
29+
* Remove node level pubsub topic concept ([6d55af9](https://github.com/waku-org/js-waku/commit/6d55af947e8e57bf0d33fc6a5a67f61594e83ff1))
30+
31+
32+
### Dependencies
33+
34+
* The following workspace dependencies were updated
35+
* dependencies
36+
* @waku/enr bumped from ^0.0.30 to ^0.0.31
37+
* @waku/interfaces bumped from 0.0.31 to 0.0.32
38+
* @waku/proto bumped from 0.0.11 to 0.0.12
39+
* @waku/utils bumped from 0.0.24 to 0.0.25
40+
841
## [0.0.36](https://github.com/waku-org/js-waku/compare/core-v0.0.35...core-v0.0.36) (2025-06-23)
942

1043

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.36",
3+
"version": "0.0.37",
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.30",
68-
"@waku/interfaces": "0.0.31",
67+
"@waku/enr": "^0.0.31",
68+
"@waku/interfaces": "0.0.32",
6969
"@libp2p/ping": "2.0.35",
70-
"@waku/proto": "0.0.11",
71-
"@waku/utils": "0.0.24",
70+
"@waku/proto": "0.0.12",
71+
"@waku/utils": "0.0.25",
7272
"debug": "^4.3.4",
7373
"@noble/hashes": "^1.3.2",
7474
"it-all": "^3.0.4",

packages/discovery/CHANGELOG.md

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

3+
## [0.0.10](https://github.com/waku-org/js-waku/compare/discovery-v0.0.9...discovery-v0.0.10) (2025-07-18)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* re-architect connection manager ([#2445](https://github.com/waku-org/js-waku/issues/2445))
9+
10+
### Features
11+
12+
* Re-architect connection manager ([#2445](https://github.com/waku-org/js-waku/issues/2445)) ([c7682ea](https://github.com/waku-org/js-waku/commit/c7682ea67c54d2c26a68ce96208003fb1ffc915c))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* @waku/core bumped from 0.0.36 to 0.0.37
20+
* @waku/enr bumped from 0.0.30 to 0.0.31
21+
* @waku/interfaces bumped from 0.0.31 to 0.0.32
22+
* @waku/proto bumped from ^0.0.11 to ^0.0.12
23+
* @waku/utils bumped from 0.0.24 to 0.0.25
24+
325
## [0.0.9](https://github.com/waku-org/js-waku/compare/discovery-v0.0.8...discovery-v0.0.9) (2025-06-23)
426

527

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.9",
3+
"version": "0.0.10",
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.36",
55-
"@waku/enr": "0.0.30",
56-
"@waku/interfaces": "0.0.31",
57-
"@waku/proto": "^0.0.11",
58-
"@waku/utils": "0.0.24",
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",
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.31](https://github.com/waku-org/js-waku/compare/enr-v0.0.30...enr-v0.0.31) (2025-07-18)
103+
104+
105+
### Dependencies
106+
107+
* The following workspace dependencies were updated
108+
* dependencies
109+
* @waku/utils bumped from 0.0.24 to 0.0.25
110+
* devDependencies
111+
* @waku/interfaces bumped from 0.0.31 to 0.0.32
112+
102113
## [0.0.30](https://github.com/waku-org/js-waku/compare/enr-v0.0.29...enr-v0.0.30) (2025-06-23)
103114

104115

0 commit comments

Comments
 (0)