Skip to content

Commit 24811e4

Browse files
authored
chore: release master (#1376)
1 parent be5dde7 commit 24811e4

24 files changed

+188
-52
lines changed

.release-please-manifest.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"packages/utils": "0.0.6",
3-
"packages/proto": "0.0.4",
4-
"packages/interfaces": "0.0.13",
5-
"packages/message-hash": "0.1.2",
6-
"packages/enr": "0.0.12",
7-
"packages/peer-exchange": "0.0.11",
8-
"packages/core": "0.0.18",
9-
"packages/dns-discovery": "0.0.12",
10-
"packages/message-encryption": "0.0.16",
11-
"packages/create": "0.0.14",
12-
"packages/relay": "0.0.1"
2+
"packages/utils": "0.0.7",
3+
"packages/proto": "0.0.5",
4+
"packages/interfaces": "0.0.14",
5+
"packages/message-hash": "0.1.3",
6+
"packages/enr": "0.0.13",
7+
"packages/peer-exchange": "0.0.12",
8+
"packages/core": "0.0.19",
9+
"packages/dns-discovery": "0.0.13",
10+
"packages/message-encryption": "0.0.17",
11+
"packages/create": "0.0.15",
12+
"packages/relay": "0.0.2"
1313
}

packages/core/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.19](https://github.com/waku-org/js-waku/compare/core-v0.0.18...core-v0.0.19) (2023-05-26)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
14+
15+
### Features
16+
17+
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
18+
19+
20+
### Dependencies
21+
22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
25+
* @waku/proto bumped from * to 0.0.5
26+
* @waku/utils bumped from 0.0.6 to 0.0.7
27+
828
## [0.0.18](https://github.com/waku-org/js-waku/compare/core-v0.0.17...core-v0.0.18) (2023-05-18)
929

1030

packages/core/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.18",
3+
"version": "0.0.19",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -73,9 +73,9 @@
7373
},
7474
"dependencies": {
7575
"@noble/hashes": "^1.3.0",
76-
"@waku/interfaces": "0.0.13",
77-
"@waku/proto": "*",
78-
"@waku/utils": "0.0.6",
76+
"@waku/interfaces": "0.0.14",
77+
"@waku/proto": "0.0.5",
78+
"@waku/utils": "0.0.7",
7979
"debug": "^4.3.4",
8080
"it-all": "^3.0.1",
8181
"it-length-prefixed": "^9.0.1",

packages/create/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
* devDependencies
2727
* @waku/interfaces bumped from 0.0.11 to 0.0.12
2828

29+
## [0.0.15](https://github.com/waku-org/js-waku/compare/create-v0.0.14...create-v0.0.15) (2023-05-26)
30+
31+
32+
### ⚠ BREAKING CHANGES
33+
34+
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
35+
36+
### Features
37+
38+
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
39+
40+
41+
### Dependencies
42+
43+
* The following workspace dependencies were updated
44+
* dependencies
45+
* @waku/relay bumped from 0.0.1 to 0.0.2
46+
* @waku/core bumped from 0.0.18 to 0.0.19
47+
* @waku/dns-discovery bumped from 0.0.12 to 0.0.13
48+
* devDependencies
49+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
50+
2951
## [0.0.14](https://github.com/waku-org/js-waku/compare/create-v0.0.13...create-v0.0.14) (2023-05-18)
3052

3153

packages/create/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/create",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"description": "Easily create a Waku node",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,9 +51,9 @@
5151
"@chainsafe/libp2p-noise": "^11.0.0",
5252
"@libp2p/mplex": "^7.1.1",
5353
"@libp2p/websockets": "^5.0.3",
54-
"@waku/relay": "0.0.1",
55-
"@waku/core": "0.0.18",
56-
"@waku/dns-discovery": "0.0.12",
54+
"@waku/relay": "0.0.2",
55+
"@waku/core": "0.0.19",
56+
"@waku/dns-discovery": "0.0.13",
5757
"libp2p": "^0.42.2"
5858
},
5959
"devDependencies": {
@@ -77,7 +77,7 @@
7777
"@typescript-eslint/eslint-plugin": "^5.57.0",
7878
"@typescript-eslint/parser": "^5.51.0",
7979
"@waku/build-utils": "*",
80-
"@waku/interfaces": "0.0.13",
80+
"@waku/interfaces": "0.0.14",
8181
"cspell": "^6.31.1",
8282
"eslint": "^8.35.0",
8383
"eslint-config-prettier": "^8.6.0",

packages/dns-discovery/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3737
* devDependencies
3838
* @waku/interfaces bumped from 0.0.11 to 0.0.12
3939

40+
### Dependencies
41+
42+
* The following workspace dependencies were updated
43+
* dependencies
44+
* @waku/enr bumped from 0.0.12 to 0.0.13
45+
* @waku/utils bumped from 0.0.6 to 0.0.7
46+
* devDependencies
47+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
48+
4049
## [0.0.12](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.11...dns-discovery-v0.0.12) (2023-05-18)
4150

4251

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.12",
3+
"version": "0.0.13",
44
"description": "DNS Peer Discovery (EIP-1459)",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -53,8 +53,8 @@
5353
"dependencies": {
5454
"@libp2p/interface-peer-discovery": "^1.0.5",
5555
"@libp2p/interfaces": "^3.3.1",
56-
"@waku/enr": "0.0.12",
57-
"@waku/utils": "0.0.6",
56+
"@waku/enr": "0.0.13",
57+
"@waku/utils": "0.0.7",
5858
"debug": "^4.3.4",
5959
"dns-query": "^0.11.2",
6060
"hi-base32": "^0.5.1",
@@ -73,7 +73,7 @@
7373
"@typescript-eslint/eslint-plugin": "^5.57.0",
7474
"@typescript-eslint/parser": "^5.51.0",
7575
"@waku/build-utils": "*",
76-
"@waku/interfaces": "0.0.13",
76+
"@waku/interfaces": "0.0.14",
7777
"chai": "^4.3.7",
7878
"cspell": "^6.31.1",
7979
"eslint": "^8.35.0",

packages/enr/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
* devDependencies
3636
* @waku/interfaces bumped from 0.0.11 to 0.0.12
3737

38+
### Dependencies
39+
40+
* The following workspace dependencies were updated
41+
* dependencies
42+
* @waku/utils bumped from 0.0.6 to 0.0.7
43+
* devDependencies
44+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
45+
3846
## [0.0.12](https://github.com/waku-org/js-waku/compare/enr-v0.0.11...enr-v0.0.12) (2023-05-18)
3947

4048

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.12",
3+
"version": "0.0.13",
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": "^2.0.3",
5757
"@multiformats/multiaddr": "^12.0.0",
5858
"@noble/secp256k1": "^1.7.1",
59-
"@waku/utils": "0.0.6",
59+
"@waku/utils": "0.0.7",
6060
"debug": "^4.3.4",
6161
"js-sha3": "^0.8.0"
6262
},
@@ -72,7 +72,7 @@
7272
"@typescript-eslint/eslint-plugin": "^5.57.0",
7373
"@typescript-eslint/parser": "^5.51.0",
7474
"@waku/build-utils": "*",
75-
"@waku/interfaces": "0.0.13",
75+
"@waku/interfaces": "0.0.14",
7676
"chai": "^4.3.7",
7777
"cspell": "^6.31.1",
7878
"eslint": "^8.35.0",

packages/interfaces/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.14](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.13...interfaces-v0.0.14) (2023-05-26)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
14+
15+
### Features
16+
17+
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
18+
819
## [0.0.13](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.12...interfaces-v0.0.13) (2023-05-18)
920

