Skip to content

Commit

Permalink
chore: release master
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko committed Mar 26, 2024
1 parent 0a8382e commit d2d2896
Show file tree
Hide file tree
Showing 19 changed files with 236 additions and 40 deletions.
17 changes: 9 additions & 8 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"packages/utils": "0.0.15",
"packages/utils": "0.0.16",
"packages/proto": "0.0.6",
"packages/interfaces": "0.0.22",
"packages/message-hash": "0.1.11",
"packages/enr": "0.0.21",
"packages/core": "0.0.27",
"packages/message-encryption": "0.0.25",
"packages/relay": "0.0.10",
"packages/sdk": "0.0.23"
"packages/interfaces": "0.0.23",
"packages/message-hash": "0.1.12",
"packages/enr": "0.0.22",
"packages/core": "0.0.28",
"packages/message-encryption": "0.0.26",
"packages/relay": "0.0.11",
"packages/sdk": "0.0.24",
"packages/discovery": "1.0.0"
}
28 changes: 28 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ 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.28](https://github.com/waku-org/js-waku/compare/core-v0.0.27...core-v0.0.28) (2024-03-26)


### ⚠ BREAKING CHANGES

* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887))

### Features

* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))
* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da))
* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90))


### Miscellaneous Chores

* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from ^0.0.21 to ^0.0.22
* @waku/interfaces bumped from 0.0.22 to 0.0.23
* @waku/message-hash bumped from ^0.1.11 to ^0.1.12
* @waku/utils bumped from 0.0.15 to 0.0.16

## [0.0.27](https://github.com/waku-org/js-waku/compare/core-v0.0.26...core-v0.0.27) (2024-03-04)


Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/core",
"version": "0.0.27",
"version": "0.0.28",
"description": "TypeScript implementation of the Waku v2 protocol",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -74,11 +74,11 @@
"dependencies": {
"@libp2p/ping": "^1.0.12",
"@noble/hashes": "^1.3.2",
"@waku/enr": "^0.0.21",
"@waku/interfaces": "0.0.22",
"@waku/message-hash": "^0.1.11",
"@waku/enr": "^0.0.22",
"@waku/interfaces": "0.0.23",
"@waku/message-hash": "^0.1.12",
"@waku/proto": "0.0.6",
"@waku/utils": "0.0.15",
"@waku/utils": "0.0.16",
"debug": "^4.3.4",
"it-all": "^3.0.4",
"it-length-prefixed": "^9.0.4",
Expand Down
22 changes: 22 additions & 0 deletions packages/discovery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## 1.0.0 (2024-03-26)


### ⚠ BREAKING CHANGES

* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876))

### Features

* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) ([1e86c3d](https://github.com/waku-org/js-waku/commit/1e86c3d63e6532dabbe10e01376d42dc6bcb0b85))
* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.22 to 0.0.23
* @waku/enr bumped from 0.0.21 to 0.0.22
* @waku/utils bumped from 0.0.15 to 0.0.16
8 changes: 4 additions & 4 deletions packages/discovery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/discovery",
"version": "0.0.1",
"version": "1.0.0",
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -51,10 +51,10 @@
"node": ">=18"
},
"dependencies": {
"@waku/interfaces": "0.0.22",
"@waku/interfaces": "0.0.23",
"@waku/proto": "^0.0.6",
"@waku/enr": "0.0.21",
"@waku/utils": "0.0.15",
"@waku/enr": "0.0.22",
"@waku/utils": "0.0.16",
"debug": "^4.3.4",
"dns-query": "^0.11.2",
"hi-base32": "^0.5.1",
Expand Down
16 changes: 16 additions & 0 deletions packages/enr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ 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.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-03-26)


### Features

* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.15 to 0.0.16
* devDependencies
* @waku/interfaces bumped from 0.0.22 to 0.0.23

## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04)


Expand Down
6 changes: 3 additions & 3 deletions packages/enr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/enr",
"version": "0.0.21",
"version": "0.0.22",
"description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -56,7 +56,7 @@
"@libp2p/peer-id": "^4.0.4",
"@multiformats/multiaddr": "^12.0.0",
"@noble/secp256k1": "^1.7.1",
"@waku/utils": "0.0.15",
"@waku/utils": "0.0.16",
"debug": "^4.3.4",
"js-sha3": "^0.9.2"
},
Expand All @@ -68,7 +68,7 @@
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.22",
"@waku/interfaces": "0.0.23",
"chai": "^4.3.10",
"cspell": "^8.6.0",
"fast-check": "^3.15.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.23](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.22...interfaces-v0.0.23) (2024-03-26)


### ⚠ BREAKING CHANGES

* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887))

### Features

* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da))
* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90))


### Miscellaneous Chores

* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4))

## [0.0.22](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.21...interfaces-v0.0.22) (2024-03-04)


