1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# News and Notifications by Version
This file lists noteworthy changes which may affect users of this project. More
detailed information is available in the rest of the documentation.
**NOTE:** Date stamps in the following entries are in YYYY/MM/DD format.
## v0.11.0 (2018/01/28)
### Fixes
* Upgrade gems required for development.
## v0.10.0 (2017/09/04)
### Fixes
* Avoid Ruby warnings for uninitialized attributes. (Tatsuya Sato)
## v0.9.0 (2016/12/18)
### Fixes
* Initialize DOSTime correctly when not given a struct to parse.
## v0.8.0 (2015/01/05)
### Fixes
* Avoid Ruby warnings. (Akira Matsuda)
## v0.7.0 (2014/08/18)
### Fixes
* Avoid corrupting the archive when storing entries that have multibyte names.
### Notes
* Ruby 1.8.6 support has been dropped.
* This may come back if demand warrants it.
* Switched to the MIT license.
* Now using minitest instead of mspec for tests.
## v0.6.0 (2013/03/24)
### Fixes
* Only define Zlib constants when they are not already defined.
* Fixes constant redefinition warnings under MRI 2.0.0-p0.
* Force Zlib::ZWriter and Zlib::ZReader #checksum methods to return nil for raw
streams.
* The behavior of the underlying Zlib::Deflate and Zlib::Inflate classes'
#adler methods appear inconsistent for raw streams and really aren't
necessary in this case anyway.
### Notes
* Broke backward compatibility with the behavior of Zlib::ZWriter#checksum and
Zlib::ZReader#checksum when working with raw streams.
* This should not affect direct users of Archive::Zip because the checksum
methods of those classes are never used.
## v0.5.0 (2012/03/01)
### Fixes
* Avoid timezone discrepancies in encryption tests.
* Moved the DOSTime class to the Archive namespace (Chris Schneider).
### Notes
* Broke backward compatibility of the DOSTime class.
## v0.4.0 (2011/08/29)
### Features
* Added Ruby 1.9 support.
* Simplified arguments for Archive::Zip.new.
* Archives cannot be directly opened for modification.
* Archive::Zip.archive can still emulate modifying an archive in place.
* Added a bunch of tests (many more still needed).
* Updated and simplified rake tasks.
* Created a standalone gemspec file.
### Fixes
* Fixed a potential data loss bug in Zlib::ZReader.
* Archives larger than the maximum Fixnum for the platform don't falsely raise a
"non-integer windows position given" error.
### Notes
* Broke backward compatibility for Archive::Zip.new.
* Wrapper class methods continue to work as before.
* Broke backward compatibility for Archive::Zip::ExtraField.
* Allows separate handling of extra fields in central and local records.
## v0.3.0 (2009/01/23)
* Made a significant performance improvement for the extraction of compressed
entries for performance on par with InfoZIP's unzip. Parsing archives with
many entries is still a bit subpar however.
## v0.2.0 (2008/08/06)
* Traditional (weak) encryption is now supported.
* Adding new encryption methods should be easier now.
* Fixed a bug where the compression codec for an entry loaded from an archive
was not being recorded.
* The _compression_codec_ attribute for Entry instances is now used instead of
the _codec_ attribute to access the compression codec of the entry.
## v0.1.1 (2008/07/11)
* Archive files are now closed when the Archive::Zip object is closed even when
no changes were made to the archive, a problem on Windows if you want to
delete the archive after extracting it within the same script.
## v0.1.0 (2008/07/10)
* Initial release.
* Archive creation and extraction is supported with only a few lines of code.
(See README)
* Archives can be updated "in place" or dumped out to other files or pipes.
* Files, symlinks, and directories are supported within archives.
* Unix permission/mode bits are supported.
* Unix user and group ownerships are supported.
* Unix last accessed and last modified times are supported.
* Entry extension (AKA extra field) implementations can be added on the fly.
* Unknown entry extension types are preserved during archive processing.
* Deflate and Store compression codecs are supported out of the box.
* More compression codecs can be added on the fly.
|