1021

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.13",
3+
"version": "0.0.14",
44
"description": "Definition of Waku interfaces",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",

packages/message-encryption/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
* @waku/interfaces bumped from 0.0.10 to 0.0.11
3636
* @waku/utils bumped from 0.0.3 to 0.0.4
3737

38+
### Dependencies
39+
40+
* The following workspace dependencies were updated
41+
* dependencies
42+
* @waku/core bumped from 0.0.18 to 0.0.19
43+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
44+
* @waku/proto bumped from * to 0.0.5
45+
* @waku/utils bumped from 0.0.6 to 0.0.7
46+
3847
## [0.0.16](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.15...message-encryption-v0.0.16) (2023-05-18)
3948

4049

packages/message-encryption/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/message-encryption",
3-
"version": "0.0.16",
3+
"version": "0.0.17",
44
"description": "Waku Message Payload Encryption",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -72,10 +72,10 @@
7272
},
7373
"dependencies": {
7474
"@noble/secp256k1": "^1.7.1",
75-
"@waku/core": "0.0.18",
76-
"@waku/interfaces": "0.0.13",
77-
"@waku/proto": "*",
78-
"@waku/utils": "0.0.6",
75+
"@waku/core": "0.0.19",
76+
"@waku/interfaces": "0.0.14",
77+
"@waku/proto": "0.0.5",
78+
"@waku/utils": "0.0.7",
7979
"debug": "^4.3.4",
8080
"js-sha3": "^0.8.0"
8181
},

