diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b8806f547f..d664636735 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -10,12 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Add `@multiformats/multiaddr` as peer dependency. +- New `createEncoder` and `createDecoder` functions so that the consumer does not deal with Encoder/Decoder classes. ### Changed -- `waitForRemotePeer` can now be directly imported from `@waku/core`. +- `waitForRemotePeer` must now be directly imported from `@waku/core`. +- `V0` suffix removed from the version 0 objects. +- `createEncoder`/`createDecoder`/`DecodedMessage` for Waku Message Version 0 (no Waku level encryption) can now be imported directly from `@waku/core`. -## @waku/core [0.0.6](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.5...@waku/core@0.0.6) (2022-11-18) +## [@waku/core@0.0.6] - 2022-11-18 ### Added @@ -29,22 +32,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `PeerDiscoveryStaticPeer` has been removed, use `@libp2p/bootstrap` instead. -## @waku/core [0.0.5](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.4...@waku/core@0.0.5) (2022-11-11) +## [@waku/core@0.0.5] - 2022-11-11 ### Changed - Bumped `libp2p` to 0.39.5. -## @waku/core [0.0.4](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.3...@waku/core@0.0.4) (2022-11-09) +## [@waku/core@0.0.4] - 2022-11-09 ### Changed - Bumped `libp2p` to 0.39.2. -## @waku/core [0.0.2](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.1...@waku/core@0.0.2) (2022-11-04) +## [@waku/core@0.0.3] - 2022-11-04 + +### Fixed + +- Missing `.js` extension. + +## [@waku/core@0.0.2] - 2022-11-04 ### Changed +- `js-waku` is deprecated, `@waku/core` and other `@waku/*` packages should be used instead. - extract version-1 from chore - extract utils from core - extract dns discovery and enr from core ([f7f28f0](https://github.com/waku-org/js-waku/commit/f7f28f03b01fa5bc89eaeb083b68981169b45c39)) @@ -614,7 +624,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [ReactJS Chat App example](./examples/web-chat). - [Typedoc Documentation](https://js-waku.wakuconnect.dev/). -[unreleased]: https://github.com/status-im/js-waku/compare/v0.30.0...HEAD +[unreleased]: https://github.com/status-im/js-waku/compare/@waku/core@0.0.5...HEAD +[@waku/core@0.0.5]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.4...@waku/core@0.0.5 +[@waku/core@0.0.4]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.3...@waku/core@0.0.4 +[@waku/core@0.0.3]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.2...@waku/core@0.0.3 +[@waku/core@0.0.2]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.1...@waku/core@0.0.2 +[@waku/core@0.0.1]: https://github.com/waku-org/js-waku/comparev0.30.0...@waku/core@0.0.1 [0.30.0]: https://github.com/status-im/js-waku/compare/v0.29.0...v0.30.0 [0.29.0]: https://github.com/status-im/js-waku/compare/v0.28.0...v0.29.0 [0.28.1]: https://github.com/status-im/js-waku/compare/v0.28.0...v0.28.1 diff --git a/packages/message-encryption/CHANGELOG.md b/packages/message-encryption/CHANGELOG.md new file mode 100644 index 0000000000..6b08476da8 --- /dev/null +++ b/packages/message-encryption/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added + +- Add `@multiformats/multiaddr` as peer dependency. +- New `createEncoder` and `createDecoder` functions so that the consumer does not deal with Encoder/Decoder classes. +- + +### Changed + +- `Asymmetric` renamed to `ECIES` to follow RFC terminology. +- Split `ECIES` and `symmetric` packages, all items are now export from two different paths: `@waku/message-encryption/ecies` and `@waku/message-encryption/symmetric`. +- remove `asym` and `sym` prefix from exported items as they are now differentiated from their export path: `createEncoder`, `createDecoder`, `DecodedMessage`. +- Remove usage for `Partial` with `Message` as `Message`'s field are all optional. + +## [0.0.4] - 2022-11-18 + +### Added + +- Alpha version of `@waku/message-encryption`. + +[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.4...HEAD +[0.0.4]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.3...@waku/message-encryption@0.0.4 +[0.0.3]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.2...%40waku/message-encryption@0.0.3 +[0.0.2]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.1...%40waku/message-encryption@0.0.2 +[0.0.1]: https://github.com/status-im/js-waku/compare/a20b7809d61ff9a9732aba82b99bbe99f229b935...%40waku/message-encryption%400.0.2