muhammara 2.3.0 → 2.6.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +32 -1
  2. package/muhammara.d.ts +261 -242
  3. package/muhammara.js +1 -1
  4. package/node_modules/concat-map/package.json +1 -1
  5. package/node_modules/console-control-strings/package.json +1 -1
  6. package/node_modules/delegates/package.json +1 -1
  7. package/node_modules/fs.realpath/package.json +1 -1
  8. package/node_modules/glob/common.js +2 -0
  9. package/node_modules/glob/glob.js +4 -1
  10. package/node_modules/glob/package.json +9 -6
  11. package/node_modules/glob/sync.js +6 -3
  12. package/node_modules/has-unicode/package.json +1 -1
  13. package/node_modules/inflight/package.json +1 -1
  14. package/node_modules/minimatch/package.json +5 -5
  15. package/node_modules/minipass/LICENSE +1 -1
  16. package/node_modules/minipass/README.md +122 -7
  17. package/node_modules/minipass/index.d.ts +149 -0
  18. package/node_modules/minipass/index.js +191 -102
  19. package/node_modules/minipass/package.json +23 -7
  20. package/node_modules/object-assign/package.json +1 -1
  21. package/node_modules/once/package.json +1 -1
  22. package/node_modules/path-is-absolute/package.json +1 -1
  23. package/node_modules/set-blocking/package.json +1 -1
  24. package/node_modules/tr46/package.json +1 -1
  25. package/node_modules/util-deprecate/package.json +1 -1
  26. package/node_modules/webidl-conversions/package.json +1 -1
  27. package/node_modules/whatwg-url/package.json +1 -1
  28. package/node_modules/wrappy/package.json +1 -1
  29. package/package.json +2 -1
  30. package/src/DocumentCopyingContextDriver.cpp +9 -9
  31. package/src/ObjectByteWriterWithPosition.cpp +15 -7
  32. package/src/ObjectsContextDriver.cpp +1 -1
  33. package/src/deps/PDFWriter/PDFDocumentHandler.cpp +4 -0
package/CHANGELOG.md CHANGED
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.6.0] - 2022-06-30
11
+
12
+ ### Changed
13
+
14
+ - Fixes hard crash to exception when creating a stream with null object and calling createWriter with it
15
+ - Fixes missing buffer information for recrypt typescript definition
16
+ - Fixes missing options for append pdf pages
17
+ - Fixes NPE when stream is not readable in write stream object (PDFDocumentHandler)
18
+
19
+ ## [2.5.0] - 2022-06-23
20
+
21
+ ### Added
22
+
23
+ - Electron 17.2.0, 17.3, 17.4
24
+ - Typescript definitions
25
+ - Add test for recrypt with streams
26
+
27
+ ## [2.4.0] - 2022-06-08
28
+
29
+ ### Added
30
+
31
+ - Electron 18.1, 18.2, 18.3
32
+ - Electron 19.0
33
+
34
+ ### Changed
35
+
36
+ - Update npm dist url to the new url for electron builds
37
+
10
38
  ## [2.3.0] - 2022-05-04
11
39
 
12
40
  ### Added
@@ -213,7 +241,10 @@ with the following changes.
213
241
 
214
242
  * Initial release
215
243
 
216
- [Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/2.3.0...HEAD
244
+ [Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/2.6.0...HEAD
245
+ [2.6.0]: https://github.com/julianhille/MuhammaraJS/compare/2.5.0...2.6.0
246
+ [2.5.0]: https://github.com/julianhille/MuhammaraJS/compare/2.4.0...2.5.0
247
+ [2.4.0]: https://github.com/julianhille/MuhammaraJS/compare/2.3.0...2.4.0
217
248
  [2.3.0]: https://github.com/julianhille/MuhammaraJS/compare/2.2.0...2.3.0
218
249
  [2.2.0]: https://github.com/julianhille/MuhammaraJS/compare/2.1.0...2.2.0
219
250
  [2.1.0]: https://github.com/julianhille/MuhammaraJS/compare/2.0.0...2.1.0