mirror of https://github.com/waku-org/js-waku.git
parent
318667e442
commit
ccdf84e593
|
@ -1,13 +1,13 @@
|
||||||
{
|
{
|
||||||
"packages/utils": "0.0.17",
|
"packages/utils": "0.0.18",
|
||||||
"packages/proto": "0.0.7",
|
"packages/proto": "0.0.7",
|
||||||
"packages/interfaces": "0.0.24",
|
"packages/interfaces": "0.0.25",
|
||||||
"packages/message-hash": "0.1.13",
|
"packages/message-hash": "0.1.14",
|
||||||
"packages/enr": "0.0.23",
|
"packages/enr": "0.0.24",
|
||||||
"packages/core": "0.0.29",
|
"packages/core": "0.0.30",
|
||||||
"packages/message-encryption": "0.0.27",
|
"packages/message-encryption": "0.0.28",
|
||||||
"packages/relay": "0.0.12",
|
"packages/relay": "0.0.13",
|
||||||
"packages/sdk": "0.0.25",
|
"packages/sdk": "0.0.26",
|
||||||
"packages/discovery": "0.0.2",
|
"packages/discovery": "0.0.3",
|
||||||
"packages/react-native-polyfills": "0.0.1"
|
"packages/react-native-polyfills": "0.0.1"
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
|
||||||
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.0.30](https://github.com/waku-org/js-waku/compare/core-v0.0.29...core-v0.0.30) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Failing `node_optional` check ([#2025](https://github.com/waku-org/js-waku/issues/2025)) ([984fb94](https://github.com/waku-org/js-waku/commit/984fb94b5b23a0d2f7edebad36170911ce7a2e84))
|
||||||
|
* 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))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/enr bumped from ^0.0.23 to ^0.0.24
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
|
||||||
## [0.0.29](https://github.com/waku-org/js-waku/compare/core-v0.0.28...core-v0.0.29) (2024-04-30)
|
## [0.0.29](https://github.com/waku-org/js-waku/compare/core-v0.0.28...core-v0.0.29) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/core",
|
"name": "@waku/core",
|
||||||
"version": "0.0.29",
|
"version": "0.0.30",
|
||||||
"description": "TypeScript implementation of the Waku v2 protocol",
|
"description": "TypeScript implementation of the Waku v2 protocol",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -69,10 +69,10 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@libp2p/ping": "^1.0.12",
|
"@libp2p/ping": "^1.0.12",
|
||||||
"@waku/enr": "^0.0.23",
|
"@waku/enr": "^0.0.24",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"@waku/proto": "0.0.7",
|
"@waku/proto": "0.0.7",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"it-all": "^3.0.4",
|
"it-all": "^3.0.4",
|
||||||
"it-length-prefixed": "^9.0.4",
|
"it-length-prefixed": "^9.0.4",
|
||||||
|
|
|
@ -1,5 +1,31 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.0.3](https://github.com/waku-org/js-waku/compare/discovery-v0.0.2...discovery-v0.0.3) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* 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))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
* @waku/enr bumped from 0.0.23 to 0.0.24
|
||||||
|
* @waku/core bumped from 0.0.29 to 0.0.30
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
|
||||||
## [0.0.2](https://github.com/waku-org/js-waku/compare/discovery-v0.0.1...discovery-v0.0.2) (2024-04-30)
|
## [0.0.2](https://github.com/waku-org/js-waku/compare/discovery-v0.0.1...discovery-v0.0.2) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/discovery",
|
"name": "@waku/discovery",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
|
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -51,11 +51,11 @@
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"@waku/proto": "^0.0.7",
|
"@waku/proto": "^0.0.7",
|
||||||
"@waku/enr": "0.0.23",
|
"@waku/enr": "0.0.24",
|
||||||
"@waku/core": "0.0.29",
|
"@waku/core": "0.0.30",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"dns-query": "^0.11.2",
|
"dns-query": "^0.11.2",
|
||||||
"hi-base32": "^0.5.1",
|
"hi-base32": "^0.5.1",
|
||||||
|
|
|
@ -75,6 +75,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* devDependencies
|
* devDependencies
|
||||||
* @waku/interfaces bumped from 0.0.23 to 0.0.24
|
* @waku/interfaces bumped from 0.0.23 to 0.0.24
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
|
||||||
## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09)
|
## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/enr",
|
"name": "@waku/enr",
|
||||||
"version": "0.0.23",
|
"version": "0.0.24",
|
||||||
"description": "ENR (EIP-778) for Waku",
|
"description": "ENR (EIP-778) for Waku",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
"@libp2p/peer-id": "^4.0.4",
|
"@libp2p/peer-id": "^4.0.4",
|
||||||
"@multiformats/multiaddr": "^12.0.0",
|
"@multiformats/multiaddr": "^12.0.0",
|
||||||
"@noble/secp256k1": "^1.7.1",
|
"@noble/secp256k1": "^1.7.1",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"js-sha3": "^0.9.2"
|
"js-sha3": "^0.9.2"
|
||||||
},
|
},
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
"@types/chai": "^4.3.11",
|
"@types/chai": "^4.3.11",
|
||||||
"@types/mocha": "^10.0.6",
|
"@types/mocha": "^10.0.6",
|
||||||
"@waku/build-utils": "*",
|
"@waku/build-utils": "*",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"chai": "^4.3.10",
|
"chai": "^4.3.10",
|
||||||
"cspell": "^8.6.1",
|
"cspell": "^8.6.1",
|
||||||
"fast-check": "^3.15.1",
|
"fast-check": "^3.15.1",
|
||||||
|
|
|
@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
||||||
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.0.25](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.24...interfaces-v0.0.25) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
|
||||||
## [0.0.24](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.23...interfaces-v0.0.24) (2024-04-30)
|
## [0.0.24](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.23...interfaces-v0.0.24) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/interfaces",
|
"name": "@waku/interfaces",
|
||||||
"version": "0.0.24",
|
"version": "0.0.25",
|
||||||
"description": "Definition of Waku interfaces",
|
"description": "Definition of Waku interfaces",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
|
|
@ -76,6 +76,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.29 to 0.0.30
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
|
||||||
## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30)
|
## [0.0.27](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.26...message-encryption-v0.0.27) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/message-encryption",
|
"name": "@waku/message-encryption",
|
||||||
"version": "0.0.27",
|
"version": "0.0.28",
|
||||||
"description": "Waku Message Payload Encryption",
|
"description": "Waku Message Payload Encryption",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -76,10 +76,10 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/secp256k1": "^1.7.1",
|
"@noble/secp256k1": "^1.7.1",
|
||||||
"@waku/core": "0.0.29",
|
"@waku/core": "0.0.30",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"@waku/proto": "0.0.7",
|
"@waku/proto": "0.0.7",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"js-sha3": "^0.9.2",
|
"js-sha3": "^0.9.2",
|
||||||
"uint8arrays": "^5.0.1"
|
"uint8arrays": "^5.0.1"
|
||||||
|
|
|
@ -48,6 +48,14 @@
|
||||||
* devDependencies
|
* devDependencies
|
||||||
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
|
||||||
## [0.1.13](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.12...message-hash-v0.1.13) (2024-04-30)
|
## [0.1.13](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.12...message-hash-v0.1.13) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/message-hash",
|
"name": "@waku/message-hash",
|
||||||
"version": "0.1.13",
|
"version": "0.1.14",
|
||||||
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
|
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/hashes": "^1.3.2",
|
"@noble/hashes": "^1.3.2",
|
||||||
"@waku/utils": "0.0.17"
|
"@waku/utils": "0.0.18"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rollup/plugin-commonjs": "^25.0.7",
|
"@rollup/plugin-commonjs": "^25.0.7",
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
"@types/debug": "^4.1.12",
|
"@types/debug": "^4.1.12",
|
||||||
"@types/mocha": "^10.0.6",
|
"@types/mocha": "^10.0.6",
|
||||||
"@waku/build-utils": "*",
|
"@waku/build-utils": "*",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"chai": "^4.3.10",
|
"chai": "^4.3.10",
|
||||||
"cspell": "^8.6.1",
|
"cspell": "^8.6.1",
|
||||||
"fast-check": "^3.15.1",
|
"fast-check": "^3.15.1",
|
||||||
|
|
|
@ -25,6 +25,26 @@
|
||||||
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
||||||
* @waku/utils bumped from 0.0.9 to 0.0.10
|
* @waku/utils bumped from 0.0.9 to 0.0.10
|
||||||
|
|
||||||
|
## [0.0.13](https://github.com/waku-org/js-waku/compare/relay-v0.0.12...relay-v0.0.13) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.29 to 0.0.30
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
|
||||||
## [0.0.12](https://github.com/waku-org/js-waku/compare/relay-v0.0.11...relay-v0.0.12) (2024-04-30)
|
## [0.0.12](https://github.com/waku-org/js-waku/compare/relay-v0.0.11...relay-v0.0.12) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/relay",
|
"name": "@waku/relay",
|
||||||
"version": "0.0.12",
|
"version": "0.0.13",
|
||||||
"description": "Relay Protocol for Waku",
|
"description": "Relay Protocol for Waku",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -51,10 +51,10 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@chainsafe/libp2p-gossipsub": "^12.0.0",
|
"@chainsafe/libp2p-gossipsub": "^12.0.0",
|
||||||
"@noble/hashes": "^1.3.2",
|
"@noble/hashes": "^1.3.2",
|
||||||
"@waku/core": "0.0.29",
|
"@waku/core": "0.0.30",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"@waku/proto": "0.0.7",
|
"@waku/proto": "0.0.7",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"chai": "^4.3.10",
|
"chai": "^4.3.10",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"fast-check": "^3.15.1"
|
"fast-check": "^3.15.1"
|
||||||
|
|
|
@ -47,6 +47,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* @waku/interfaces bumped from 0.0.19 to 0.0.20
|
* @waku/interfaces bumped from 0.0.19 to 0.0.20
|
||||||
* @waku/peer-exchange bumped from ^0.0.17 to ^0.0.18
|
* @waku/peer-exchange bumped from ^0.0.17 to ^0.0.18
|
||||||
|
|
||||||
|
## [0.0.26](https://github.com/waku-org/js-waku/compare/sdk-v0.0.25...sdk-v0.0.26) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **filter:** return error codes instead of throwing errors ([#1971](https://github.com/waku-org/js-waku/issues/1971))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
* **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))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Add .js to base protocol import in filter sdk ([#2009](https://github.com/waku-org/js-waku/issues/2009)) ([6f188ef](https://github.com/waku-org/js-waku/commit/6f188ef37978c93432774a5b3cac02e0b40fd184))
|
||||||
|
* 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))
|
||||||
|
* Filter for wss in libp2p websocket transport ([682cc66](https://github.com/waku-org/js-waku/commit/682cc66232fe21b290c20ce145432cdd829158f9))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.29 to 0.0.30
|
||||||
|
* @waku/discovery bumped from 0.0.2 to 0.0.3
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
* @waku/relay bumped from 0.0.12 to 0.0.13
|
||||||
|
* @waku/utils bumped from 0.0.17 to 0.0.18
|
||||||
|
|
||||||
## [0.0.25](https://github.com/waku-org/js-waku/compare/sdk-v0.0.24...sdk-v0.0.25) (2024-04-30)
|
## [0.0.25](https://github.com/waku-org/js-waku/compare/sdk-v0.0.24...sdk-v0.0.25) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/sdk",
|
"name": "@waku/sdk",
|
||||||
"version": "0.0.25",
|
"version": "0.0.26",
|
||||||
"description": "A unified SDK for easy creation and management of js-waku nodes.",
|
"description": "A unified SDK for easy creation and management of js-waku nodes.",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -68,12 +68,12 @@
|
||||||
"@libp2p/ping": "^1.0.12",
|
"@libp2p/ping": "^1.0.12",
|
||||||
"@libp2p/websockets": "^8.0.11",
|
"@libp2p/websockets": "^8.0.11",
|
||||||
"@noble/hashes": "^1.3.3",
|
"@noble/hashes": "^1.3.3",
|
||||||
"@waku/core": "0.0.29",
|
"@waku/core": "0.0.30",
|
||||||
"@waku/discovery": "0.0.2",
|
"@waku/discovery": "0.0.3",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"@waku/proto": "^0.0.7",
|
"@waku/proto": "^0.0.7",
|
||||||
"@waku/relay": "0.0.12",
|
"@waku/relay": "0.0.13",
|
||||||
"@waku/utils": "0.0.17",
|
"@waku/utils": "0.0.18",
|
||||||
"libp2p": "^1.1.2"
|
"libp2p": "^1.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -12,6 +12,20 @@
|
||||||
* devDependencies
|
* devDependencies
|
||||||
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
||||||
|
|
||||||
|
## [0.0.18](https://github.com/waku-org/js-waku/compare/utils-v0.0.17...utils-v0.0.18) (2024-07-10)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **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))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.24 to 0.0.25
|
||||||
|
|
||||||
## [0.0.17](https://github.com/waku-org/js-waku/compare/utils-v0.0.16...utils-v0.0.17) (2024-04-30)
|
## [0.0.17](https://github.com/waku-org/js-waku/compare/utils-v0.0.16...utils-v0.0.17) (2024-04-30)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/utils",
|
"name": "@waku/utils",
|
||||||
"version": "0.0.17",
|
"version": "0.0.18",
|
||||||
"description": "Different utilities for Waku",
|
"description": "Different utilities for Waku",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/hashes": "^1.3.2",
|
"@noble/hashes": "^1.3.2",
|
||||||
"@waku/interfaces": "0.0.24",
|
"@waku/interfaces": "0.0.25",
|
||||||
"chai": "^4.3.10",
|
"chai": "^4.3.10",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"uint8arrays": "^5.0.1"
|
"uint8arrays": "^5.0.1"
|
||||||
|
|
Loading…
Reference in New Issue