muhammara 2.4.0 → 2.5.0
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 +10 -1
- package/muhammara.d.ts +258 -241
- package/muhammara.js +1 -1
- package/node_modules/minipass/LICENSE +1 -1
- package/node_modules/minipass/README.md +122 -7
- package/node_modules/minipass/index.d.ts +149 -0
- package/node_modules/minipass/index.js +191 -102
- package/node_modules/minipass/package.json +23 -7
- package/node_modules/tr46/package.json +1 -1
- package/node_modules/util-deprecate/package.json +1 -1
- package/node_modules/webidl-conversions/package.json +1 -1
- package/node_modules/whatwg-url/package.json +1 -1
- package/node_modules/wrappy/package.json +1 -1
- package/package.json +2 -1
- package/src/DocumentCopyingContextDriver.cpp +9 -9
- package/src/ObjectsContextDriver.cpp +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.5.0] - 2022-06-23
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Electron 17.2.0, 17.3, 17.4
|
|
15
|
+
- Typescript definitions
|
|
16
|
+
- Add test for recrypt with streams
|
|
17
|
+
|
|
10
18
|
## [2.4.0] - 2022-06-08
|
|
11
19
|
|
|
12
20
|
### Added
|
|
@@ -224,7 +232,8 @@ with the following changes.
|
|
|
224
232
|
|
|
225
233
|
* Initial release
|
|
226
234
|
|
|
227
|
-
[Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/2.
|
|
235
|
+
[Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/2.5.0...HEAD
|
|
236
|
+
[2.5.0]: https://github.com/julianhille/MuhammaraJS/compare/2.4.0...2.5.0
|
|
228
237
|
[2.4.0]: https://github.com/julianhille/MuhammaraJS/compare/2.3.0...2.4.0
|
|
229
238
|
[2.3.0]: https://github.com/julianhille/MuhammaraJS/compare/2.2.0...2.3.0
|
|
230
239
|
[2.2.0]: https://github.com/julianhille/MuhammaraJS/compare/2.1.0...2.2.0
|