Releases: kuba--/zip
Releases · kuba--/zip
zip 0.3.6
What's Changed
- Clang format by @kuba-- in https://github.com/kuba--/zip/pull/381
- Add fuzz assert by @kuba-- in https://github.com/kuba--/zip/pull/382
- "No ZIP64" wrapper by @kuba-- in https://github.com/kuba--/zip/pull/386
- Fix Arbitrary File Write Vulnerability by @kuba-- in https://github.com/kuba--/zip/pull/388
Full Changelog: v0.3.5...v0.3.6
zip 0.3.5
What's Changed
- Refine fuzz by @kuba-- in https://github.com/kuba--/zip/pull/378
- on push trigger fuzz by @kuba-- in https://github.com/kuba--/zip/pull/379
- Fix potential memory leak by @kuba-- in https://github.com/kuba--/zip/pull/380
Full Changelog: v0.3.4...v0.3.5
zip 0.3.4
What's Changed
- Fix incorrect order of argument to calloc by @AHSauge in https://github.com/kuba--/zip/pull/345
- Fix permissions to work with unzip by @7c00 in https://github.com/kuba--/zip/pull/350
- Support zip archives not starting at zero offset by @LemonBoy in https://github.com/kuba--/zip/pull/346
- suppress implicit function declaration errors by @Cryolitia in https://github.com/kuba--/zip/pull/352
- Added zip_entry_noallocreadwithoffset by @JCash in https://github.com/kuba--/zip/pull/359
- OSSFuzz Integration by @capuanob in https://github.com/kuba--/zip/pull/365
- Fuzz zip create by @MCLoebl in https://github.com/kuba--/zip/pull/367
- [src/zip.c] Cast bigger sizes to smaller interface-expected size to resolve warnings on MSVC by @SamuelMarks in https://github.com/kuba--/zip/pull/372
- Revert patch
miniz.hto guard against infinite loop bug (to fix https://github.com/kuba--/zip/issues/376) by @kuba-- in https://github.com/kuba--/zip/pull/377
New Contributors
- @AHSauge made their first contribution in https://github.com/kuba--/zip/pull/345
- @7c00 made their first contribution in https://github.com/kuba--/zip/pull/350
- @LemonBoy made their first contribution in https://github.com/kuba--/zip/pull/346
- @Cryolitia made their first contribution in https://github.com/kuba--/zip/pull/352
- @JCash made their first contribution in https://github.com/kuba--/zip/pull/359
- @iibclothier made their first contribution in https://github.com/kuba--/zip/pull/364
- @capuanob made their first contribution in https://github.com/kuba--/zip/pull/365
- @MCLoebl made their first contribution in https://github.com/kuba--/zip/pull/367
Note: v0.3.3 release was deleted, because of the bug: https://github.com/kuba--/zip/issues/376
Full Changelog: v0.3.2...v0.3.4
zip 0.3.2
What's Changed
- Replace strcpy with more secure strncpy by @prot0man in https://github.com/kuba--/zip/pull/331
- Fix to enable deletion of files in stream memory zips. by @prot0man in https://github.com/kuba--/zip/pull/332
- Update README.md with an example that uses the stream API to extract an in-memory archive by @bytesiz3d in https://github.com/kuba--/zip/pull/336
- Open archive from C stream (FILE *) by @kuba-- in https://github.com/kuba--/zip/pull/338
- Keep original entry name (if open in reading mode) by @kuba-- in https://github.com/kuba--/zip/pull/341
- Include lua by @gynt in https://github.com/kuba--/zip/pull/343
- Try to fix #123 by @kuba-- in https://github.com/kuba--/zip/pull/344
New Contributors
- @prot0man made their first contribution in https://github.com/kuba--/zip/pull/331
- @bytesiz3d made their first contribution in https://github.com/kuba--/zip/pull/336
- @gynt made their first contribution in https://github.com/kuba--/zip/pull/343
Full Changelog: v0.3.1...v0.3.2
zip 0.3.1
What's Changed
- offset api by @kuba-- in https://github.com/kuba--/zip/pull/326
- for windows ZIP_ENABLE_SHARABLE_FILE_OPEN by @appledragon in https://github.com/kuba--/zip/pull/328
Full Changelog: v0.3.0...v0.3.1
zip 0.3.0
What's Changed
- Remove language identifiers and broken links by @Jay-o-Way in https://github.com/kuba--/zip/pull/286
- Initialize dos_time and dos_date in _zip_entry_open by @guilhermelawless in https://github.com/kuba--/zip/pull/296
- Fixed typos by @polluks2 in https://github.com/kuba--/zip/pull/299
- Fix zip_close by @abrasat in https://github.com/kuba--/zip/pull/306
- Add zip_openwitherror and zip_stream_openwitherror by @kuba-- in https://github.com/kuba--/zip/pull/310
- Delete by index by @kuba-- in https://github.com/kuba--/zip/pull/321
- Migrate to miniz v3.0.2 by @kuba-- in https://github.com/kuba--/zip/pull/323
New Contributors
- @Jay-o-Way made their first contribution in https://github.com/kuba--/zip/pull/286
- @guilhermelawless made their first contribution in https://github.com/kuba--/zip/pull/296
- @polluks2 made their first contribution in https://github.com/kuba--/zip/pull/299
- @abrasat made their first contribution in https://github.com/kuba--/zip/pull/306
- @thechampagne made their first contribution in https://github.com/kuba--/zip/pull/312
Full Changelog: v0.2.6...v0.3.0
zip 0.2.6
What's Changed
- Fix clang build error on Windows by @exactly-one-kas in https://github.com/kuba--/zip/pull/280
- Replace MAX_PATH by MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE by @kuba-- in https://github.com/kuba--/zip/pull/282
New Contributors
- @exactly-one-kas made their first contribution in https://github.com/kuba--/zip/pull/280
Full Changelog: v0.2.5...v0.2.6
zip 0.2.5
What's Changed
- strncpy filename_size by @kuba-- in https://github.com/kuba--/zip/pull/273
- Allow opening read-only ZIP files by @thp in https://github.com/kuba--/zip/pull/278
New Contributors
- @thp made their first contribution in https://github.com/kuba--/zip/pull/278
Full Changelog: v0.2.4...v0.2.5
zip 0.2.4
What's Changed
- fix delete entries fail by @HellsCoder in https://github.com/kuba--/zip/pull/267
- Enable building tests only if the project is built as a standalone one by @zivke in https://github.com/kuba--/zip/pull/269
New Contributors
- @HellsCoder made their first contribution in https://github.com/kuba--/zip/pull/267
- @zivke made their first contribution in https://github.com/kuba--/zip/pull/269
Full Changelog: v0.2.3...v0.2.4
zip 0.2.3
What's Changed
- For support shareable file open on windows by @appledragon in https://github.com/kuba--/zip/pull/220
- MAX_PATH=1024 by @kuba-- in https://github.com/kuba--/zip/pull/222
- No freopen for append by @kuba-- in https://github.com/kuba--/zip/pull/223
- Permissions xattr. logic from zip info by @kuba-- in https://github.com/kuba--/zip/pull/227
- Update zip.c by @kuba-- in https://github.com/kuba--/zip/pull/230
- Fix compilation on MS-DOS/DJGPP by @kuba-- in https://github.com/kuba--/zip/pull/235
- Wrap mz_zip_time_t_to_dos_time() call by @Dialga in https://github.com/kuba--/zip/pull/236
- Add switch case for MZ_ZIP_TOTAL_ERRORS by @Dialga in https://github.com/kuba--/zip/pull/237
- Do not jump over initialisation by @prissi in https://github.com/kuba--/zip/pull/238
- Add ZIP_RAW_ENTRYNAME macro by @kuba-- in https://github.com/kuba--/zip/pull/240
- Forward changes we use in ogre by @paroj in https://github.com/kuba--/zip/pull/242
- Replace S_IWRITE by S_IWUSR by @kuba-- in https://github.com/kuba--/zip/pull/244
- Update zip.c by @kuba-- in https://github.com/kuba--/zip/pull/245
- Expose entry index as (s)size_t by @kuba-- in https://github.com/kuba--/zip/pull/249
- Fix mkdir for tcc on Windows by @Dialga in https://github.com/kuba--/zip/pull/261
- Fix ftruncate for tcc on Windows by @Dialga in https://github.com/kuba--/zip/pull/260
- Fix unzip big files by @kuba-- in https://github.com/kuba--/zip/pull/262
New Contributors
- @appledragon made their first contribution in https://github.com/kuba--/zip/pull/220
- @prissi made their first contribution in https://github.com/kuba--/zip/pull/238
- @paroj made their first contribution in https://github.com/kuba--/zip/pull/242
Full Changelog: v0.2.2...v0.2.3