muhammara 3.5.0 → 3.6.0-beta.1
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/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/node_modules/fs-minipass/node_modules/minipass/README.md +728 -0
- package/node_modules/fs-minipass/node_modules/minipass/index.d.ts +155 -0
- package/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/node_modules/fs-minipass/node_modules/minipass/package.json +89 -0
- package/node_modules/fs-minipass/package.json +3 -1
- package/node_modules/minipass/index.d.ts +4 -12
- package/node_modules/minipass/index.js +33 -25
- package/node_modules/minipass/package.json +10 -12
- package/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/node_modules/minizlib/node_modules/minipass/README.md +728 -0
- package/node_modules/minizlib/node_modules/minipass/index.d.ts +155 -0
- package/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/node_modules/minizlib/node_modules/minipass/package.json +89 -0
- package/node_modules/minizlib/package.json +3 -1
- package/node_modules/tar/package.json +9 -9
- package/node_modules/yallist/package.json +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.6.0-beta.1] - 2022-12-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Pre builts for arm64 / musl architecture (M1 using alpine)
|
|
15
|
+
|
|
10
16
|
## [3.5.0] - 2022-12-07
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -332,7 +338,8 @@ with the following changes.
|
|
|
332
338
|
|
|
333
339
|
- Initial release
|
|
334
340
|
|
|
335
|
-
[unreleased]: https://github.com/julianhille/MuhammaraJS/compare/3.
|
|
341
|
+
[unreleased]: https://github.com/julianhille/MuhammaraJS/compare/3.6.0-beta.1...HEAD
|
|
342
|
+
[3.6.0-beta.1]: https://github.com/julianhille/MuhammaraJS/compare/3.5.0...3.6.0-beta.1
|
|
336
343
|
[3.5.0]: https://github.com/julianhille/MuhammaraJS/compare/3.4.0...3.5.0
|
|
337
344
|
[3.4.0]: https://github.com/julianhille/MuhammaraJS/compare/3.3.0...3.4.0
|
|
338
345
|
[3.3.0]: https://github.com/julianhille/MuhammaraJS/compare/3.2.0...3.3.0
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
The ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017-2022 npm, Inc., Isaac Z. Schlueter, and Contributors
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|