chore: release master (#1253)

This commit is contained in:
fryorcraken.eth 2023-03-24 10:10:41 +11:00 committed by GitHub
parent bfc51af258
commit 9b6448bf63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 117 additions and 26 deletions

View File

@ -1,11 +1,11 @@
{
"packages/utils": "0.0.2",
"packages/proto": "0.0.3",
"packages/interfaces": "0.0.8",
"packages/enr": "0.0.6",
"packages/peer-exchange": "0.0.4",
"packages/core": "0.0.11",
"packages/dns-discovery": "0.0.6",
"packages/message-encryption": "0.0.10",
"packages/create": "0.0.7"
"packages/interfaces": "0.0.9",
"packages/enr": "0.0.7",
"packages/peer-exchange": "0.0.5",
"packages/core": "0.0.12",
"packages/dns-discovery": "0.0.7",
"packages/message-encryption": "0.0.11",
"packages/create": "0.0.8"
}

View File

@ -5,6 +5,25 @@ 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.12](https://github.com/waku-org/js-waku/compare/core-v0.0.11...core-v0.0.12) (2023-03-23)
### ⚠ BREAKING CHANGES
* use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217))
### Features
* Add getActiveSubscriptions method ([#1249](https://github.com/waku-org/js-waku/issues/1249)) ([45284db](https://github.com/waku-org/js-waku/commit/45284db963d6d4c90a014391551604c236906b88))
* Use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217)) ([0f6a594](https://github.com/waku-org/js-waku/commit/0f6a59464426b94dd14841de075ff10a4ad52e33))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.11](https://github.com/waku-org/js-waku/compare/core-v0.0.10...core-v0.0.11) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/core",
"version": "0.0.11",
"version": "0.0.12",
"description": "TypeScript implementation of the Waku v2 protocol",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -82,7 +82,7 @@
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^6.1.0",
"@noble/hashes": "^1.3.0",
"@waku/interfaces": "0.0.8",
"@waku/interfaces": "0.0.9",
"@waku/proto": "0.0.3",
"@waku/utils": "0.0.2",
"debug": "^4.3.4",

View File

@ -5,6 +5,23 @@ 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.8](https://github.com/waku-org/js-waku/compare/create-v0.0.7...create-v0.0.8) (2023-03-23)
### Bug Fixes
* @waku/create should not depend on @waku/peer-exchange ([f0ac886](https://github.com/waku-org/js-waku/commit/f0ac886593a96a7d63f75b481d0c2419c1084cda))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.11 to 0.0.12
* @waku/dns-discovery bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.7](https://github.com/waku-org/js-waku/compare/create-v0.0.6...create-v0.0.7) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/create",
"version": "0.0.7",
"version": "0.0.8",
"description": "Easily create a Waku node",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -53,8 +53,8 @@
"@chainsafe/libp2p-noise": "^11.0.0",
"@libp2p/mplex": "^7.1.1",
"@libp2p/websockets": "^5.0.3",
"@waku/core": "0.0.11",
"@waku/dns-discovery": "0.0.6",
"@waku/core": "0.0.12",
"@waku/dns-discovery": "0.0.7",
"libp2p": "^0.42.2"
},
"devDependencies": {
@ -78,7 +78,7 @@
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.8",
"@waku/interfaces": "0.0.9",
"cspell": "^6.28.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",

View File

@ -5,6 +5,14 @@ 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).
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/dns-discovery",
"version": "0.0.6",
"version": "0.0.7",
"description": "DNS Peer Discovery (EIP-1459)",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -61,7 +61,7 @@
"dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1",
"@waku/enr": "0.0.6",
"@waku/enr": "0.0.7",
"@waku/utils": "0.0.2",
"debug": "^4.3.4",
"dns-query": "^0.11.2",
@ -81,7 +81,7 @@
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.8",
"@waku/interfaces": "0.0.9",
"chai": "^4.3.7",
"cspell": "^6.28.0",
"eslint": "^8.35.0",

View File

@ -5,6 +5,12 @@ 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).
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/enr",
"version": "0.0.6",
"version": "0.0.7",
"description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -74,7 +74,7 @@
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.8",
"@waku/interfaces": "0.0.9",
"chai": "^4.3.7",
"cspell": "^6.28.0",
"eslint": "^8.35.0",

View File

@ -5,6 +5,18 @@ 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.9](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.8...interfaces-v0.0.9) (2023-03-23)
### ⚠ BREAKING CHANGES
* use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217))
### Features
* Add getActiveSubscriptions method ([#1249](https://github.com/waku-org/js-waku/issues/1249)) ([45284db](https://github.com/waku-org/js-waku/commit/45284db963d6d4c90a014391551604c236906b88))
* Use ISender and deprecate Light Push .push ([#1217](https://github.com/waku-org/js-waku/issues/1217)) ([0f6a594](https://github.com/waku-org/js-waku/commit/0f6a59464426b94dd14841de075ff10a4ad52e33))
## [0.0.8](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.7...interfaces-v0.0.8) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/interfaces",
"version": "0.0.8",
"version": "0.0.9",
"description": "Definition of Waku interfaces",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",

View File

@ -5,6 +5,13 @@ 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).
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.11 to 0.0.12
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/message-encryption",
"version": "0.0.10",
"version": "0.0.11",
"description": "Waku Message Payload Encryption",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -74,8 +74,8 @@
},
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"@waku/core": "0.0.11",
"@waku/interfaces": "0.0.8",
"@waku/core": "0.0.12",
"@waku/interfaces": "0.0.9",
"@waku/proto": "0.0.3",
"@waku/utils": "0.0.2",
"debug": "^4.3.4",

View File

@ -1,5 +1,27 @@
# Changelog
## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23)
### Features
* Compliance test for peer-exchange discovery ([#1186](https://github.com/waku-org/js-waku/issues/1186)) ([5b0c3c3](https://github.com/waku-org/js-waku/commit/5b0c3c3cac3ddb5687d8f59457d6056527a8666c))
### Bug Fixes
* @waku/peer-exchange uses @waku/core and should depend on it ([e922ed4](https://github.com/waku-org/js-waku/commit/e922ed49ec70553227751518251152c765efd07c))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from * to 0.0.12
* @waku/enr bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.8 to 0.0.9
## [0.0.4](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.3...peer-exchange-v0.0.4) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/peer-exchange",
"version": "0.0.4",
"version": "0.0.5",
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -52,8 +52,8 @@
"dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1",
"@waku/core": "*",
"@waku/enr": "0.0.6",
"@waku/core": "0.0.12",
"@waku/enr": "0.0.7",
"@waku/proto": "0.0.3",
"@waku/utils": "*",
"debug": "^4.3.4",
@ -73,7 +73,7 @@
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.8",
"@waku/interfaces": "0.0.9",
"chai": "^4.3.7",
"cspell": "^6.28.0",
"eslint": "^8.35.0",