Recent Releases of https://github.com/rubyzip/rubyzip
https://github.com/rubyzip/rubyzip - v3.2.2
Version 3.2.2
The 3.2.x line adds the ability to suppress extra fields when creating new Zip files.
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 4 months ago
https://github.com/rubyzip/rubyzip - v3.2.1
Version 3.2.1
The 3.2.x line adds the ability to suppress extra fields when creating new Zip files.
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 4 months ago
https://github.com/rubyzip/rubyzip - v3.2.0
Version 3.2.0
The 3.2.x line adds the ability to suppress extra fields when creating new Zip files.
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 5 months ago
https://github.com/rubyzip/rubyzip - v3.1.1
Version 3.1.1
The 3.1.x line adds AES decryption.
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 5 months ago
https://github.com/rubyzip/rubyzip - v3.1.0
Version 3.1.0
This version adds AES decryption.
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 6 months ago
https://github.com/rubyzip/rubyzip - v3.0.2
Version 3.0.2
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 6 months ago
https://github.com/rubyzip/rubyzip - v3.0.1
Version 3.0.1
⚠️ There are breaking changes in the 3.x series ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.
- Ruby
Published by hainesr 7 months ago
https://github.com/rubyzip/rubyzip - v3.0.0
Version 3.0.0
⚠️ There are breaking changes to the API in this release! ⚠️
Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.0.0.
- Ruby
Published by hainesr 7 months ago
https://github.com/rubyzip/rubyzip - v2.3.1
This is a "dummy" release to warn about breaking changes coming in version 3.0.
- Ruby
Published by hainesr over 4 years ago
https://github.com/rubyzip/rubyzip - v2.3.0
- Fix frozen string literal error #431
- Set
OutputStream.write_buffer's buffer to binmode #439 - Upgrade rubocop and fix various linting complaints #437 #440
Tooling:
- Add a
bin/consolescript for development #420 - Update rake requirement (development dependency only) to fix a security alert.
- Ruby
Published by jdleesmiller almost 6 years ago
https://github.com/rubyzip/rubyzip - v2.2.0
- Add support for decompression plugin gems #427
- Ruby
Published by jdleesmiller about 6 years ago
https://github.com/rubyzip/rubyzip - v2.1.0
- Fix (at least partially) the
restore_timesandrestore_permissionsoptions toZip::File.new#413- Previously, neither option did anything, regardless of what it was set to. We have therefore defaulted them to
falseto preserve the current behavior, for the time being. If you have explicitly set either totrue, it will now have an effect. - Fix handling of UniversalTime (
mtime,atime,ctime) fields. #421 - Previously,
Zip::Filedid not pass the options toZip::Entryin some cases. #423 - Note that
restore_timesin this release does nothing on Windows and only restoresmtime, notatimeorctime.
- Previously, neither option did anything, regardless of what it was set to. We have therefore defaulted them to
- Allow
Zip::File.opento take an options hash likeZip::File.new#418 - Always print warnings with
warn, instead of a mix ofputsandwarn#416 - Create temporary files in the system temporary directory instead of the directory of the zip file #411
- Drop unused
tmpdirrequirement #411
Tooling
- Move CI to xenial and include jruby on JDK11 #419
- Ruby
Published by jdleesmiller about 6 years ago
https://github.com/rubyzip/rubyzip - v2.0.0
Security
- Default the
validate_entry_sizesoption totrue, so that callers can trust an entry's reported size when usingextract#403- This option defaulted to
falsein 1.3.0 for backward compatibility, but it now defaults totrue. If you are using an older version of ruby and can't yet upgrade to 2.x, you can still use 1.3.0 and set the option totrue.
- This option defaulted to
Tooling / Documentation
- Remove test files from the gem to avoid problems with antivirus detections on the test files #405 / #384
- Drop support for unsupported ruby versions #406
- Ruby
Published by jdleesmiller over 6 years ago
https://github.com/rubyzip/rubyzip - v1.3.0
Security
- Add
validate_entry_sizesoption so that callers can trust an entry's reported size when usingextract#403- This option defaults to
falsefor backward compatibility in this release, but you are strongly encouraged to set it totrue. It will default totruein rubyzip 2.0.
- This option defaults to
New Feature
- Add
add_storedmethod to simplify adding entries without compression #366
Tooling / Documentation
- Add more gem metadata links #402
- Ruby
Published by jdleesmiller over 6 years ago
https://github.com/rubyzip/rubyzip - v1.2.4
- Do not rewrite zip files opened with
open_bufferthat have not changed #360
Tooling / Documentation
- Update
example_recursive.rbin README #397 - Hold CI at
trustyfor now, automatically pick the latest ruby patch version, use rbx-4 and hold jruby at 9.1 #399
- Ruby
Published by jdleesmiller over 6 years ago
https://github.com/rubyzip/rubyzip -
- Allow tilde in zip entry names #391 (fixes regression in 1.2.2 from #376)
- Support frozen string literals in more files #390
- Require
pathnameexplicitly #388 (fixes regression in 1.2.2 from #376)
Tooling / Documentation:
- CI updates #392, #394
- Add changelog entry that was missing for last release #387
- Comment cleanup #385
Since the GitHub release information for 1.2.2 is missing, I will also include it here:
1.2.2
NB: This release drops support for extracting symlinks, because there was no clear way to support this securely. See https://github.com/rubyzip/rubyzip/pull/376#issue-210954555 for details.
- Fix CVE-2018-1000544 #376 / #371
- Fix NoMethodError: undefined method `glob' #363
- Fix handling of stored files (i.e. files not using compression) with general purpose bit 3 set #358
- Fix
closeon StringIO-backed zip file #353 - Add
Zip.force_entry_names_encodingoption #340 - Update rubocop, apply auto-fixes, and fix regressions caused by said auto-fixes #332, #355
- Save temporary files to temporary directory (rather than current directory) #325
Tooling / Documentation:
- Turn off all terminal output in all tests #361
- Several CI updates #346, #347, #350, #352
- Several README improvements #345, #326, #321
- Ruby
Published by jdleesmiller almost 7 years ago
https://github.com/rubyzip/rubyzip -
- Add accessor to @internal_file_attributes #304
- Extended globbing #303
- README updates #283, #289
- Cleanup after tests #298, #306
- Fix permissions on new zip files #294, #300
- Fix examples #297
- Support cp932 encoding #308
- Fix Directory traversal vulnerability #315
- Allow open_buffer to work without a given block #314
- Ruby
Published by simonoff about 9 years ago
https://github.com/rubyzip/rubyzip -
- Don't enable JRuby objectspace #252
- Fixes an exception thrown when decoding some weird .zip files #248
- Use duck typing with IO methods #244
- Added error for empty (zero bit) zip file #242
- Accept StringIO in Zip.open_buffer #238
- Do something more expected with new file permissions #237
- Case insensitivity option for #find_entry #222
- Fixes in documentation and examples
- Ruby
Published by simonoff about 10 years ago
https://github.com/rubyzip/rubyzip -
- StringIO Support
- Zip64 Support
- Better jRuby Support
- Order of files in the archive can be sorted
- Other small fixes
- Ruby
Published by simonoff over 12 years ago
https://github.com/rubyzip/rubyzip -
Changed the API for gem. Now it can be used without require param in Gemfile.
Added read-only support for Zip64 files.
Added support for setting Unicode file names.
- Ruby
Published by simonoff over 12 years ago
https://github.com/rubyzip/rubyzip -
Beta release for new API.
- Ruby
Published by simonoff over 12 years ago