Skip to content

Commit ea6daae

Browse files
authored
chore: release master (#2311)
1 parent 1ee77c0 commit ea6daae

26 files changed

+327
-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.21",
3-
"packages/proto": "0.0.8",
4-
"packages/interfaces": "0.0.28",
5-
"packages/message-hash": "0.1.17",
6-
"packages/enr": "0.0.27",
7-
"packages/core": "0.0.33",
8-
"packages/message-encryption": "0.0.31",
9-
"packages/relay": "0.0.16",
10-
"packages/sdk": "0.0.29",
11-
"packages/discovery": "0.0.6",
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",
1212
"packages/react-native-polyfills": "0.0.1",
13-
"packages/sds": "0.0.1",
14-
"packages/rln": "0.1.3"
13+
"packages/sds": "0.0.2",
14+
"packages/rln": "0.1.4"
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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ 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.34](https://github.com/waku-org/js-waku/compare/core-v0.0.33...core-v0.0.34) (2025-03-24)
9+
10+
11+
### Features
12+
13+
* Add HealthIndicator with simplified logic and testing ([#2251](https://github.com/waku-org/js-waku/issues/2251)) ([3136f3a](https://github.com/waku-org/js-waku/commit/3136f3a70452cbec8b4361cc9697622b0a2debf7))
14+
* Improve peer manager and re-integrate to light push ([#2191](https://github.com/waku-org/js-waku/issues/2191)) ([62f93dc](https://github.com/waku-org/js-waku/commit/62f93dc8428132161dba8881c6adc162040ae758))
15+
* Migrate to latest LightPush version ([#2281](https://github.com/waku-org/js-waku/issues/2281)) ([f199d92](https://github.com/waku-org/js-waku/commit/f199d92d60af948da8a684666c8a4b1f5bc6c9ad))
16+
* Move Peer to PeerId ([#2246](https://github.com/waku-org/js-waku/issues/2246)) ([fc93fae](https://github.com/waku-org/js-waku/commit/fc93fae873ad032cc4f18c41ab98959eef785279))
17+
* **rln:** Migrate from v1 to v2, rate limiting, memberships, test coverage ([#2262](https://github.com/waku-org/js-waku/issues/2262)) ([6fc6bf3](https://github.com/waku-org/js-waku/commit/6fc6bf3916d6dad3d516a5769331245f1b6d55e8))
18+
* **store:** Allow specifying node to use ([#2192](https://github.com/waku-org/js-waku/issues/2192)) ([4153396](https://github.com/waku-org/js-waku/commit/415339601476925874904b19be43f6e055a45004))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* @waku/enr bumped from ^0.0.27 to ^0.0.28
26+
* @waku/interfaces bumped from 0.0.28 to 0.0.29
27+
* @waku/proto bumped from 0.0.8 to 0.0.9
28+
* @waku/utils bumped from 0.0.21 to 0.0.22
29+
830
## [0.0.33](https://github.com/waku-org/js-waku/compare/core-v0.0.32...core-v0.0.33) (2024-10-16)
931

1032

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.33",
3+
"version": "0.0.34",
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.27",
72-
"@waku/interfaces": "0.0.28",
71+
"@waku/enr": "^0.0.28",
72+
"@waku/interfaces": "0.0.29",
7373
"@libp2p/ping": "2.0.1",
74-
"@waku/proto": "0.0.8",
75-
"@waku/utils": "0.0.21",
74+
"@waku/proto": "0.0.9",
75+
"@waku/utils": "0.0.22",
7676
"debug": "^4.3.4",
7777
"it-all": "^3.0.4",
7878
"it-length-prefixed": "^9.0.4",

packages/discovery/CHANGELOG.md

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

3+
## [0.0.7](https://github.com/waku-org/js-waku/compare/discovery-v0.0.6...discovery-v0.0.7) (2025-03-24)
4+
5+
6+
### Features
7+
8+
* Add HealthIndicator with simplified logic and testing ([#2251](https://github.com/waku-org/js-waku/issues/2251)) ([3136f3a](https://github.com/waku-org/js-waku/commit/3136f3a70452cbec8b4361cc9697622b0a2debf7))
9+
* Improve peer manager and re-integrate to light push ([#2191](https://github.com/waku-org/js-waku/issues/2191)) ([62f93dc](https://github.com/waku-org/js-waku/commit/62f93dc8428132161dba8881c6adc162040ae758))
10+
* Move Peer to PeerId ([#2246](https://github.com/waku-org/js-waku/issues/2246)) ([fc93fae](https://github.com/waku-org/js-waku/commit/fc93fae873ad032cc4f18c41ab98959eef785279))
11+
12+
13+
### Bug Fixes
14+
15+
* Remove peer deps ([#2200](https://github.com/waku-org/js-waku/issues/2200)) ([f34fc4b](https://github.com/waku-org/js-waku/commit/f34fc4b2442f1cec326c8ebd45596445232fa65b))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @waku/core bumped from 0.0.33 to 0.0.34
23+
* @waku/enr bumped from 0.0.27 to 0.0.28
24+
* @waku/interfaces bumped from 0.0.28 to 0.0.29
25+
* @waku/proto bumped from ^0.0.8 to ^0.0.9
26+
* @waku/utils bumped from 0.0.21 to 0.0.22
27+
328
## [0.0.6](https://github.com/waku-org/js-waku/compare/discovery-v0.0.5...discovery-v0.0.6) (2024-10-16)
429

530

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.6",
3+
"version": "0.0.7",
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.33",
55-
"@waku/enr": "0.0.27",
56-
"@waku/interfaces": "0.0.28",
57-
"@waku/proto": "^0.0.8",
58-
"@waku/utils": "0.0.21",
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",
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.28](https://github.com/waku-org/js-waku/compare/enr-v0.0.27...enr-v0.0.28) (2025-03-24)
103+
104+
105+
### Dependencies
106+
107+
* The following workspace dependencies were updated
108+
* dependencies
109+
* @waku/utils bumped from 0.0.21 to 0.0.22
110+
* devDependencies
111+
* @waku/interfaces bumped from 0.0.28 to 0.0.29
112+
102113
## [0.0.26](https://github.com/waku-org/js-waku/compare/enr-v0.0.25...enr-v0.0.26) (2024-09-05)
103114

104115

0 commit comments

Comments
 (0)