Skip to content

Commit ccdf84e

Browse files
authored
chore: release master (#2004)
reliability improvements
1 parent 318667e commit ccdf84e

File tree

19 files changed

+198
-41
lines changed

19 files changed

+198
-41
lines changed

.release-please-manifest.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"packages/utils": "0.0.17",
2+
"packages/utils": "0.0.18",
33
"packages/proto": "0.0.7",
4-
"packages/interfaces": "0.0.24",
5-
"packages/message-hash": "0.1.13",
6-
"packages/enr": "0.0.23",
7-
"packages/core": "0.0.29",
8-
"packages/message-encryption": "0.0.27",
9-
"packages/relay": "0.0.12",
10-
"packages/sdk": "0.0.25",
11-
"packages/discovery": "0.0.2",
4+
"packages/interfaces": "0.0.25",
5+
"packages/message-hash": "0.1.14",
6+
"packages/enr": "0.0.24",
7+
"packages/core": "0.0.30",
8+
"packages/message-encryption": "0.0.28",
9+
"packages/relay": "0.0.13",
10+
"packages/sdk": "0.0.26",
11+
"packages/discovery": "0.0.3",
1212
"packages/react-native-polyfills": "0.0.1"
1313
}

packages/core/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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.30](https://github.com/waku-org/js-waku/compare/core-v0.0.29...core-v0.0.30) (2024-07-10)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
14+
15+
### Features
16+
17+
* **filter:** Return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971)) ([4eb06c6](https://github.com/waku-org/js-waku/commit/4eb06c64eb05c015e2f51e3f45a9d7143a934385))
18+
* **lightpush:** Peer management for protocols ([#2003](https://github.com/waku-org/js-waku/issues/2003)) ([93e78c3](https://github.com/waku-org/js-waku/commit/93e78c3b876e084ab70e07c64c9b721693b659f8))
19+
20+
21+
### Bug Fixes
22+
23+
* Failing `node_optional` check ([#2025](https://github.com/waku-org/js-waku/issues/2025)) ([984fb94](https://github.com/waku-org/js-waku/commit/984fb94b5b23a0d2f7edebad36170911ce7a2e84))
24+
* Increasing maxInboundStreams for lightpush from 32 to 100 ([#2021](https://github.com/waku-org/js-waku/issues/2021)) ([2311a59](https://github.com/waku-org/js-waku/commit/2311a595b28b9e7c99fcd96044cf098ad975c70c))
25+
26+
27+
### Dependencies
28+
29+
* The following workspace dependencies were updated
30+
* dependencies
31+
* @waku/enr bumped from ^0.0.23 to ^0.0.24
32+
* @waku/interfaces bumped from 0.0.24 to 0.0.25
33+
* @waku/utils bumped from 0.0.17 to 0.0.18
34+
835
## [0.0.29](https://github.com/waku-org/js-waku/compare/core-v0.0.28...core-v0.0.29) (2024-04-30)
936

1037

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/core",
3-
"version": "0.0.29",
3+
"version": "0.0.30",
44
"description": "TypeScript implementation of the Waku v2 protocol",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -69,10 +69,10 @@
6969
},
7070
"dependencies": {
7171
"@libp2p/ping": "^1.0.12",
72-
"@waku/enr": "^0.0.23",
73-
"@waku/interfaces": "0.0.24",
72+
"@waku/enr": "^0.0.24",
73+
"@waku/interfaces": "0.0.25",
7474
"@waku/proto": "0.0.7",
75-
"@waku/utils": "0.0.17",
75+
"@waku/utils": "0.0.18",
7676
"debug": "^4.3.4",
7777
"it-all": "^3.0.4",
7878
"it-length-prefixed": "^9.0.4",

packages/discovery/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [0.0.3](https://github.com/waku-org/js-waku/compare/discovery-v0.0.2...discovery-v0.0.3) (2024-07-10)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
9+
10+
### Features
11+
12+
* **filter:** Return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971)) ([4eb06c6](https://github.com/waku-org/js-waku/commit/4eb06c64eb05c015e2f51e3f45a9d7143a934385))
13+
14+
15+
### Bug Fixes
16+
17+
* Bootstrapping with default pubsub topic ([#2031](https://github.com/waku-org/js-waku/issues/2031)) ([16e9116](https://github.com/waku-org/js-waku/commit/16e9116c7cf6be876e174fe9259921c8d5397a88))
18+
19+
20+
### Dependencies
21+
22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* @waku/interfaces bumped from 0.0.24 to 0.0.25
25+
* @waku/enr bumped from 0.0.23 to 0.0.24
26+
* @waku/core bumped from 0.0.29 to 0.0.30
27+
* @waku/utils bumped from 0.0.17 to 0.0.18
28+
329
## [0.0.2](https://github.com/waku-org/js-waku/compare/discovery-v0.0.1...discovery-v0.0.2) (2024-04-30)
430

531

packages/discovery/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/discovery",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",
@@ -51,11 +51,11 @@
5151
"node": ">=18"
5252
},
5353
"dependencies": {
54-
"@waku/interfaces": "0.0.24",
54+
"@waku/interfaces": "0.0.25",
5555
"@waku/proto": "^0.0.7",
56-
"@waku/enr": "0.0.23",
57-
"@waku/core": "0.0.29",
58-
"@waku/utils": "0.0.17",
56+
"@waku/enr": "0.0.24",
57+
"@waku/core": "0.0.30",
58+
"@waku/utils": "0.0.18",
5959
"debug": "^4.3.4",
6060
"dns-query": "^0.11.2",
6161
"hi-base32": "^0.5.1",

packages/enr/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7575
* devDependencies
7676
* @waku/interfaces bumped from 0.0.23 to 0.0.24
7777

78+
### Dependencies
79+
80+
* The following workspace dependencies were updated
81+
* dependencies
82+
* @waku/utils bumped from 0.0.17 to 0.0.18
83+
* devDependencies
84+
* @waku/interfaces bumped from 0.0.24 to 0.0.25
85+
7886
## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09)
7987

8088

packages/enr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/enr",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
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.17",
59+
"@waku/utils": "0.0.18",
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.24",
71+
"@waku/interfaces": "0.0.25",
7272
"chai": "^4.3.10",
7373
"cspell": "^8.6.1",
7474
"fast-check": "^3.15.1",

packages/interfaces/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.25](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.24...interfaces-v0.0.25) (2024-07-10)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
14+
15+
### Features
16+
17+
* **filter:** Peer/subscription renewal with recurring Filter pings ([#2052](https://github.com/waku-org/js-waku/issues/2052)) ([318667e](https://github.com/waku-org/js-waku/commit/318667e44267c40c883eafc24a56261294d820dc))
18+
* **filter:** Return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971)) ([4eb06c6](https://github.com/waku-org/js-waku/commit/4eb06c64eb05c015e2f51e3f45a9d7143a934385))
19+
* **filter:** Use protocol peer management ([#2047](https://github.com/waku-org/js-waku/issues/2047)) ([4db508b](https://github.com/waku-org/js-waku/commit/4db508b962736426f4897995a2b525c82fe0ba37))
20+
* **lightpush:** Peer management for protocols ([#2003](https://github.com/waku-org/js-waku/issues/2003)) ([93e78c3](https://github.com/waku-org/js-waku/commit/93e78c3b876e084ab70e07c64c9b721693b659f8))
21+
822
## [0.0.24](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.23...interfaces-v0.0.24) (2024-04-30)
923

1024

packages/interfaces/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@waku/interfaces",
3-
"version": "0.0.24",
3+
"version": "0.0.25",
44
"description": "Definition of Waku interfaces",
55
"types": "./dist/index.d.ts",
66
"module": "./dist/index.js",

packages/message-encryption/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7676
* @waku/interfaces bumped from 0.0.21 to 0.0.22
7777
* @waku/utils bumped from 0.0.14 to 0.0.15
7878

79+
### Dependencies
80+
81+
* The following workspace dependencies were updated
82+
* dependencies
83+
* @waku/core bumped from 0.0.29 to 0.0.30
84+
* @waku/interfaces bumped from 0.0.24 to 0.0.25
85+
* @waku/utils bumped from 0.0.17 to 0.0.18
86+
7987
## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30)
8088

8189

0 commit comments

Comments
 (0)