Skip to content

Commit 6f3d8d8

Browse files
committed
chore: release master
1 parent 82ca60e commit 6f3d8d8

23 files changed

+286
-52
lines changed

.release-please-manifest.json

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2-
"packages/utils": "0.0.14",
2+
"packages/utils": "0.0.15",
33
"packages/proto": "0.0.6",
4-
"packages/interfaces": "0.0.21",
5-
"packages/message-hash": "0.1.10",
6-
"packages/enr": "0.0.20",
7-
"packages/peer-exchange": "0.0.19",
8-
"packages/core": "0.0.26",
9-
"packages/dns-discovery": "0.0.20",
10-
"packages/message-encryption": "0.0.24",
11-
"packages/relay": "0.0.9",
12-
"packages/sdk": "0.0.22"
4+
"packages/interfaces": "0.0.22",
5+
"packages/message-hash": "0.1.11",
6+
"packages/enr": "0.0.21",
7+
"packages/peer-exchange": "0.0.20",
8+
"packages/core": "0.0.27",
9+
"packages/dns-discovery": "0.0.21",
10+
"packages/message-encryption": "0.0.25",
11+
"packages/relay": "0.0.10",
12+
"packages/sdk": "0.0.23",
13+
"packages/local-peer-cache-discovery": "1.0.0"
1314
}

