Skip to content

Commit 0aed4a2

Browse files
chore: release master
1 parent 93f2c4e commit 0aed4a2

19 files changed

+290
-37
lines changed

.release-please-manifest.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"packages/utils": "0.0.1",
3-
"packages/proto": "0.0.2",
4-
"packages/interfaces": "0.0.7",
5-
"packages/enr": "0.0.5",
6-
"packages/peer-exchange": "0.0.3",
7-
"packages/core": "0.0.10",
8-
"packages/dns-discovery": "0.0.5",
9-
"packages/message-encryption": "0.0.9",
10-
"packages/create": "0.0.6"
2+
"packages/utils": "0.0.2",
3+
"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"
1111
}

packages/core/CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ 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.11](https://github.com/waku-org/js-waku/compare/core-v0.0.10...core-v0.0.11) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* update store.proto
14+
* update message.proto: payload and content topic are always defined
15+
* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135))
16+
* bump typescript
17+
* bump all prod dependencies
18+
* bump libp2p dependencies
19+
20+
### Features
21+
22+
* Codec as a property of the protocol implementations ([a5ff788](https://github.com/waku-org/js-waku/commit/a5ff788eed419556e11319f22ca9e3109c81df92))
23+
* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) ([24c24cc](https://github.com/waku-org/js-waku/commit/24c24cc27d83ec12de45ef3cf3d00f6eb817e4ca))
24+
25+
26+
### Bug Fixes
27+
28+
* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18))
29+
30+
31+
### Miscellaneous Chores
32+
33+
* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260))
34+
* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36))
35+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
36+
* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249))
37+
* Update store.proto ([967e6ff](https://github.com/waku-org/js-waku/commit/967e6ffc7ec6f780094e29599c47b723fa222dcc))
38+
39+
40+
### Dependencies
41+
42+
* The following workspace dependencies were updated
43+
* dependencies
44+
* @waku/interfaces bumped from * to 0.0.8
45+
* @waku/proto bumped from * to 0.0.3
46+
* @waku/utils bumped from * to 0.0.2
47+
848
## [Unreleased]
949

1050
### Added

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.10",
3+
"version": "0.0.11",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -82,9 +82,9 @@
8282
"dependencies": {
8383
"@chainsafe/libp2p-gossipsub": "^6.1.0",
8484
"@noble/hashes": "^1.2.0",
85-
"@waku/interfaces": "*",
86-
"@waku/proto": "*",
87-
"@waku/utils": "*",
85+
"@waku/interfaces": "0.0.8",
86+
"@waku/proto": "0.0.3",
87+
"@waku/utils": "0.0.2",
8888
"debug": "^4.3.4",
8989
"it-all": "^2.0.0",
9090
"it-length-prefixed": "^8.0.4",

packages/create/CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ 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.7](https://github.com/waku-org/js-waku/compare/create-v0.0.6...create-v0.0.7) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* bump typescript
14+
* bump libp2p dependencies
15+
16+
### Features
17+
18+
* DNS discovery as default bootstrap discovery ([#1114](https://github.com/waku-org/js-waku/issues/1114)) ([11819fc](https://github.com/waku-org/js-waku/commit/11819fc7b14e18385d421facaf2af0832cad1da8))
19+
20+
21+
### Bug Fixes
22+
23+
* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18))
24+
25+
26+
### Miscellaneous Chores
27+
28+
* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36))
29+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
30+
31+
32+
### Dependencies
33+
34+
* The following workspace dependencies were updated
35+
* dependencies
36+
* @waku/core bumped from * to 0.0.11
37+
* @waku/dns-discovery bumped from * to 0.0.6
38+
* @waku/peer-exchange bumped from * to 0.0.4
39+
* devDependencies
40+
* @waku/interfaces bumped from * to 0.0.8
41+
842
## [Unreleased]
943

1044
### Fixed

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.6",
3+
"version": "0.0.7",
44
"description": "Easily create a Waku node",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -53,9 +53,9 @@
5353
"@chainsafe/libp2p-noise": "^11.0.0",
5454
"@libp2p/mplex": "^7.1.1",
5555
"@libp2p/websockets": "^5.0.3",
56-
"@waku/core": "*",
57-
"@waku/dns-discovery": "*",
58-
"@waku/peer-exchange": "*",
56+
"@waku/core": "0.0.11",
57+
"@waku/dns-discovery": "0.0.6",
58+
"@waku/peer-exchange": "0.0.4",
5959
"libp2p": "^0.42.2"
6060
},
6161
"devDependencies": {
@@ -78,7 +78,7 @@
7878
"@rollup/plugin-node-resolve": "^15.0.1",
7979
"@typescript-eslint/eslint-plugin": "^5.53.0",
8080
"@typescript-eslint/parser": "^5.51.0",
81-
"@waku/interfaces": "*",
81+
"@waku/interfaces": "0.0.8",
8282
"build-utils": "*",
8383
"cspell": "^6.26.3",
8484
"eslint": "^8.35.0",

packages/dns-discovery/CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ 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.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* bump typescript
14+
* bump libp2p dependencies
15+
16+
### Features
17+
18+
* Add mocha to dns-discovery ([#1154](https://github.com/waku-org/js-waku/issues/1154)) ([f945eb9](https://github.com/waku-org/js-waku/commit/f945eb90c49bb54322c4cb58c20cfdeee72ff4f2))
19+
* DNS discovery as default bootstrap discovery ([#1114](https://github.com/waku-org/js-waku/issues/1114)) ([11819fc](https://github.com/waku-org/js-waku/commit/11819fc7b14e18385d421facaf2af0832cad1da8))
20+
21+
22+
### Miscellaneous Chores
23+
24+
* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36))
25+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
26+
27+
28+
### Dependencies
29+
30+
* The following workspace dependencies were updated
31+
* dependencies
32+
* @waku/enr bumped from * to 0.0.6
33+
* @waku/utils bumped from * to 0.0.2
34+
* devDependencies
35+
* @waku/interfaces bumped from * to 0.0.8
36+
837
## [Unreleased]
938

1039
## [0.0.5] - 2023-01-25

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.5",
3+
"version": "0.0.6",
44
"description": "DNS Peer Discovery (EIP-1459)",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -61,8 +61,8 @@
6161
"dependencies": {
6262
"@libp2p/interface-peer-discovery": "^1.0.5",
6363
"@libp2p/interfaces": "^3.3.1",
64-
"@waku/enr": "*",
65-
"@waku/utils": "*",
64+
"@waku/enr": "0.0.6",
65+
"@waku/utils": "0.0.2",
6666
"debug": "^4.3.4",
6767
"dns-query": "^0.11.2",
6868
"hi-base32": "^0.5.1",
@@ -80,7 +80,7 @@
8080
"@types/chai": "^4.3.4",
8181
"@typescript-eslint/eslint-plugin": "^5.53.0",
8282
"@typescript-eslint/parser": "^5.51.0",
83-
"@waku/interfaces": "*",
83+
"@waku/interfaces": "0.0.8",
8484
"build-utils": "*",
8585
"chai": "^4.3.7",
8686
"cspell": "^6.26.3",

packages/enr/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ 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.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* bump typescript
14+
* bump all prod dependencies
15+
* bump libp2p dependencies
16+
17+
### Miscellaneous Chores
18+
19+
* Bump all prod dependencies ([88cc76d](https://github.com/waku-org/js-waku/commit/88cc76d2b811e1fa4460207f38704ecfe18fb260))
20+
* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36))
21+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
22+
23+
24+
### Dependencies
25+
26+
* The following workspace dependencies were updated
27+
* dependencies
28+
* @waku/utils bumped from * to 0.0.2
29+
* devDependencies
30+
* @waku/interfaces bumped from * to 0.0.8
31+
832
## [Unreleased]
933

1034
## [0.0.5] - 2023-01-25

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.5",
3+
"version": "0.0.6",
44
"description": "ENR (EIP-778) for Waku",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -58,7 +58,7 @@
5858
"@libp2p/peer-id": "^2.0.2",
5959
"@multiformats/multiaddr": "^11.4.0",
6060
"@noble/secp256k1": "^1.7.1",
61-
"@waku/utils": "*",
61+
"@waku/utils": "0.0.2",
6262
"debug": "^4.3.4",
6363
"js-sha3": "^0.8.0"
6464
},
@@ -72,7 +72,7 @@
7272
"@types/mocha": "^10.0.1",
7373
"@typescript-eslint/eslint-plugin": "^5.53.0",
7474
"@typescript-eslint/parser": "^5.51.0",
75-
"@waku/interfaces": "*",
75+
"@waku/interfaces": "0.0.8",
7676
"build-utils": "*",
7777
"chai": "^4.3.7",
7878
"cspell": "^6.26.3",

packages/interfaces/CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ 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/interfaces-v0.0.7...interfaces-v0.0.8) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* update store.proto
14+
* update message.proto: payload and content topic are always defined
15+
* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135))
16+
* bump typescript
17+
* bump libp2p dependencies
18+
19+
### Features
20+
21+
* Codec as a property of the protocol implementations ([a5ff788](https://github.com/waku-org/js-waku/commit/a5ff788eed419556e11319f22ca9e3109c81df92))
22+
* ConnectionManager and KeepAliveManager ([#1135](https://github.com/waku-org/js-waku/issues/1135)) ([24c24cc](https://github.com/waku-org/js-waku/commit/24c24cc27d83ec12de45ef3cf3d00f6eb817e4ca))
23+
24+
25+
### Bug Fixes
26+
27+
* Remove initialising peer-exchange while creating a node ([#1158](https://github.com/waku-org/js-waku/issues/1158)) ([1b41569](https://github.com/waku-org/js-waku/commit/1b4156902387ea35b24b3d6f5d22e4635ea8cf18))
28+
29+
30+
### Miscellaneous Chores
31+
32+
* Bump libp2p dependencies ([803ae7b](https://github.com/waku-org/js-waku/commit/803ae7bd8ed3de665026446c23cde90e7eba9d36))
33+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
34+
* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249))
35+
* Update store.proto ([967e6ff](https://github.com/waku-org/js-waku/commit/967e6ffc7ec6f780094e29599c47b723fa222dcc))
36+
837
## [Unreleased]
938

1039
### Added

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

packages/message-encryption/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.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-03)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* update message.proto: payload and content topic are always defined
14+
* bump typescript
15+
16+
### Miscellaneous Chores
17+
18+
* Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
19+
* Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249))
20+
21+
22+
### Dependencies
23+
24+
* The following workspace dependencies were updated
25+
* dependencies
26+
* @waku/core bumped from * to 0.0.11
27+
* @waku/interfaces bumped from * to 0.0.8
28+
* @waku/proto bumped from * to 0.0.3
29+
* @waku/utils bumped from * to 0.0.2
30+
831
## [Unreleased]
932

1033
### Changed

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.9",
3+
"version": "0.0.10",
44
"description": "Waku Message Payload Encryption",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -74,10 +74,10 @@
7474
},
7575
"dependencies": {
7676
"@noble/secp256k1": "^1.7.1",
77-
"@waku/core": "*",
78-
"@waku/interfaces": "*",
79-
"@waku/proto": "*",
80-
"@waku/utils": "*",
77+
"@waku/core": "0.0.11",
78+
"@waku/interfaces": "0.0.8",
79+
"@waku/proto": "0.0.3",
80+
"@waku/utils": "0.0.2",
8181
"debug": "^4.3.4",
8282
"js-sha3": "^0.8.0"
8383
},

0 commit comments

Comments
 (0)