mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
5.6 KiB
5.6 KiB
Changelog
All notable changes to this project will be documented in this file.
The file is maintained by Release Please based on Conventional Commits specification, and this project adheres to Semantic Versioning.
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
- dependencies
Dependencies
- The following workspace dependencies were updated
- dependencies
- @waku/core bumped from 0.0.12 to 0.0.13
- @waku/interfaces bumped from 0.0.9 to 0.0.10
- @waku/proto bumped from 0.0.3 to 0.0.4
- @waku/utils bumped from 0.0.2 to 0.0.3
- dependencies
Dependencies
- The following workspace dependencies were updated
- dependencies
- @waku/core bumped from 0.0.14 to 0.0.15
- dependencies
0.0.10 (2023-03-16)
⚠ BREAKING CHANGES
- add exports map to @waku/utils (#1201)
- enable encoding of
metafield - expose pubsub topic in
IDecodedMessage - update message.proto: payload and content topic are always defined
- bump typescript
Features
- Enable encoding of
metafield (bd983ea) - Export
Decoder,EncoderandDecodedMessagetypes from root (da1b18d), closes #1010 - Expose pubsub topic in
IDecodedMessage(628ac50), closes #1208
Bug Fixes
Miscellaneous Chores
- Add exports map to @waku/utils (#1201) (a30b2bd)
- Bump typescript (12d86e6)
- Update message.proto: payload and content topic are always defined (5cf8ed2)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @waku/core bumped from * to 0.0.11
- @waku/interfaces bumped from * to 0.0.8
- @waku/proto bumped from * to 0.0.3
- @waku/utils bumped from * to 0.0.2
- dependencies
Unreleased
Changed
createEncodernow take an object of typeEncoderOptionsinstead ofcontentTopicandephemeral- For Ecies,
createEncodernow take an object of typeEncoderOptionsinstead ofcontentTopic,ephemeral,publicKeyandsigPrivKey - For Symmetric,
createEncodernow take an object of typeEncoderOptionsinstead ofcontentTopic,ephemeral,symKeyandsigPrivKey
0.0.9 - 2023-01-25
Fixed
- Moved
@chaiand@fast-checktodevDependencieslist.
0.0.8 - 2023-01-18
Changed
- Export
EncoderandDecodertypes. - Moved
@chaiand@fast-checktodependencieslist. - Added missing
@js-sha3and@debugtodependencieslist.
0.0.7 - 2022-12-19
Fixed
- Incorrect
protoimport.
0.0.6 - 2022-12-16
Fixed
- Type resolution when using
moduleResolution: node.
0.0.5 - 2022-12-15
Added
- Add
@multiformats/multiaddras peer dependency. - New
createEncoderandcreateDecoderfunctions so that the consumer does not deal with Encoder/Decoder classes.
Changed
Asymmetricrenamed toECIESto follow RFC terminology.- Split
ECIESandsymmetricpackages, all items are now export from two different paths:@waku/message-encryption/eciesand@waku/message-encryption/symmetric. - remove
asymandsymprefix from exported items as they are now differentiated from their export path:createEncoder,createDecoder,DecodedMessage. - Remove usage for
PartialwithMessageasMessage's field are all optional.
0.0.4 - 2022-11-18
Added
- Alpha version of
@waku/message-encryption.