packages/message-hash/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* dependencies
7+
* @waku/utils bumped from 0.0.6 to 0.0.7
8+
* devDependencies
9+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
10+
311
## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18)
412

513

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.2",
3+
"version": "0.1.3",
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",
@@ -53,7 +53,7 @@
5353
},
5454
"dependencies": {
5555
"@noble/hashes": "^1.2.0",
56-
"@waku/utils": "0.0.6"
56+
"@waku/utils": "0.0.7"
5757
},
5858
"devDependencies": {
5959
"@rollup/plugin-commonjs": "^24.0.1",
@@ -65,7 +65,7 @@
6565
"@typescript-eslint/eslint-plugin": "^5.54.1",
6666
"@typescript-eslint/parser": "^5.51.0",
6767
"@waku/build-utils": "*",
68-
"@waku/interfaces": "0.0.13",
68+
"@waku/interfaces": "0.0.14",
6969
"chai": "^4.3.7",
7070
"cspell": "^6.28.0",
7171
"eslint": "^8.35.0",

packages/peer-exchange/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,17 @@
4343
* devDependencies
4444
* @waku/interfaces bumped from 0.0.11 to 0.0.12
4545

46+
### Dependencies
47+
48+
* The following workspace dependencies were updated
49+
* dependencies
50+
* @waku/core bumped from 0.0.18 to 0.0.19
51+
* @waku/enr bumped from 0.0.12 to 0.0.13
52+
* @waku/proto bumped from * to 0.0.5
53+
* @waku/utils bumped from 0.0.6 to 0.0.7
54+
* devDependencies
55+
* @waku/interfaces bumped from 0.0.13 to 0.0.14
56+
4657
## [0.0.11](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.10...peer-exchange-v0.0.11) (2023-05-18)
4758

4859

packages/peer-exchange/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/peer-exchange",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -50,10 +50,10 @@
5050
"dependencies": {
5151
"@libp2p/interface-peer-discovery": "^1.0.5",
5252
"@libp2p/interfaces": "^3.3.1",
53-
"@waku/core": "0.0.18",
54-
"@waku/enr": "0.0.12",
55-
"@waku/proto": "*",
56-
"@waku/utils": "0.0.6",
53+
"@waku/core": "0.0.19",
54+
"@waku/enr": "0.0.13",
55+
"@waku/proto": "0.0.5",
56+
"@waku/utils": "0.0.7",
5757
"debug": "^4.3.4",
5858
"it-all": "^3.0.1",
5959
"it-length-prefixed": "^9.0.1",
@@ -71,7 +71,7 @@
7171
"@typescript-eslint/eslint-plugin": "^5.57.0",
7272
"@typescript-eslint/parser": "^5.51.0",
7373
"@waku/build-utils": "*",
74-
"@waku/interfaces": "0.0.13",
74+
"@waku/interfaces": "0.0.14",
7575
"chai": "^4.3.7",
7676
"cspell": "^6.31.1",
7777
"eslint": "^8.35.0",

packages/proto/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.0.5](https://github.com/waku-org/js-waku/compare/proto-v0.0.4...proto-v0.0.5) (2023-05-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
9+
10+
### Features
11+
12+
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
13+
314
## [0.0.4](https://github.com/waku-org/js-waku/compare/proto-v0.0.3...proto-v0.0.4) (2023-03-24)
415

516

packages/proto/package.json

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

0 commit comments

Comments
 (0)