packages/core/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.27](https://github.com/waku-org/js-waku/compare/core-v0.0.26...core-v0.0.27) (2024-03-04)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
14+
15+
### Features
16+
17+
* Create node and subscription by content topic ([ee2d417](https://github.com/waku-org/js-waku/commit/ee2d4176f8cca45a51b7dac0009f0eb01952f540))
18+
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
19+
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
20+
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
21+
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
22+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* @waku/enr bumped from ^0.0.20 to ^0.0.21
30+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
31+
* @waku/message-hash bumped from ^0.1.10 to ^0.1.11
32+
* @waku/utils bumped from 0.0.14 to 0.0.15
33+
834
## [0.0.26](https://github.com/waku-org/js-waku/compare/core-v0.0.25...core-v0.0.26) (2024-01-10)
935

1036

packages/core/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.26",
3+
"version": "0.0.27",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -74,11 +74,11 @@
7474
"dependencies": {
7575
"@libp2p/ping": "^1.0.11",
7676
"@noble/hashes": "^1.3.2",
77-
"@waku/enr": "^0.0.20",
78-
"@waku/interfaces": "0.0.21",
79-
"@waku/message-hash": "^0.1.10",
77+
"@waku/enr": "^0.0.21",
78+
"@waku/interfaces": "0.0.22",
79+
"@waku/message-hash": "^0.1.11",
8080
"@waku/proto": "0.0.6",
81-
"@waku/utils": "0.0.14",
81+
"@waku/utils": "0.0.15",
8282
"debug": "^4.3.4",
8383
"it-all": "^3.0.4",
8484
"it-length-prefixed": "^9.0.4",

packages/dns-discovery/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555
* devDependencies
5656
* @waku/interfaces bumped from 0.0.20 to 0.0.21
5757

58+
## [0.0.21](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.20...dns-discovery-v0.0.21) (2024-03-04)
59+
60+
61+
### ⚠ BREAKING CHANGES
62+
63+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
64+
65+
### Features
66+
67+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
68+
69+
70+
### Dependencies
71+
72+
* The following workspace dependencies were updated
73+
* dependencies
74+
* @waku/enr bumped from 0.0.20 to 0.0.21
75+
* @waku/utils bumped from 0.0.14 to 0.0.15
76+
* devDependencies
77+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
78+
5879
## [0.0.19](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.18...dns-discovery-v0.0.19) (2023-11-01)
5980

6081

packages/dns-discovery/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/dns-discovery",
3-
"version": "0.0.20",
3+
"version": "0.0.21",
44
"description": "DNS Peer Discovery (EIP-1459)",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,8 +51,8 @@
5151
"node": ">=18"
5252
},
5353
"dependencies": {
54-
"@waku/enr": "0.0.20",
55-
"@waku/utils": "0.0.14",
54+
"@waku/enr": "0.0.21",
55+
"@waku/utils": "0.0.15",
5656
"debug": "^4.3.4",
5757
"dns-query": "^0.11.2",
5858
"hi-base32": "^0.5.1",
@@ -67,7 +67,7 @@
6767
"@rollup/plugin-node-resolve": "^15.2.3",
6868
"@types/chai": "^4.3.11",
6969
"@waku/build-utils": "*",
70-
"@waku/interfaces": "0.0.21",
70+
"@waku/interfaces": "0.0.22",
7171
"chai": "^4.3.10",
7272
"cspell": "^8.3.2",
7373
"mocha": "^10.3.0",

packages/enr/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6767
* devDependencies
6868
* @waku/interfaces bumped from 0.0.20 to 0.0.21
6969

70+
## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04)
71+
72+
73+
### ⚠ BREAKING CHANGES
74+
75+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
76+
77+
### Features
78+
79+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
80+
81+
82+
### Bug Fixes
83+
84+
* **tests:** Append `p2p` with the multiaddrs from ENR ([#1817](https://github.com/waku-org/js-waku/issues/1817)) ([f8e02ab](https://github.com/waku-org/js-waku/commit/f8e02ab19eefd616926e17900602dcef28b068ff))
85+
86+
87+
### Dependencies
88+
89+
* The following workspace dependencies were updated
90+
* dependencies
91+
* @waku/utils bumped from 0.0.14 to 0.0.15
92+
* devDependencies
93+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
94+
7095
## [0.0.19](https://github.com/waku-org/js-waku/compare/enr-v0.0.18...enr-v0.0.19) (2023-11-01)
7196

7297

packages/enr/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/enr",
3-
"version": "0.0.20",
3+
"version": "0.0.21",
44
"description": "ENR (EIP-778) for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -56,7 +56,7 @@
5656
"@libp2p/peer-id": "^4.0.4",
5757
"@multiformats/multiaddr": "^12.0.0",
5858
"@noble/secp256k1": "^1.7.1",
59-
"@waku/utils": "0.0.14",
59+
"@waku/utils": "0.0.15",
6060
"debug": "^4.3.4",
6161
"js-sha3": "^0.9.2"
6262
},
@@ -68,7 +68,7 @@
6868
"@types/chai": "^4.3.11",
6969
"@types/mocha": "^10.0.6",
7070
"@waku/build-utils": "*",
71-
"@waku/interfaces": "0.0.21",
71+
"@waku/interfaces": "0.0.22",
7272
"chai": "^4.3.10",
7373
"cspell": "^8.3.2",
7474
"fast-check": "^3.15.1",

packages/interfaces/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ 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.22](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.21...interfaces-v0.0.22) (2024-03-04)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867))
14+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
15+
16+
### Features
17+
18+
* Add bootstrapPeers option and refactor sdk ([#1871](https://github.com/waku-org/js-waku/issues/1871)) ([9f198dd](https://github.com/waku-org/js-waku/commit/9f198dd149ef299e3edce69b93cc2942c6f24846))
19+
* Create node and subscription by content topic ([ee2d417](https://github.com/waku-org/js-waku/commit/ee2d4176f8cca45a51b7dac0009f0eb01952f540))
20+
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
21+
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
22+
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
23+
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
24+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
25+
26+
27+
### Miscellaneous Chores
28+
29+
* Rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867)) ([f3cb10d](https://github.com/waku-org/js-waku/commit/f3cb10d484bac134377b8cfd77e077ffc33bd319))
30+
831
## [0.0.21](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.20...interfaces-v0.0.21) (2024-01-10)
932

1033

packages/interfaces/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/interfaces",
3-
"version": "0.0.21",
3+
"version": "0.0.22",
44
"description": "Definition of Waku interfaces",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 1.0.0 (2024-03-04)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867))
9+
10+
### Miscellaneous Chores
11+
12+
* Rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867)) ([f3cb10d](https://github.com/waku-org/js-waku/commit/f3cb10d484bac134377b8cfd77e077ffc33bd319))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* @waku/interfaces bumped from ^0.0.21 to ^0.0.22
20+
* @waku/utils bumped from ^0.0.14 to ^0.0.15

packages/local-peer-cache-discovery/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/local-peer-cache-discovery",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "Local Peer Cache keeps records of healthy peers in the browser's local storage for quicker bootstrapping.",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,8 +51,8 @@
5151
},
5252
"dependencies": {
5353
"@libp2p/interface": "^1.1.2",
54-
"@waku/interfaces": "^0.0.21",
55-
"@waku/utils": "^0.0.14"
54+
"@waku/interfaces": "^0.0.22",
55+
"@waku/utils": "^0.0.15"
5656
},
5757
"devDependencies": {
5858
"@rollup/plugin-commonjs": "^25.0.7",

packages/message-encryption/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6868
* @waku/interfaces bumped from 0.0.17 to 0.0.18
6969
* @waku/utils bumped from 0.0.10 to 0.0.11
7070

71+
### Dependencies
72+
73+
* The following workspace dependencies were updated
74+
* dependencies
75+
* @waku/core bumped from 0.0.26 to 0.0.27
76+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
77+
* @waku/utils bumped from 0.0.14 to 0.0.15
78+
7179
## [0.0.24](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.23...message-encryption-v0.0.24) (2024-01-10)
7280

7381

packages/message-encryption/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/message-encryption",
3-
"version": "0.0.24",
3+
"version": "0.0.25",
44
"description": "Waku Message Payload Encryption",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -76,10 +76,10 @@
7676
},
7777
"dependencies": {
7878
"@noble/secp256k1": "^1.7.1",
79-
"@waku/core": "0.0.26",
80-
"@waku/interfaces": "0.0.21",
79+
"@waku/core": "0.0.27",
80+
"@waku/interfaces": "0.0.22",
8181
"@waku/proto": "0.0.6",
82-
"@waku/utils": "0.0.14",
82+
"@waku/utils": "0.0.15",
8383
"debug": "^4.3.4",
8484
"js-sha3": "^0.9.2",
8585
"uint8arrays": "^5.0.1"

packages/message-hash/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,22 @@
4848
* devDependencies
4949
* @waku/interfaces bumped from 0.0.20 to 0.0.21
5050

51+
## [0.1.11](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.10...message-hash-v0.1.11) (2024-03-04)
52+
53+
54+
### Features
55+
56+
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
57+
58+
59+
### Dependencies
60+
61+
* The following workspace dependencies were updated
62+
* dependencies
63+
* @waku/utils bumped from 0.0.14 to 0.0.15
64+
* devDependencies
65+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
66+
5167
## [0.1.8](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.7...message-hash-v0.1.8) (2023-10-16)
5268

5369

packages/message-hash/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/message-hash",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,7 +51,7 @@
5151
},
5252
"dependencies": {
5353
"@noble/hashes": "^1.3.2",
54-
"@waku/utils": "0.0.14"
54+
"@waku/utils": "0.0.15"
5555
},
5656
"devDependencies": {
5757
"@rollup/plugin-commonjs": "^25.0.7",
@@ -61,7 +61,7 @@
6161
"@types/debug": "^4.1.12",
6262
"@types/mocha": "^10.0.6",
6363
"@waku/build-utils": "*",
64-
"@waku/interfaces": "0.0.21",
64+
"@waku/interfaces": "0.0.22",
6565
"chai": "^4.3.10",
6666
"cspell": "^8.3.2",
6767
"fast-check": "^3.15.1",

packages/peer-exchange/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,28 @@
7474
* @waku/proto bumped from 0.0.5 to 0.0.6
7575
* @waku/utils bumped from 0.0.13 to 0.0.14
7676

77+
## [0.0.20](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.19...peer-exchange-v0.0.20) (2024-03-04)
78+
79+
80+
### ⚠ BREAKING CHANGES
81+
82+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
83+
84+
### Features
85+
86+
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
87+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
88+
89+
90+
### Dependencies
91+
92+
* The following workspace dependencies were updated
93+
* dependencies
94+
* @waku/core bumped from 0.0.26 to 0.0.27
95+
* @waku/enr bumped from 0.0.20 to 0.0.21
96+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
97+
* @waku/utils bumped from 0.0.14 to 0.0.15
98+
7799
## [0.0.18](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.17...peer-exchange-v0.0.18) (2023-11-01)
78100

79101

0 commit comments

Comments
 (0)