@waku/message-encryption 0.0.8 → 0.0.9
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 +8 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.0.9] - 2023-01-25
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- Moved `@chai` and `@fast-check` to `devDependencies` list.
|
15
|
+
|
10
16
|
## [0.0.8] - 2023-01-18
|
11
17
|
|
12
18
|
### Changed
|
@@ -48,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
48
54
|
|
49
55
|
- Alpha version of `@waku/message-encryption`.
|
50
56
|
|
51
|
-
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.
|
57
|
+
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.9...HEAD
|
58
|
+
[0.0.9]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.8...@waku/message-encryption@0.0.9
|
52
59
|
[0.0.8]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.7...@waku/message-encryption@0.0.8
|
53
60
|
[0.0.7]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.6...@waku/message-encryption@0.0.7
|
54
61
|
[0.0.6]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.5...@waku/message-encryption@0.0.6
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@waku/message-encryption",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.9",
|
4
4
|
"description": "Waku Message Payload Encryption",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"module": "./dist/index.js",
|
@@ -78,10 +78,8 @@
|
|
78
78
|
"@waku/core": "*",
|
79
79
|
"@waku/interfaces": "*",
|
80
80
|
"@waku/proto": "*",
|
81
|
-
"js-sha3": "^0.8.0",
|
82
|
-
"chai": "^4.3.6",
|
83
81
|
"debug": "^4.3.4",
|
84
|
-
"
|
82
|
+
"js-sha3": "^0.8.0"
|
85
83
|
},
|
86
84
|
"devDependencies": {
|
87
85
|
"@rollup/plugin-commonjs": "^22.0.0",
|
@@ -100,7 +98,9 @@
|
|
100
98
|
"prettier": "^2.1.1",
|
101
99
|
"rollup": "^2.75.0",
|
102
100
|
"ts-loader": "^9.4.1",
|
103
|
-
"typescript": "^4.6.3"
|
101
|
+
"typescript": "^4.6.3",
|
102
|
+
"chai": "^4.3.6",
|
103
|
+
"fast-check": "^2.14.0"
|
104
104
|
},
|
105
105
|
"typedoc": {
|
106
106
|
"entryPoint": "./src/index.ts"
|