Releases: gildas-lormeau/zip.js
Releases · gildas-lormeau/zip.js
v2.7.45
Fix rare issue where files would not be compressed if the compression codec included in zip.js was not used
v2.7.44
What's Changed
- fixed
ZipReaderStream
example in the documentation by @jespertheend in #510 - fixed typo by @AbdullahSohail-SE in #511
- fixed a minor issue when creating a zip file that led to the use of the zip64 format when it wasn't necessary, in the particular case where zip specification limits were reached (e.g. 65335 files in the archive) but not exceeded.
- the default value of
Entry#filename
andEntry#comment
will be used ifencodeText
/decodeText
functions returnundefined
values (see #507)
New Contributors
- @jespertheend made their first contribution in #510
- @AbdullahSohail-SE made their first contribution in #511
Full Changelog: v2.7.43...v2.7.44
v2.7.43
- Fixed an issue with zip files incorrectly detected as using zip64 under particular circumstances (e.g. when they contain exactly 65536 entries) when trying to read them
v2.7.42
- Added
decodeText
andencodeText
options to handle text encoding of filenames and comments when reading and writing a zip file respectively (see #507). - Fixed issue where creating a zip file without Deflate implementation could lead to a corrupted zip file (see #508).
v2.7.41
Added combineSizeEocd
option in HttpReader
(see https://gildas-lormeau.github.io/zip.js/api/interfaces/HttpOptions.html)
What's Changed
- Add explicit
preventHeadRequest
false check. by @bwbroersma in #499 - Add
combineSizeEocd
option to combine range size with eocd by @bwbroersma in #500 - Add preventHeadRequest=false and
combineSizeEocd
Typescript definitions. by @bwbroersma in #501 - Bump follow-redirects from 1.15.5 to 1.15.6 by @dependabot in #496
Full Changelog: v2.7.40...v2.7.41
v2.7.40
Fix regression introduced in version v2.7.38 leading to some streams being not closes internally
v2.7.38
- Fixed missing documentation
- Fixed ignored exceptions when closing
WritableStream
instances used internally
v2.7.37
v2.7.36
Fixed missing exported interfaces in the index.d.ts
file.
v2.7.35
What's Changed
- Added
ZipReaderStream
&ZipWriterStream
classes by @BlackAsLight in #488
New Contributors
- @BlackAsLight made their first contribution in #488
Full Changelog: v2.7.34...v2.7.35