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.
- package/CHANGELOG.md +32 -1
- package/muhammara.d.ts +261 -242
- package/muhammara.js +1 -1
- package/node_modules/concat-map/package.json +1 -1
- package/node_modules/console-control-strings/package.json +1 -1
- package/node_modules/delegates/package.json +1 -1
- package/node_modules/fs.realpath/package.json +1 -1
- package/node_modules/glob/common.js +2 -0
- package/node_modules/glob/glob.js +4 -1
- package/node_modules/glob/package.json +9 -6
- package/node_modules/glob/sync.js +6 -3
- package/node_modules/has-unicode/package.json +1 -1
- package/node_modules/inflight/package.json +1 -1
- package/node_modules/minimatch/package.json +5 -5
- 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/object-assign/package.json +1 -1
- package/node_modules/once/package.json +1 -1
- package/node_modules/path-is-absolute/package.json +1 -1
- package/node_modules/set-blocking/package.json +1 -1
- 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/ObjectByteWriterWithPosition.cpp +15 -7
- package/src/ObjectsContextDriver.cpp +1 -1
- 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.
|
|
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
|