Author: bodewig Date: Thu Oct 9 12:00:48 2014 New Revision: 1630377 URL: http://svn.apache.org/r1630377 Log: moving forward
Modified: commons/proper/compress/trunk/ (props changed) commons/proper/compress/trunk/RELEASE-NOTES.txt commons/proper/compress/trunk/doap_compress.rdf commons/proper/compress/trunk/pom.xml commons/proper/compress/trunk/src/changes/changes.xml commons/proper/compress/trunk/src/site/site.xml commons/proper/compress/trunk/src/site/xdoc/download_compress.xml commons/proper/compress/trunk/src/site/xdoc/index.xml Propchange: commons/proper/compress/trunk/ ------------------------------------------------------------------------------ Merged /commons/proper/compress/tags/COMPRESS-1.9-RC1:r1629571-1630309 Merged /commons/proper/compress/tags/COMPRESS-1.9:r1630310-1630311 Modified: commons/proper/compress/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/RELEASE-NOTES.txt?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/compress/trunk/RELEASE-NOTES.txt Thu Oct 9 12:00:48 2014 @@ -1,13 +1,48 @@ - Apache Apache Commons Compress 1.8.1 RELEASE NOTES + Apache Apache Commons Compress RELEASE NOTES Apache Commons Compress software defines an API for working with compression and archive formats. These include: bzip2, gzip, pack200, -lzma, xz, Snappy, traditional Unix Compress and ar, cpio, jar, tar, -zip, dump, 7z, arj. +lzma, xz, Snappy, traditional Unix Compress, DEFLATE and ar, cpio, +jar, tar, zip, dump, 7z, arj. -Release 1.8.1 +Release 1.9 +----------- -Changes in this version include: +New features: +o Added support for DEFLATE streams without any gzip framing. + Issue: COMPRESS-263. + Thanks to Matthias Stevens. + +Fixed Bugs: +o When reading 7z files unknown file properties and properties of type + kDummy are now ignored. + Issue: COMPRESS-287. +o Expanding 7z archives using LZMA compression could cause an + EOFException. + Issue: COMPRESS-286. +o Long-Name and -link or PAX-header entries in TAR archives always had + the current time as last modfication time, creating archives that + are different at the byte level each time an archive was built. + Issue: COMPRESS-289. + Thanks to Bob Robertson. + +Changes: +o Checking for XZ for Java may be expensive. The result will now be + cached outside of an OSGi environment. You can use the new + XZUtils#setCacheXZAvailability to overrride this default behavior. + Issue: COMPRESS-285. + +For complete information on Apache Commons Compress, including instructions +on how to submit bug reports, patches, or suggestions for improvement, +see the Apache Commons Compress website: + +http://commons.apache.org/compress/ + +Old Release Notes +================= + +Release 1.8.1 +------------- New features: o COMPRESS-272: CompressorStreamFactory can now auto-detect Unix compress @@ -36,15 +71,6 @@ o COMPRESS-280: Adapted TarArchiveInput Changes: o The dependency on org.tukaani:xz is now marked as optional. -For complete information on Apache Commons Compress, including instructions -on how to submit bug reports, patches, or suggestions for improvement, -see the Apache Commons Compress website: - -http://commons.apache.org/compress/ - -Old Release Notes -================= - Release 1.8 ----------- Modified: commons/proper/compress/trunk/doap_compress.rdf URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/doap_compress.rdf?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/doap_compress.rdf (original) +++ commons/proper/compress/trunk/doap_compress.rdf Thu Oct 9 12:00:48 2014 @@ -36,6 +36,13 @@ <release> <Version> <name>commons-compress</name> + <created>2014-10-09</created> + <revision>1.9</revision> + </Version> + </release> + <release> + <Version> + <name>commons-compress</name> <created>2014-05-14</created> <revision>1.8.1</revision> </Version> Modified: commons/proper/compress/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/pom.xml (original) +++ commons/proper/compress/trunk/pom.xml Thu Oct 9 12:00:48 2014 @@ -25,7 +25,7 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>1.9-SNAPSHOT</version> + <version>1.10-SNAPSHOT</version> <name>Apache Commons Compress</name> <url>http://commons.apache.org/proper/commons-compress/</url> <!-- The description is not indented to make it look better in the release notes --> Modified: commons/proper/compress/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/changes/changes.xml?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/src/changes/changes.xml (original) +++ commons/proper/compress/trunk/src/changes/changes.xml Thu Oct 9 12:00:48 2014 @@ -42,7 +42,11 @@ The <action> type attribute can be add,u <title>commons-compress</title> </properties> <body> - <release version="1.9" date="not released, yet" + <release version="1.10" date="not released, yet" + description="Release 1.10"> + </release> + + <release version="1.9" date="2014-10-09" description="Release 1.9"> <action type="add" date="2014-06-14" issue="COMPRESS-263" due-to="Matthias Stevens"> Modified: commons/proper/compress/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/site.xml?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/src/site/site.xml (original) +++ commons/proper/compress/trunk/src/site/site.xml Thu Oct 9 12:00:48 2014 @@ -35,6 +35,7 @@ <item name="Download" href="/download_compress.cgi"/> <item name="Security Reports" href="/security.html"/> <item name="Wiki" href="http://wiki.apache.org/commons/Compress"/> + <item name="Javadoc 1.9" href="javadocs/api-1.9/index.html"/> <item name="Javadoc 1.8.1" href="javadocs/api-1.8.1/index.html"/> <item name="Javadoc 1.8" href="javadocs/api-1.8/index.html"/> <item name="Javadoc 1.7" href="javadocs/api-1.7/index.html"/> Modified: commons/proper/compress/trunk/src/site/xdoc/download_compress.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/xdoc/download_compress.xml?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/src/site/xdoc/download_compress.xml (original) +++ commons/proper/compress/trunk/src/site/xdoc/download_compress.xml Thu Oct 9 12:00:48 2014 @@ -95,32 +95,32 @@ limitations under the License. </p> </subsection> </section> - <section name="Apache Commons Compress 1.8.1 "> + <section name="Apache Commons Compress 1.9 "> <subsection name="Binaries"> <table> <tr> - <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz">commons-compress-1.8.1-bin.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.9-bin.tar.gz">commons-compress-1.9-bin.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.tar.gz.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.8.1-bin.zip">commons-compress-1.8.1-bin.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.zip.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.9-bin.zip">commons-compress-1.9-bin.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.zip.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.zip.asc">pgp</a></td> </tr> </table> </subsection> <subsection name="Source"> <table> <tr> - <td><a href="[preferred]/commons/compress/source/commons-compress-1.8.1-src.tar.gz">commons-compress-1.8.1-src.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.tar.gz.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/source/commons-compress-1.9-src.tar.gz">commons-compress-1.9-src.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.tar.gz.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/compress/source/commons-compress-1.8.1-src.zip">commons-compress-1.8.1-src.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.zip.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/source/commons-compress-1.9-src.zip">commons-compress-1.9-src.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.zip.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.zip.asc">pgp</a></td> </tr> </table> </subsection> Modified: commons/proper/compress/trunk/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/xdoc/index.xml?rev=1630377&r1=1630376&r2=1630377&view=diff ============================================================================== --- commons/proper/compress/trunk/src/site/xdoc/index.xml (original) +++ commons/proper/compress/trunk/src/site/xdoc/index.xml Thu Oct 9 12:00:48 2014 @@ -51,24 +51,19 @@ </section> <section name="Status"> - <p>The current release is 1.8.1 and requires Java 5.</p> + <p>The current release is 1.9 and requires Java 5.</p> <p>Below we highlight some new features, for a full list of changes see the <a href="changes-report.html">Changes Report</a>.</p> - <subsection name="What's new in 1.8.1?"> - <p>Compress 1.8.1 is a bug fix release with fixes for the - tar, ar and snappy formats as well as the - <code>IOUtils</code> class. In addition - <code>CompressorStreamFactory</code> can now autodetect - the .Z compress format.</p> - </subsection> - <subsection name="What's coming in 1.9?"> + <subsection name="What's new in 1.9?"> <ul> <li>support for raw DEFLATE streams</li> </ul> </subsection> + <!--subsection name="What's coming in 1.10?"> + </subsection--> </section> <section name="Documentation"> @@ -86,14 +81,14 @@ by the <code>java.util.jar</code> package of the Java class library. XZ and lzma support is provided by the public domain <a href="http://tukaani.org/xz/java.html">XZ for - Java</a> library. As of Commons Compress 1.8.1 support for + Java</a> library. As of Commons Compress 1.9 support for the lzma, Z and Snappy formats is read-only.</p> <p>The ar, arj, cpio, dump, tar, 7z and zip formats are supported as archivers where the <a href="zip.html">zip</a> implementation provides capabilities that go beyond the features found in java.util.zip. As of Commons Compress - 1.8.1 support for the dump and arj formats is + 1.9 support for the dump and arj formats is read-only - 7z can read most compressed and encrypted archives but only write unencrypted ones. LZMA(2) support in 7z requires <a href="http://tukaani.org/xz/java.html">XZ for