@waku/message-encryption 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,11 +2,63 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ### Dependencies
9
+
10
+ * The following workspace dependencies were updated
11
+ * dependencies
12
+ * @waku/core bumped from 0.0.11 to 0.0.12
13
+ * @waku/interfaces bumped from 0.0.8 to 0.0.9
14
+
15
+ ## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16)
16
+
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201))
21
+ * enable encoding of `meta` field
22
+ * expose pubsub topic in `IDecodedMessage`
23
+ * update message.proto: payload and content topic are always defined
24
+ * bump typescript
25
+
26
+ ### Features
27
+
28
+ * Enable encoding of `meta` field ([bd983ea](https://github.com/waku-org/js-waku/commit/bd983ea48ee73fda5a7137d5ef681965aeabb4a5))
29
+ * Export `Decoder`, `Encoder` and `DecodedMessage` types from root ([da1b18d](https://github.com/waku-org/js-waku/commit/da1b18d9956259af4cb2e6f7c1f06de52b6ec3ac)), closes [#1010](https://github.com/waku-org/js-waku/issues/1010)
30
+ * Expose pubsub topic in `IDecodedMessage` ([628ac50](https://github.com/waku-org/js-waku/commit/628ac50d7104ec3c1dff44db58077a85db6b6aa1)), closes [#1208](https://github.com/waku-org/js-waku/issues/1208)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Prettier and cspell ignore CHANGELOG ([#1235](https://github.com/waku-org/js-waku/issues/1235)) ([4d7b3e3](https://github.com/waku-org/js-waku/commit/4d7b3e39e6761afaf5d05a13cc4b3c23e15f9bd5))
36
+
37
+
38
+ ### Miscellaneous Chores
39
+
40
+ * Add exports map to @waku/utils ([#1201](https://github.com/waku-org/js-waku/issues/1201)) ([a30b2bd](https://github.com/waku-org/js-waku/commit/a30b2bd747dedeef69b46cfafb88898ba35d8f67))
41
+ * Bump typescript ([12d86e6](https://github.com/waku-org/js-waku/commit/12d86e6abcc68e27c39ca86b4f0dc2b68cdd6000))
42
+ * Update message.proto: payload and content topic are always defined ([5cf8ed2](https://github.com/waku-org/js-waku/commit/5cf8ed2030c9efbc4c4b66aa801827482c1e4249))
43
+
44
+
45
+ ### Dependencies
46
+
47
+ * The following workspace dependencies were updated
48
+ * dependencies
49
+ * @waku/core bumped from * to 0.0.11
50
+ * @waku/interfaces bumped from * to 0.0.8
51
+ * @waku/proto bumped from * to 0.0.3
52
+ * @waku/utils bumped from * to 0.0.2
53
+
8
54
  ## [Unreleased]
9
55
 
56
+ ### Changed
57
+
58
+ - `createEncoder` now take an object of type `EncoderOptions` instead of `contentTopic` and `ephemeral`
59
+ - For Ecies, `createEncoder` now take an object of type `EncoderOptions` instead of `contentTopic`, `ephemeral`, `publicKey` and `sigPrivKey`
60
+ - For Symmetric, `createEncoder` now take an object of type `EncoderOptions` instead of `contentTopic`, `ephemeral`, `symKey` and `sigPrivKey`
61
+
10
62
  ## [0.0.9] - 2023-01-25
11
63
 
12
64
  ### Fixed
package/bundle/ecies.js CHANGED
@@ -1 +1 @@
1
- export { D as DecodedMessage, b as Decoder, E as Encoder, d as createDecoder, c as createEncoder, g as generatePrivateKey, a as getPublicKey } from './index-fb7e6ca5.js';
1
+ export { b as createDecoder, c as createEncoder, g as generatePrivateKey, a as getPublicKey } from './index-a56f7af2.js';