File tree 9 files changed +44
-11
lines changed
9 files changed +44
-11
lines changed Original file line number Diff line number Diff line change 3
3
"packages/proto" : " 0.0.4" ,
4
4
"packages/interfaces" : " 0.0.11" ,
5
5
"packages/enr" : " 0.0.10" ,
6
- "packages/peer-exchange" : " 0.0.9 " ,
7
- "packages/core" : " 0.0.16 " ,
6
+ "packages/peer-exchange" : " 0.0.10 " ,
7
+ "packages/core" : " 0.0.17 " ,
8
8
"packages/dns-discovery" : " 0.0.10" ,
9
- "packages/message-encryption" : " 0.0.14 " ,
10
- "packages/create" : " 0.0.12 "
9
+ "packages/message-encryption" : " 0.0.15 " ,
10
+ "packages/create" : " 0.0.13 "
11
11
}
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The file is maintained by [ Release Please] ( https://github.com/googleapis/release-please ) based on [ Conventional Commits] ( https://www.conventionalcommits.org ) specification,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.0.17] ( https://github.com/waku-org/js-waku/compare/core-v0.0.16...core-v0.0.17 ) (2023-04-04)
9
+
10
+
11
+ ### Features
12
+
13
+ * Ensure content topic is defined ([ bd9d073] ( https://github.com/waku-org/js-waku/commit/bd9d07394fc2dcad573dd7f3b44ee692d0ea93e8 ) )
14
+
8
15
## [ 0.0.16] ( https://github.com/waku-org/js-waku/compare/core-v0.0.15...core-v0.0.16 ) (2023-04-03)
9
16
10
17
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @waku/core" ,
3
- "version" : " 0.0.16 " ,
3
+ "version" : " 0.0.17 " ,
4
4
"description" : " TypeScript implementation of the Waku v2 protocol" ,
5
5
"types" : " ./dist/index.d.ts" ,
6
6
"module" : " ./dist/index.js" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
* dependencies
18
18
* @waku/core bumped from 0.0.14 to 0.0.15
19
19
20
+ ### Dependencies
21
+
22
+ * The following workspace dependencies were updated
23
+ * dependencies
24
+ * @waku/core bumped from 0.0.16 to 0.0.17
25
+
20
26
## [ 0.0.12] ( https://github.com/waku-org/js-waku/compare/create-v0.0.11...create-v0.0.12 ) (2023-04-03)
21
27
22
28
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @waku/create" ,
3
- "version" : " 0.0.12 " ,
3
+ "version" : " 0.0.13 " ,
4
4
"description" : " Easily create a Waku node" ,
5
5
"types" : " ./dist/index.d.ts" ,
6
6
"module" : " ./dist/index.js" ,
51
51
"@chainsafe/libp2p-noise" : " ^11.0.0" ,
52
52
"@libp2p/mplex" : " ^7.1.1" ,
53
53
"@libp2p/websockets" : " ^5.0.3" ,
54
- "@waku/core" : " 0.0.16 " ,
54
+ "@waku/core" : " 0.0.17 " ,
55
55
"@waku/dns-discovery" : " 0.0.10" ,
56
56
"libp2p" : " ^0.42.2"
57
57
},
Original file line number Diff line number Diff line change @@ -35,6 +35,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35
35
* @waku/interfaces bumped from 0.0.10 to 0.0.11
36
36
* @waku/utils bumped from 0.0.3 to 0.0.4
37
37
38
+ ## [ 0.0.15] ( https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.14...message-encryption-v0.0.15 ) (2023-04-04)
39
+
40
+
41
+ ### Features
42
+
43
+ * Ensure content topic is defined ([ bd9d073] ( https://github.com/waku-org/js-waku/commit/bd9d07394fc2dcad573dd7f3b44ee692d0ea93e8 ) )
44
+
45
+
46
+ ### Dependencies
47
+
48
+ * The following workspace dependencies were updated
49
+ * dependencies
50
+ * @waku/core bumped from 0.0.16 to 0.0.17
51
+
38
52
## [ 0.0.10] ( https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10 ) (2023-03-16)
39
53
40
54
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @waku/message-encryption" ,
3
- "version" : " 0.0.14 " ,
3
+ "version" : " 0.0.15 " ,
4
4
"description" : " Waku Message Payload Encryption" ,
5
5
"types" : " ./dist/index.d.ts" ,
6
6
"module" : " ./dist/index.js" ,
72
72
},
73
73
"dependencies" : {
74
74
"@noble/secp256k1" : " ^1.7.1" ,
75
- "@waku/core" : " 0.0.16 " ,
75
+ "@waku/core" : " 0.0.17 " ,
76
76
"@waku/interfaces" : " 0.0.11" ,
77
77
"@waku/proto" : " 0.0.4" ,
78
78
"@waku/utils" : " 0.0.4" ,
Original file line number Diff line number Diff line change 33
33
* devDependencies
34
34
* @waku/interfaces bumped from 0.0.10 to 0.0.11
35
35
36
+ ### Dependencies
37
+
38
+ * The following workspace dependencies were updated
39
+ * dependencies
40
+ * @waku/core bumped from 0.0.16 to 0.0.17
41
+
36
42
## [ 0.0.5] ( https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5 ) (2023-03-23)
37
43
38
44
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @waku/peer-exchange" ,
3
- "version" : " 0.0.9 " ,
3
+ "version" : " 0.0.10 " ,
4
4
"description" : " Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku" ,
5
5
"types" : " ./dist/index.d.ts" ,
6
6
"module" : " ./dist/index.js" ,
50
50
"dependencies" : {
51
51
"@libp2p/interface-peer-discovery" : " ^1.0.5" ,
52
52
"@libp2p/interfaces" : " ^3.3.1" ,
53
- "@waku/core" : " 0.0.16 " ,
53
+ "@waku/core" : " 0.0.17 " ,
54
54
"@waku/enr" : " 0.0.10" ,
55
55
"@waku/proto" : " 0.0.4" ,
56
56
"@waku/utils" : " 0.0.4" ,
You can’t perform that action at this time.
0 commit comments