Skip to content

Commit cd1d909

Browse files
authored
chore: release master (#2390)
1 parent f55db3e commit cd1d909

24 files changed

+385
-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.23",
3-
"packages/proto": "0.0.10",
4-
"packages/interfaces": "0.0.30",
5-
"packages/enr": "0.0.29",
6-
"packages/core": "0.0.35",
7-
"packages/message-encryption": "0.0.33",
8-
"packages/relay": "0.0.18",
9-
"packages/sdk": "0.0.31",
10-
"packages/discovery": "0.0.8",
11-
"packages/sds": "0.0.3",
12-
"packages/rln": "0.1.5"
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"
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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,45 @@ 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.36](https://github.com/waku-org/js-waku/compare/core-v0.0.35...core-v0.0.36) (2025-06-23)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401))
14+
* remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422))
15+
* re-work messaging parts and sharding ([#2399](https://github.com/waku-org/js-waku/issues/2399))
16+
17+
### Features
18+
19+
* Event based approach to Filter ([#2300](https://github.com/waku-org/js-waku/issues/2300)) ([a4dfd34](https://github.com/waku-org/js-waku/commit/a4dfd3455c88db6ff60531c15a58128afb25db05))
20+
* Re-work messaging parts and sharding ([#2399](https://github.com/waku-org/js-waku/issues/2399)) ([1905558](https://github.com/waku-org/js-waku/commit/1905558753a7bf61c3dd27d6892d0f561d4c57c6))
21+
* Shard retrieval for store and store peers selection ([#2417](https://github.com/waku-org/js-waku/issues/2417)) ([f55db3e](https://github.com/waku-org/js-waku/commit/f55db3eb4bbbbbdf454e420b7238ede0642d996f))
22+
23+
24+
### Bug Fixes
25+
26+
* Rebase package lock ([f649f59](https://github.com/waku-org/js-waku/commit/f649f59e64cd1d9bd2fcc01509f6725790534a7b))
27+
* Remove unnecessary comments from store validation ([5f63cb5](https://github.com/waku-org/js-waku/commit/5f63cb5bfbb8c7926597490a867c11ab90af8159))
28+
* **store:** Update store query validation logic to support msg hash q… ([49f26d8](https://github.com/waku-org/js-waku/commit/49f26d89a8032386ee5b3ba629713b4f84891d5d))
29+
* **store:** Update store query validation logic to support msg hash queries ([9f7a15d](https://github.com/waku-org/js-waku/commit/9f7a15dfb19e765c4cbfa43f5d4f9323d2804f50))
30+
31+
32+
### Miscellaneous Chores
33+
34+
* Remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422)) ([7c8d107](https://github.com/waku-org/js-waku/commit/7c8d1073b0d076117fb33ce05452a88871259782))
35+
* Upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401)) ([fcc6496](https://github.com/waku-org/js-waku/commit/fcc6496fef914c56f6a4d2d17c494c8b94caea3c))
36+
37+
38+
### Dependencies
39+
40+
* The following workspace dependencies were updated
41+
* dependencies
42+
* @waku/enr bumped from ^0.0.29 to ^0.0.30
43+
* @waku/interfaces bumped from 0.0.30 to 0.0.31
44+
* @waku/proto bumped from 0.0.10 to 0.0.11
45+
* @waku/utils bumped from 0.0.23 to 0.0.24
46+
847
## [0.0.35](https://github.com/waku-org/js-waku/compare/core-v0.0.34...core-v0.0.35) (2025-04-23)
948

1049

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.35",
3+
"version": "0.0.36",
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.29",
68-
"@waku/interfaces": "0.0.30",
67+
"@waku/enr": "^0.0.30",
68+
"@waku/interfaces": "0.0.31",
6969
"@libp2p/ping": "2.0.35",
70-
"@waku/proto": "0.0.10",
71-
"@waku/utils": "0.0.23",
70+
"@waku/proto": "0.0.11",
71+
"@waku/utils": "0.0.24",
7272
"debug": "^4.3.4",
7373
"@noble/hashes": "^1.3.2",
7474
"it-all": "^3.0.4",

packages/discovery/CHANGELOG.md

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

3+
## [0.0.9](https://github.com/waku-org/js-waku/compare/discovery-v0.0.8...discovery-v0.0.9) (2025-06-23)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401))
9+
* remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422))
10+
11+
### Miscellaneous Chores
12+
13+
* Remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422)) ([7c8d107](https://github.com/waku-org/js-waku/commit/7c8d1073b0d076117fb33ce05452a88871259782))
14+
* Upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401)) ([fcc6496](https://github.com/waku-org/js-waku/commit/fcc6496fef914c56f6a4d2d17c494c8b94caea3c))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* @waku/core bumped from 0.0.35 to 0.0.36
22+
* @waku/enr bumped from 0.0.29 to 0.0.30
23+
* @waku/interfaces bumped from 0.0.30 to 0.0.31
24+
* @waku/proto bumped from ^0.0.10 to ^0.0.11
25+
* @waku/utils bumped from 0.0.23 to 0.0.24
26+
327
## [0.0.8](https://github.com/waku-org/js-waku/compare/discovery-v0.0.7...discovery-v0.0.8) (2025-04-23)
428

529

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.8",
3+
"version": "0.0.9",
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.35",
55-
"@waku/enr": "0.0.29",
56-
"@waku/interfaces": "0.0.30",
57-
"@waku/proto": "^0.0.10",
58-
"@waku/utils": "0.0.23",
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",
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.30](https://github.com/waku-org/js-waku/compare/enr-v0.0.29...enr-v0.0.30) (2025-06-23)
103+
104+
105+
### ⚠ BREAKING CHANGES
106+
107+
* upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401))
108+
109+
### Miscellaneous Chores
110+
111+
* Upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401)) ([fcc6496](https://github.com/waku-org/js-waku/commit/fcc6496fef914c56f6a4d2d17c494c8b94caea3c))
112+
113+
114+
### Dependencies
115+
116+
* The following workspace dependencies were updated
117+
* dependencies
118+
* @waku/utils bumped from 0.0.23 to 0.0.24
119+
* devDependencies
120+
* @waku/interfaces bumped from 0.0.30 to 0.0.31
121+
102122
## [0.0.29](https://github.com/waku-org/js-waku/compare/enr-v0.0.28...enr-v0.0.29) (2025-04-23)
103123

104124

0 commit comments

Comments
 (0)