Skip to content

Commit 9b6448b

Browse files
authored
chore: release master (#1253)
1 parent bfc51af commit 9b6448b

File tree

15 files changed

+117
-26
lines changed

15 files changed

+117
-26
lines changed

.release-please-manifest.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"packages/utils": "0.0.2",
33
"packages/proto": "0.0.3",
4-
"packages/interfaces": "0.0.8",
5-
"packages/enr": "0.0.6",
6-
"packages/peer-exchange": "0.0.4",
7-
"packages/core": "0.0.11",
8-
"packages/dns-discovery": "0.0.6",
9-
"packages/message-encryption": "0.0.10",
10-
"packages/create": "0.0.7"
4+
"packages/interfaces": "0.0.9",
5+
"packages/enr": "0.0.7",
6+
"packages/peer-exchange": "0.0.5",
7+
"packages/core": "0.0.12",
8+
"packages/dns-discovery": "0.0.7",
9+
"packages/message-encryption": "0.0.11",
10+
"packages/create": "0.0.8"
1111
}

packages/core/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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.12](https://github.com/waku-org/js-waku/compare/core-v0.0.11...core-v0.0.12) (2023-03-23)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217))
14+
15+
### Features
16+
17+
* Add getActiveSubscriptions method ([#1249](https://github.com/waku-org/js-waku/issues/1249)) ([45284db](https://github.com/waku-org/js-waku/commit/45284db963d6d4c90a014391551604c236906b88))
18+
* Use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217)) ([0f6a594](https://github.com/waku-org/js-waku/commit/0f6a59464426b94dd14841de075ff10a4ad52e33))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
26+
827
## [0.0.11](https://github.com/waku-org/js-waku/compare/core-v0.0.10...core-v0.0.11) (2023-03-16)
928

1029

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -82,7 +82,7 @@
8282
"dependencies": {
8383
"@chainsafe/libp2p-gossipsub": "^6.1.0",
8484
"@noble/hashes": "^1.3.0",
85-
"@waku/interfaces": "0.0.8",
85+
"@waku/interfaces": "0.0.9",
8686
"@waku/proto": "0.0.3",
8787
"@waku/utils": "0.0.2",
8888
"debug": "^4.3.4",

packages/create/CHANGELOG.md

+17
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.8](https://github.com/waku-org/js-waku/compare/create-v0.0.7...create-v0.0.8) (2023-03-23)
9+
10+
11+
### Bug Fixes
12+
13+
* @waku/create should not depend on @waku/peer-exchange ([f0ac886](https://github.com/waku-org/js-waku/commit/f0ac886593a96a7d63f75b481d0c2419c1084cda))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* @waku/core bumped from 0.0.11 to 0.0.12
21+
* @waku/dns-discovery bumped from 0.0.6 to 0.0.7
22+
* devDependencies
23+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
24+
825
## [0.0.7](https://github.com/waku-org/js-waku/compare/create-v0.0.6...create-v0.0.7) (2023-03-16)
926

1027

packages/create/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/create",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Easily create a Waku node",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -53,8 +53,8 @@
5353
"@chainsafe/libp2p-noise": "^11.0.0",
5454
"@libp2p/mplex": "^7.1.1",
5555
"@libp2p/websockets": "^5.0.3",
56-
"@waku/core": "0.0.11",
57-
"@waku/dns-discovery": "0.0.6",
56+
"@waku/core": "0.0.12",
57+
"@waku/dns-discovery": "0.0.7",
5858
"libp2p": "^0.42.2"
5959
},
6060
"devDependencies": {
@@ -78,7 +78,7 @@
7878
"@typescript-eslint/eslint-plugin": "^5.55.0",
7979
"@typescript-eslint/parser": "^5.51.0",
8080
"@waku/build-utils": "*",
81-
"@waku/interfaces": "0.0.8",
81+
"@waku/interfaces": "0.0.9",
8282
"cspell": "^6.28.0",
8383
"eslint": "^8.35.0",
8484
"eslint-config-prettier": "^8.6.0",

packages/dns-discovery/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
### Dependencies
9+
10+
* The following workspace dependencies were updated
11+
* dependencies
12+
* @waku/enr bumped from 0.0.6 to 0.0.7
13+
* devDependencies
14+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
15+
816
## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16)
917

1018

packages/dns-discovery/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/dns-discovery",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "DNS Peer Discovery (EIP-1459)",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -61,7 +61,7 @@
6161
"dependencies": {
6262
"@libp2p/interface-peer-discovery": "^1.0.5",
6363
"@libp2p/interfaces": "^3.3.1",
64-
"@waku/enr": "0.0.6",
64+
"@waku/enr": "0.0.7",
6565
"@waku/utils": "0.0.2",
6666
"debug": "^4.3.4",
6767
"dns-query": "^0.11.2",
@@ -81,7 +81,7 @@
8181
"@typescript-eslint/eslint-plugin": "^5.55.0",
8282
"@typescript-eslint/parser": "^5.51.0",
8383
"@waku/build-utils": "*",
84-
"@waku/interfaces": "0.0.8",
84+
"@waku/interfaces": "0.0.9",
8585
"chai": "^4.3.7",
8686
"cspell": "^6.28.0",
8787
"eslint": "^8.35.0",

packages/enr/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
### Dependencies
9+
10+
* The following workspace dependencies were updated
11+
* devDependencies
12+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
13+
814
## [0.0.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-16)
915

1016

packages/enr/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/enr",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "ENR (EIP-778) for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -74,7 +74,7 @@
7474
"@typescript-eslint/eslint-plugin": "^5.55.0",
7575
"@typescript-eslint/parser": "^5.51.0",
7676
"@waku/build-utils": "*",
77-
"@waku/interfaces": "0.0.8",
77+
"@waku/interfaces": "0.0.9",
7878
"chai": "^4.3.7",
7979
"cspell": "^6.28.0",
8080
"eslint": "^8.35.0",

packages/interfaces/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.9](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.8...interfaces-v0.0.9) (2023-03-23)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217))
14+
15+
### Features
16+
17+
* Add getActiveSubscriptions method ([#1249](https://github.com/waku-org/js-waku/issues/1249)) ([45284db](https://github.com/waku-org/js-waku/commit/45284db963d6d4c90a014391551604c236906b88))
18+
* Use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217)) ([0f6a594](https://github.com/waku-org/js-waku/commit/0f6a59464426b94dd14841de075ff10a4ad52e33))
19+
820
## [0.0.8](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.7...interfaces-v0.0.8) (2023-03-16)
921

1022

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

packages/message-encryption/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
### Dependencies
9+
10+
* The following workspace dependencies were updated
11+
* dependencies
12+
* @waku/core bumped from 0.0.11 to 0.0.12
13+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
14+
815
## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16)
916

1017

packages/message-encryption/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/message-encryption",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Waku Message Payload Encryption",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -74,8 +74,8 @@
7474
},
7575
"dependencies": {
7676
"@noble/secp256k1": "^1.7.1",
77-
"@waku/core": "0.0.11",
78-
"@waku/interfaces": "0.0.8",
77+
"@waku/core": "0.0.12",
78+
"@waku/interfaces": "0.0.9",
7979
"@waku/proto": "0.0.3",
8080
"@waku/utils": "0.0.2",
8181
"debug": "^4.3.4",

packages/peer-exchange/CHANGELOG.md

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

3+
## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23)
4+
5+
6+
### Features
7+
8+
* Compliance test for peer-exchange discovery ([#1186](https://github.com/waku-org/js-waku/issues/1186)) ([5b0c3c3](https://github.com/waku-org/js-waku/commit/5b0c3c3cac3ddb5687d8f59457d6056527a8666c))
9+
10+
11+
### Bug Fixes
12+
13+
* @waku/peer-exchange uses @waku/core and should depend on it ([e922ed4](https://github.com/waku-org/js-waku/commit/e922ed49ec70553227751518251152c765efd07c))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* @waku/core bumped from * to 0.0.12
21+
* @waku/enr bumped from 0.0.6 to 0.0.7
22+
* devDependencies
23+
* @waku/interfaces bumped from 0.0.8 to 0.0.9
24+
325
## [0.0.4](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.3...peer-exchange-v0.0.4) (2023-03-16)
426

527

packages/peer-exchange/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/peer-exchange",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -52,8 +52,8 @@
5252
"dependencies": {
5353
"@libp2p/interface-peer-discovery": "^1.0.5",
5454
"@libp2p/interfaces": "^3.3.1",
55-
"@waku/core": "*",
56-
"@waku/enr": "0.0.6",
55+
"@waku/core": "0.0.12",
56+
"@waku/enr": "0.0.7",
5757
"@waku/proto": "0.0.3",
5858
"@waku/utils": "*",
5959
"debug": "^4.3.4",
@@ -73,7 +73,7 @@
7373
"@typescript-eslint/eslint-plugin": "^5.55.0",
7474
"@typescript-eslint/parser": "^5.51.0",
7575
"@waku/build-utils": "*",
76-
"@waku/interfaces": "0.0.8",
76+
"@waku/interfaces": "0.0.9",
7777
"chai": "^4.3.7",
7878
"cspell": "^6.28.0",
7979
"eslint": "^8.35.0",

0 commit comments

Comments
 (0)