muhammara 3.7.0 → 3.8.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 +12 -1
- package/muhammara.d.ts +1086 -0
- package/node_modules/minipass/README.md +253 -216
- package/node_modules/minipass/index.d.ts +9 -6
- package/node_modules/minipass/index.js +43 -12
- package/node_modules/minipass/index.mjs +697 -0
- package/node_modules/minipass/package.json +28 -8
- package/node_modules/readable-stream/README.md +1 -1
- package/node_modules/readable-stream/lib/_stream_duplex.js +20 -33
- package/node_modules/readable-stream/lib/_stream_passthrough.js +3 -5
- package/node_modules/readable-stream/lib/_stream_readable.js +213 -311
- package/node_modules/readable-stream/lib/_stream_transform.js +31 -43
- package/node_modules/readable-stream/lib/_stream_writable.js +135 -192
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +91 -113
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +135 -190
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +24 -34
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +12 -30
- package/node_modules/readable-stream/lib/internal/streams/from.js +15 -27
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +19 -30
- package/node_modules/readable-stream/lib/internal/streams/state.js +6 -11
- package/node_modules/readable-stream/package.json +5 -5
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.8.0] - 2023-03-01
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Electron 22.3, 23.0.0, 23.1.1
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Correctly includes types file in package
|
|
19
|
+
|
|
10
20
|
## [3.7.0] - 2023-02-09
|
|
11
21
|
|
|
12
22
|
### Added
|
|
@@ -358,7 +368,8 @@ with the following changes.
|
|
|
358
368
|
|
|
359
369
|
- Initial release
|
|
360
370
|
|
|
361
|
-
[unreleased]: https://github.com/julianhille/MuhammaraJS/compare/3.
|
|
371
|
+
[unreleased]: https://github.com/julianhille/MuhammaraJS/compare/3.8.0...HEAD
|
|
372
|
+
[3.8.0]: https://github.com/julianhille/MuhammaraJS/compare/3.7.0...3.8.0
|
|
362
373
|
[3.7.0]: https://github.com/julianhille/MuhammaraJS/compare/3.6.0...3.7.0
|
|
363
374
|
[3.6.0]: https://github.com/julianhille/MuhammaraJS/compare/3.5.0...3.6.0
|
|
364
375
|
[3.5.0]: https://github.com/julianhille/MuhammaraJS/compare/3.4.0...3.5.0
|