Skip to content

Commit 101ffe8

Browse files
authored
chore: release master (#2663)
1 parent 5334a7f commit 101ffe8

22 files changed

+232
-68
lines changed

.release-please-manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"packages/utils": "0.0.27",
3-
"packages/proto": "0.0.14",
3+
"packages/proto": "0.0.15",
44
"packages/interfaces": "0.0.34",
55
"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",
13-
"packages/react": "0.0.7",
14-
"packages/run": "0.0.1"
6+
"packages/core": "0.0.40",
7+
"packages/message-encryption": "0.0.38",
8+
"packages/relay": "0.0.23",
9+
"packages/sdk": "0.0.36",
10+
"packages/discovery": "0.0.13",
11+
"packages/sds": "0.0.8",
12+
"packages/rln": "0.1.10",
13+
"packages/react": "0.0.8",
14+
"packages/run": "0.0.2"
1515
}

package-lock.json

Lines changed: 29 additions & 29 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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.40](https://github.com/waku-org/js-waku/compare/core-v0.0.39...core-v0.0.40) (2025-10-31)
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @waku/proto bumped from 0.0.14 to 0.0.15
16+
817
## [0.0.39](https://github.com/waku-org/js-waku/compare/core-v0.0.38...core-v0.0.39) (2025-09-20)
918

1019

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.39",
3+
"version": "0.0.40",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -67,7 +67,7 @@
6767
"@waku/enr": "^0.0.33",
6868
"@waku/interfaces": "0.0.34",
6969
"@libp2p/ping": "2.0.35",
70-
"@waku/proto": "0.0.14",
70+
"@waku/proto": "0.0.15",
7171
"@waku/utils": "0.0.27",
7272
"debug": "^4.3.4",
7373
"@noble/hashes": "^1.3.2",

packages/discovery/CHANGELOG.md

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

3+
## [0.0.13](https://github.com/waku-org/js-waku/compare/discovery-v0.0.12...discovery-v0.0.13) (2025-10-31)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @waku/core bumped from 0.0.39 to 0.0.40
11+
* @waku/proto bumped from ^0.0.14 to ^0.0.15
12+
313
## [0.0.12](https://github.com/waku-org/js-waku/compare/discovery-v0.0.11...discovery-v0.0.12) (2025-09-20)
414

515

packages/discovery/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/discovery",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
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,10 +51,10 @@
5151
"node": ">=22"
5252
},
5353
"dependencies": {
54-
"@waku/core": "0.0.39",
54+
"@waku/core": "0.0.40",
5555
"@waku/enr": "0.0.33",
5656
"@waku/interfaces": "0.0.34",
57-
"@waku/proto": "^0.0.14",
57+
"@waku/proto": "^0.0.15",
5858
"@waku/utils": "0.0.27",
5959
"debug": "^4.3.4",
6060
"dns-over-http-resolver": "^3.0.8",

packages/message-encryption/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
101101
* @waku/interfaces bumped from 0.0.27 to 0.0.28
102102
* @waku/utils bumped from 0.0.20 to 0.0.21
103103

104+
## [0.0.38](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.37...message-encryption-v0.0.38) (2025-10-31)
105+
106+
107+
### Dependencies
108+
109+
* The following workspace dependencies were updated
110+
* dependencies
111+
* @waku/core bumped from 0.0.39 to 0.0.40
112+
* @waku/proto bumped from 0.0.14 to 0.0.15
113+
104114
## [0.0.37](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.36...message-encryption-v0.0.37) (2025-09-20)
105115

106116

packages/message-encryption/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/message-encryption",
3-
"version": "0.0.37",
3+
"version": "0.0.38",
44
"description": "Waku Message Payload Encryption",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -76,9 +76,9 @@
7676
},
7777
"dependencies": {
7878
"@noble/secp256k1": "^1.7.1",
79-
"@waku/core": "0.0.39",
79+
"@waku/core": "0.0.40",
8080
"@waku/interfaces": "0.0.34",
81-
"@waku/proto": "0.0.14",
81+
"@waku/proto": "0.0.15",
8282
"@waku/utils": "0.0.27",
8383
"debug": "^4.3.4",
8484
"js-sha3": "^0.9.2",

packages/proto/CHANGELOG.md

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

3+
## [0.0.15](https://github.com/waku-org/js-waku/compare/proto-v0.0.14...proto-v0.0.15) (2025-10-31)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* SDS lamport timestamp overflow and keep it to current time ([#2664](https://github.com/waku-org/js-waku/issues/2664))
9+
10+
### Features
11+
12+
* Add SDS-Repair (SDS-R) to the SDS implementation ([#2698](https://github.com/waku-org/js-waku/issues/2698)) ([5334a7f](https://github.com/waku-org/js-waku/commit/5334a7fcc91544d33294beaad9b45e641ecf404d))
13+
14+
15+
### Bug Fixes
16+
17+
* SDS lamport timestamp overflow and keep it to current time ([#2664](https://github.com/waku-org/js-waku/issues/2664)) ([c0ecb6a](https://github.com/waku-org/js-waku/commit/c0ecb6abbaae0544f352b89293f59f274600a916))
18+
319
## [0.0.14](https://github.com/waku-org/js-waku/compare/proto-v0.0.13...proto-v0.0.14) (2025-09-20)
420

521

packages/proto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/proto",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"description": "Protobuf definitions for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",

0 commit comments

Comments
 (0)