Skip to content

Commit f85a476

Browse files
authored
Merge pull request #2337 from waku-org/release-please--branches--master
chore: release master
2 parents fa1beca + e22f211 commit f85a476

26 files changed

+281
-108
lines changed

.release-please-manifest.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"packages/utils": "0.0.22",
3-
"packages/proto": "0.0.9",
4-
"packages/interfaces": "0.0.29",
5-
"packages/message-hash": "0.1.18",
6-
"packages/enr": "0.0.28",
7-
"packages/core": "0.0.34",
8-
"packages/message-encryption": "0.0.32",
9-
"packages/relay": "0.0.17",
10-
"packages/sdk": "0.0.30",
11-
"packages/discovery": "0.0.7",
2+
"packages/utils": "0.0.23",
3+
"packages/proto": "0.0.10",
4+
"packages/interfaces": "0.0.30",
5+
"packages/message-hash": "0.1.19",
6+
"packages/enr": "0.0.29",
7+
"packages/core": "0.0.35",
8+
"packages/message-encryption": "0.0.33",
9+
"packages/relay": "0.0.18",
10+
"packages/sdk": "0.0.31",
11+
"packages/discovery": "0.0.8",
1212
"packages/react-native-polyfills": "0.0.1",
13-
"packages/sds": "0.0.2",
14-
"packages/rln": "0.1.4"
13+
"packages/sds": "0.0.3",
14+
"packages/rln": "0.1.5"
1515
}

package-lock.json

Lines changed: 48 additions & 48 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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.35](https://github.com/waku-org/js-waku/compare/core-v0.0.34...core-v0.0.35) (2025-04-23)
9+
10+
11+
### Features
12+
13+
* Introduce `createDecoder` and `createEncoder` on `IWaku` ([#2352](https://github.com/waku-org/js-waku/issues/2352)) ([3038c48](https://github.com/waku-org/js-waku/commit/3038c4891748cd13cb5c3262c722c4923d2f7079))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* @waku/enr bumped from ^0.0.28 to ^0.0.29
21+
* @waku/interfaces bumped from 0.0.29 to 0.0.30
22+
* @waku/proto bumped from 0.0.9 to 0.0.10
23+
* @waku/utils bumped from 0.0.22 to 0.0.23
24+
825
## [0.0.34](https://github.com/waku-org/js-waku/compare/core-v0.0.33...core-v0.0.34) (2025-03-24)
926

1027

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.34",
3+
"version": "0.0.35",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -68,11 +68,11 @@
6868
"node": ">=20"
6969
},
7070
"dependencies": {
71-
"@waku/enr": "^0.0.28",
72-
"@waku/interfaces": "0.0.29",
71+
"@waku/enr": "^0.0.29",
72+
"@waku/interfaces": "0.0.30",
7373
"@libp2p/ping": "2.0.1",
74-
"@waku/proto": "0.0.9",
75-
"@waku/utils": "0.0.22",
74+
"@waku/proto": "0.0.10",
75+
"@waku/utils": "0.0.23",
7676
"debug": "^4.3.4",
7777
"it-all": "^3.0.4",
7878
"it-length-prefixed": "^9.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.8](https://github.com/waku-org/js-waku/compare/discovery-v0.0.7...discovery-v0.0.8) (2025-04-23)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @waku/core bumped from 0.0.34 to 0.0.35
11+
* @waku/enr bumped from 0.0.28 to 0.0.29
12+
* @waku/interfaces bumped from 0.0.29 to 0.0.30
13+
* @waku/proto bumped from ^0.0.9 to ^0.0.10
14+
* @waku/utils bumped from 0.0.22 to 0.0.23
15+
316
## [0.0.7](https://github.com/waku-org/js-waku/compare/discovery-v0.0.6...discovery-v0.0.7) (2025-03-24)
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.7",
3+
"version": "0.0.8",
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": ">=20"
5252
},
5353
"dependencies": {
54-
"@waku/core": "0.0.34",
55-
"@waku/enr": "0.0.28",
56-
"@waku/interfaces": "0.0.29",
57-
"@waku/proto": "^0.0.9",
58-
"@waku/utils": "0.0.22",
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",
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.29](https://github.com/waku-org/js-waku/compare/enr-v0.0.28...enr-v0.0.29) (2025-04-23)
103+
104+
105+
### Dependencies
106+
107+
* The following workspace dependencies were updated
108+
* dependencies
109+
* @waku/utils bumped from 0.0.22 to 0.0.23
110+
* devDependencies
111+
* @waku/interfaces bumped from 0.0.29 to 0.0.30
112+
102113
## [0.0.28](https://github.com/waku-org/js-waku/compare/enr-v0.0.27...enr-v0.0.28) (2025-03-24)
103114

104115

0 commit comments

Comments
 (0)