Expand Down
2 changes: 1 addition & 1 deletion packages/interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/interfaces",
"version": "0.0.22",
"version": "0.0.23",
"description": "Definition of Waku interfaces",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/message-encryption/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@ 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/utils bumped from 0.0.14 to 0.0.15

## [0.0.26](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.25...message-encryption-v0.0.26) (2024-03-26)


### Features

* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.27 to 0.0.28
* @waku/interfaces bumped from 0.0.22 to 0.0.23
* @waku/utils bumped from 0.0.15 to 0.0.16

## [0.0.24](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.23...message-encryption-v0.0.24) (2024-01-10)


Expand Down
8 changes: 4 additions & 4 deletions packages/message-encryption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/message-encryption",
"version": "0.0.25",
"version": "0.0.26",
"description": "Waku Message Payload Encryption",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -76,10 +76,10 @@
},
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"@waku/core": "0.0.27",
"@waku/interfaces": "0.0.22",
"@waku/core": "0.0.28",
"@waku/interfaces": "0.0.23",
"@waku/proto": "0.0.6",
"@waku/utils": "0.0.15",
"@waku/utils": "0.0.16",
"debug": "^4.3.4",
"js-sha3": "^0.9.2",
"uint8arrays": "^5.0.1"
Expand Down
16 changes: 16 additions & 0 deletions packages/message-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@
* devDependencies
* @waku/interfaces bumped from 0.0.20 to 0.0.21

## [0.1.12](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.11...message-hash-v0.1.12) (2024-03-26)


### Features

* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.15 to 0.0.16
* devDependencies
* @waku/interfaces bumped from 0.0.22 to 0.0.23

## [0.1.11](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.10...message-hash-v0.1.11) (2024-03-04)


Expand Down
6 changes: 3 additions & 3 deletions packages/message-hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/message-hash",
"version": "0.1.11",
"version": "0.1.12",
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -51,7 +51,7 @@
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"@waku/utils": "0.0.15"
"@waku/utils": "0.0.16"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
Expand All @@ -61,7 +61,7 @@
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@waku/build-utils": "*",
"@waku/interfaces": "0.0.22",
"@waku/interfaces": "0.0.23",
"chai": "^4.3.10",
"cspell": "^8.6.0",
"fast-check": "^3.15.1",
Expand Down
26 changes: 26 additions & 0 deletions packages/relay/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,32 @@
* @waku/interfaces bumped from 0.0.16 to 0.0.17
* @waku/utils bumped from 0.0.9 to 0.0.10

## [0.0.11](https://github.com/waku-org/js-waku/compare/relay-v0.0.10...relay-v0.0.11) (2024-03-26)


### ⚠ BREAKING CHANGES

* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887))

### Features

* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))
* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da))


### Miscellaneous Chores

* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.27 to 0.0.28
* @waku/interfaces bumped from 0.0.22 to 0.0.23
* @waku/utils bumped from 0.0.15 to 0.0.16

## [0.0.10](https://github.com/waku-org/js-waku/compare/relay-v0.0.9...relay-v0.0.10) (2024-03-04)


Expand Down
8 changes: 4 additions & 4 deletions packages/relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@waku/relay",
"version": "0.0.10",
"version": "0.0.11",
"description": "Relay Protocol for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down Expand Up @@ -51,10 +51,10 @@
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^12.0.0",
"@noble/hashes": "^1.3.2",
"@waku/core": "0.0.27",
"@waku/interfaces": "0.0.22",
"@waku/core": "0.0.28",
"@waku/interfaces": "0.0.23",
"@waku/proto": "0.0.6",
"@waku/utils": "0.0.15",
"@waku/utils": "0.0.16",
"chai": "^4.3.10",
"debug": "^4.3.4",
"fast-check": "^3.15.1"
Expand Down
30 changes: 30 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,36 @@ 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.24](https://github.com/waku-org/js-waku/compare/sdk-v0.0.23...sdk-v0.0.24) (2024-03-26)


### ⚠ BREAKING CHANGES

* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876))
* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887))

### Features

* @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) ([1e86c3d](https://github.com/waku-org/js-waku/commit/1e86c3d63e6532dabbe10e01376d42dc6bcb0b85))
* Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))
* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da))


### Miscellaneous Chores

* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @waku/discovery bumped from 0.0.1 to 1.0.0
* @waku/core bumped from 0.0.27 to 0.0.28
* @waku/interfaces bumped from 0.0.22 to 0.0.23
* @waku/relay bumped from 0.0.10 to 0.0.11
* @waku/utils bumped from 0.0.15 to 0.0.16

## [0.0.23](https://github.com/waku-org/js-waku/compare/sdk-v0.0.22...sdk-v0.0.23) (2024-03-04)


Expand Down
Loading

0 comments on commit d2d2896

Please sign in to comment.