mirror of https://github.com/status-im/js-waku.git
chore: release master (#1881)
This commit is contained in:
parent
82ca60edac
commit
8eb5703a27
|
@ -1,13 +1,14 @@
|
|||
{
|
||||
"packages/utils": "0.0.14",
|
||||
"packages/utils": "0.0.15",
|
||||
"packages/proto": "0.0.6",
|
||||
"packages/interfaces": "0.0.21",
|
||||
"packages/message-hash": "0.1.10",
|
||||
"packages/enr": "0.0.20",
|
||||
"packages/peer-exchange": "0.0.19",
|
||||
"packages/core": "0.0.26",
|
||||
"packages/dns-discovery": "0.0.20",
|
||||
"packages/message-encryption": "0.0.24",
|
||||
"packages/relay": "0.0.9",
|
||||
"packages/sdk": "0.0.22"
|
||||
"packages/interfaces": "0.0.22",
|
||||
"packages/message-hash": "0.1.11",
|
||||
"packages/enr": "0.0.21",
|
||||
"packages/peer-exchange": "0.0.20",
|
||||
"packages/core": "0.0.27",
|
||||
"packages/dns-discovery": "0.0.21",
|
||||
"packages/message-encryption": "0.0.25",
|
||||
"packages/relay": "0.0.10",
|
||||
"packages/sdk": "0.0.23",
|
||||
"packages/local-peer-cache-discovery": "1.0.0"
|
||||
}
|
||||
|
|
|
@ -5,6 +5,32 @@ 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,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.0.27](https://github.com/waku-org/js-waku/compare/core-v0.0.26...core-v0.0.27) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Create node and subscription by content topic ([ee2d417](https://github.com/waku-org/js-waku/commit/ee2d4176f8cca45a51b7dac0009f0eb01952f540))
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
|
||||
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
|
||||
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/enr bumped from ^0.0.20 to ^0.0.21
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
* @waku/message-hash bumped from ^0.1.10 to ^0.1.11
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [0.0.26](https://github.com/waku-org/js-waku/compare/core-v0.0.25...core-v0.0.26) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/core",
|
||||
"version": "0.0.26",
|
||||
"version": "0.0.27",
|
||||
"description": "TypeScript implementation of the Waku v2 protocol",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -74,11 +74,11 @@
|
|||
"dependencies": {
|
||||
"@libp2p/ping": "^1.0.11",
|
||||
"@noble/hashes": "^1.3.2",
|
||||
"@waku/enr": "^0.0.20",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/message-hash": "^0.1.10",
|
||||
"@waku/enr": "^0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"@waku/message-hash": "^0.1.11",
|
||||
"@waku/proto": "0.0.6",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/utils": "0.0.15",
|
||||
"debug": "^4.3.4",
|
||||
"it-all": "^3.0.4",
|
||||
"it-length-prefixed": "^9.0.4",
|
||||
|
|
|
@ -55,6 +55,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
||||
|
||||
## [0.0.21](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.20...dns-discovery-v0.0.21) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/enr bumped from 0.0.20 to 0.0.21
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
|
||||
## [0.0.19](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.18...dns-discovery-v0.0.19) (2023-11-01)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/dns-discovery",
|
||||
"version": "0.0.20",
|
||||
"version": "0.0.21",
|
||||
"description": "DNS Peer Discovery (EIP-1459)",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -51,8 +51,8 @@
|
|||
"node": ">=18"
|
||||
},
|
||||
"dependencies": {
|
||||
"@waku/enr": "0.0.20",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/enr": "0.0.21",
|
||||
"@waku/utils": "0.0.15",
|
||||
"debug": "^4.3.4",
|
||||
"dns-query": "^0.11.2",
|
||||
"hi-base32": "^0.5.1",
|
||||
|
@ -67,7 +67,7 @@
|
|||
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||
"@types/chai": "^4.3.11",
|
||||
"@waku/build-utils": "*",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"chai": "^4.3.10",
|
||||
"cspell": "^8.3.2",
|
||||
"mocha": "^10.3.0",
|
||||
|
|
|
@ -67,6 +67,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
||||
|
||||
## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **tests:** Append `p2p` with the multiaddrs from ENR ([#1817](https://github.com/waku-org/js-waku/issues/1817)) ([f8e02ab](https://github.com/waku-org/js-waku/commit/f8e02ab19eefd616926e17900602dcef28b068ff))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
|
||||
## [0.0.19](https://github.com/waku-org/js-waku/compare/enr-v0.0.18...enr-v0.0.19) (2023-11-01)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/enr",
|
||||
"version": "0.0.20",
|
||||
"version": "0.0.21",
|
||||
"description": "ENR (EIP-778) for Waku",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -56,7 +56,7 @@
|
|||
"@libp2p/peer-id": "^4.0.4",
|
||||
"@multiformats/multiaddr": "^12.0.0",
|
||||
"@noble/secp256k1": "^1.7.1",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/utils": "0.0.15",
|
||||
"debug": "^4.3.4",
|
||||
"js-sha3": "^0.9.2"
|
||||
},
|
||||
|
@ -68,7 +68,7 @@
|
|||
"@types/chai": "^4.3.11",
|
||||
"@types/mocha": "^10.0.6",
|
||||
"@waku/build-utils": "*",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"chai": "^4.3.10",
|
||||
"cspell": "^8.3.2",
|
||||
"fast-check": "^3.15.1",
|
||||
|
|
|
@ -5,6 +5,29 @@ 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,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.0.22](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.21...interfaces-v0.0.22) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867))
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Add bootstrapPeers option and refactor sdk ([#1871](https://github.com/waku-org/js-waku/issues/1871)) ([9f198dd](https://github.com/waku-org/js-waku/commit/9f198dd149ef299e3edce69b93cc2942c6f24846))
|
||||
* Create node and subscription by content topic ([ee2d417](https://github.com/waku-org/js-waku/commit/ee2d4176f8cca45a51b7dac0009f0eb01952f540))
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
|
||||
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
|
||||
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* Rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867)) ([f3cb10d](https://github.com/waku-org/js-waku/commit/f3cb10d484bac134377b8cfd77e077ffc33bd319))
|
||||
|
||||
## [0.0.21](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.20...interfaces-v0.0.21) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/interfaces",
|
||||
"version": "0.0.21",
|
||||
"version": "0.0.22",
|
||||
"description": "Definition of Waku interfaces",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## 1.0.0 (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867))
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* Rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867)) ([f3cb10d](https://github.com/waku-org/js-waku/commit/f3cb10d484bac134377b8cfd77e077ffc33bd319))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/interfaces bumped from ^0.0.21 to ^0.0.22
|
||||
* @waku/utils bumped from ^0.0.14 to ^0.0.15
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/local-peer-cache-discovery",
|
||||
"version": "0.0.1",
|
||||
"version": "1.0.0",
|
||||
"description": "Local Peer Cache keeps records of healthy peers in the browser's local storage for quicker bootstrapping.",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -51,8 +51,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@libp2p/interface": "^1.1.2",
|
||||
"@waku/interfaces": "^0.0.21",
|
||||
"@waku/utils": "^0.0.14"
|
||||
"@waku/interfaces": "^0.0.22",
|
||||
"@waku/utils": "^0.0.15"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^25.0.7",
|
||||
|
|
|
@ -68,6 +68,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* @waku/interfaces bumped from 0.0.17 to 0.0.18
|
||||
* @waku/utils bumped from 0.0.10 to 0.0.11
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.26 to 0.0.27
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [0.0.24](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.23...message-encryption-v0.0.24) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/message-encryption",
|
||||
"version": "0.0.24",
|
||||
"version": "0.0.25",
|
||||
"description": "Waku Message Payload Encryption",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -76,10 +76,10 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@noble/secp256k1": "^1.7.1",
|
||||
"@waku/core": "0.0.26",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/core": "0.0.27",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"@waku/proto": "0.0.6",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/utils": "0.0.15",
|
||||
"debug": "^4.3.4",
|
||||
"js-sha3": "^0.9.2",
|
||||
"uint8arrays": "^5.0.1"
|
||||
|
|
|
@ -48,6 +48,22 @@
|
|||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
||||
|
||||
## [0.1.11](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.10...message-hash-v0.1.11) (2024-03-04)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Lightpush & filter send requests to multiple peers ([#1779](https://github.com/waku-org/js-waku/issues/1779)) ([7affbe2](https://github.com/waku-org/js-waku/commit/7affbe222dd30ccb6619839f4bc5eb86433a80f7))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
|
||||
## [0.1.8](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.7...message-hash-v0.1.8) (2023-10-16)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/message-hash",
|
||||
"version": "0.1.10",
|
||||
"version": "0.1.11",
|
||||
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -51,7 +51,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@noble/hashes": "^1.3.2",
|
||||
"@waku/utils": "0.0.14"
|
||||
"@waku/utils": "0.0.15"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^25.0.7",
|
||||
|
@ -61,7 +61,7 @@
|
|||
"@types/debug": "^4.1.12",
|
||||
"@types/mocha": "^10.0.6",
|
||||
"@waku/build-utils": "*",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"chai": "^4.3.10",
|
||||
"cspell": "^8.3.2",
|
||||
"fast-check": "^3.15.1",
|
||||
|
|
|
@ -74,6 +74,28 @@
|
|||
* @waku/proto bumped from 0.0.5 to 0.0.6
|
||||
* @waku/utils bumped from 0.0.13 to 0.0.14
|
||||
|
||||
## [0.0.20](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.19...peer-exchange-v0.0.20) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.26 to 0.0.27
|
||||
* @waku/enr bumped from 0.0.20 to 0.0.21
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [0.0.18](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.17...peer-exchange-v0.0.18) (2023-11-01)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/peer-exchange",
|
||||
"version": "0.0.19",
|
||||
"version": "0.0.20",
|
||||
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -49,11 +49,11 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@libp2p/interfaces": "^3.3.2",
|
||||
"@waku/core": "0.0.26",
|
||||
"@waku/enr": "0.0.20",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/core": "0.0.27",
|
||||
"@waku/enr": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"@waku/proto": "0.0.6",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/utils": "0.0.15",
|
||||
"debug": "^4.3.4",
|
||||
"it-all": "^3.0.4",
|
||||
"it-length-prefixed": "^9.0.4",
|
||||
|
|
|
@ -25,6 +25,22 @@
|
|||
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
||||
* @waku/utils bumped from 0.0.9 to 0.0.10
|
||||
|
||||
## [0.0.10](https://github.com/waku-org/js-waku/compare/relay-v0.0.9...relay-v0.0.10) (2024-03-04)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.26 to 0.0.27
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [0.0.9](https://github.com/waku-org/js-waku/compare/relay-v0.0.8...relay-v0.0.9) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/relay",
|
||||
"version": "0.0.9",
|
||||
"version": "0.0.10",
|
||||
"description": "Relay Protocol for Waku",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -51,10 +51,10 @@
|
|||
"dependencies": {
|
||||
"@chainsafe/libp2p-gossipsub": "^12.0.0",
|
||||
"@noble/hashes": "^1.3.2",
|
||||
"@waku/core": "0.0.26",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/core": "0.0.27",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"@waku/proto": "0.0.6",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/utils": "0.0.15",
|
||||
"chai": "^4.3.10",
|
||||
"debug": "^4.3.4",
|
||||
"fast-check": "^3.15.1"
|
||||
|
|
|
@ -47,6 +47,41 @@ 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/peer-exchange bumped from ^0.0.17 to ^0.0.18
|
||||
|
||||
## [0.0.23](https://github.com/waku-org/js-waku/compare/sdk-v0.0.22...sdk-v0.0.23) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867))
|
||||
* discourage the use of relay in browsers ([#1778](https://github.com/waku-org/js-waku/issues/1778))
|
||||
|
||||
### Features
|
||||
|
||||
* Add bootstrapPeers option and refactor sdk ([#1871](https://github.com/waku-org/js-waku/issues/1871)) ([9f198dd](https://github.com/waku-org/js-waku/commit/9f198dd149ef299e3edce69b93cc2942c6f24846))
|
||||
* Create node and subscription by content topic ([ee2d417](https://github.com/waku-org/js-waku/commit/ee2d4176f8cca45a51b7dac0009f0eb01952f540))
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
|
||||
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* Discourage the use of relay in browsers ([#1778](https://github.com/waku-org/js-waku/issues/1778)) ([906c933](https://github.com/waku-org/js-waku/commit/906c93329e4094c79e3f7f5c56e1b78afd778e1a))
|
||||
* Rename local-discovery to local-peer-cache-discovery ([#1867](https://github.com/waku-org/js-waku/issues/1867)) ([f3cb10d](https://github.com/waku-org/js-waku/commit/f3cb10d484bac134377b8cfd77e077ffc33bd319))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.26 to 0.0.27
|
||||
* @waku/dns-discovery bumped from 0.0.20 to 0.0.21
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
* @waku/local-peer-cache-discovery bumped from ^0.0.1 to ^1.0.0
|
||||
* @waku/peer-exchange bumped from ^0.0.19 to ^0.0.20
|
||||
* @waku/relay bumped from 0.0.9 to 0.0.10
|
||||
* @waku/utils bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [0.0.22](https://github.com/waku-org/js-waku/compare/sdk-v0.0.21...sdk-v0.0.22) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/sdk",
|
||||
"version": "0.0.22",
|
||||
"version": "0.0.23",
|
||||
"description": "A unified SDK for easy creation and management of js-waku nodes.",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -66,13 +66,13 @@
|
|||
"@libp2p/mplex": "^10.0.12",
|
||||
"@libp2p/ping": "^1.0.11",
|
||||
"@libp2p/websockets": "^8.0.11",
|
||||
"@waku/core": "0.0.26",
|
||||
"@waku/dns-discovery": "0.0.20",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/local-peer-cache-discovery": "^0.0.1",
|
||||
"@waku/peer-exchange": "^0.0.19",
|
||||
"@waku/relay": "0.0.9",
|
||||
"@waku/utils": "0.0.14",
|
||||
"@waku/core": "0.0.27",
|
||||
"@waku/dns-discovery": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"@waku/local-peer-cache-discovery": "^1.0.0",
|
||||
"@waku/peer-exchange": "^0.0.20",
|
||||
"@waku/relay": "0.0.10",
|
||||
"@waku/utils": "0.0.15",
|
||||
"libp2p": "^1.1.2",
|
||||
"@libp2p/bootstrap": "^10.0.11"
|
||||
},
|
||||
|
|
|
@ -12,6 +12,27 @@
|
|||
* devDependencies
|
||||
* @waku/interfaces bumped from 0.0.16 to 0.0.17
|
||||
|
||||
## [0.0.15](https://github.com/waku-org/js-waku/compare/utils-v0.0.14...utils-v0.0.15) (2024-03-04)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
||||
|
||||
### Features
|
||||
|
||||
* Decouple sharding params out of core ([e138b4f](https://github.com/waku-org/js-waku/commit/e138b4f5c49a35a37830e31e8be87d824f53249f))
|
||||
* Local discovery ([#1811](https://github.com/waku-org/js-waku/issues/1811)) ([199f6ab](https://github.com/waku-org/js-waku/commit/199f6ab2ff83694b93e94e935e2925537e01e281))
|
||||
* Make ShardingParams optional in sdk, required internally ([68d3229](https://github.com/waku-org/js-waku/commit/68d3229644f395bd84b2e2a7067c7b51e9da3dd0))
|
||||
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
||||
|
||||
## [0.0.14](https://github.com/waku-org/js-waku/compare/utils-v0.0.13...utils-v0.0.14) (2024-01-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/utils",
|
||||
"version": "0.0.14",
|
||||
"version": "0.0.15",
|
||||
"description": "Different utilities for Waku",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -68,7 +68,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@noble/hashes": "^1.3.2",
|
||||
"@waku/interfaces": "0.0.21",
|
||||
"@waku/interfaces": "0.0.22",
|
||||
"chai": "^4.3.10",
|
||||
"debug": "^4.3.4",
|
||||
"uint8arrays": "^5.0.1"
|
||||
|
|
Loading…
Reference in New Issue