Author: bodewig
Date: Wed Mar 12 22:40:31 2014
New Revision: 1576968

URL: http://svn.apache.org/r1576968
Log:
open for next iteration

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.8:r1576959
  Merged /commons/proper/compress/tags/COMPRESS-1.8-RC1:r1575664-1576958

Modified: commons/proper/compress/trunk/RELEASE-NOTES.txt
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/RELEASE-NOTES.txt?rev=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/compress/trunk/RELEASE-NOTES.txt Wed Mar 12 22:40:31 2014
@@ -1,7 +1,7 @@
-              Apache Commons Compress 1.7 RELEASE NOTES
+              Apache Commons Compress 1.8 RELEASE NOTES
 
 The Commons Compress team is pleased to announce the
-commons-compress-1.7 release!
+commons-compress-1.8 release!
 
 Apache Commons Compress software defines an API for working with
 compression and archive formats.  These include: bzip2, gzip, pack200,
@@ -11,37 +11,55 @@ zip, dump, 7z, arj.
 Changes in this version include:
 
 New features:
-o Read-Only support for Snappy compression.
-  Issue: COMPRESS-147. Thanks to BELUGA BEHR.
-o Read-Only support for .Z compressed files.
-  Issue: COMPRESS-243. Thanks to Damjan Jovanovic.
-o ZipFile and ZipArchiveInputStream now support reading entries
-  compressed using the SHRINKING method. Thanks to Damjan Jovanovic.
-o GzipCompressorOutputStream now supports setting the compression
-  level and the header metadata (filename, comment, modification time,
-  operating system and extra flags)
-  Issue: COMPRESS-250. Thanks to Emmanuel Bourg.
-o ZipFile and ZipArchiveInputStream now support reading entries
-  compressed using the IMPLODE method.
-  Issue: COMPRESS-115. Thanks to Emmanuel Bourg.
-o ZipFile and the 7z file classes now implement Closeable and can be
-  used in try-with-resources constructs.
+o GzipCompressorInputStream now provides access to the same
+  metadata that can be provided via GzipParameters when writing
+  a gzip stream.
+  Issue: COMPRESS-260. 
+o SevenZOutputFile now supports chaining multiple
+  compression/encryption/filter methods and passing options to
+  the methods.
+  Issue: COMPRESS-266. 
+o The (compression) method(s) can now be specified per entry in
+  SevenZOutputFile.
+  Issue: COMPRESS-261. 
+o SevenZArchiveEntry "knows" which method(s) have been used to
+  write it to the archive.
+  Issue: COMPRESS-258. 
+o The 7z package now supports the delta filter as method. 
+o The 7z package now supports BCJ filters for several platforms.
+  You will need a version >= 1.5 of XZ for Java to read archives
+  using BCJ, though.
+  Issue: COMPRESS-257. 
 
 Fixed Bugs:
-o SevenZOutputFile#closeArchiveEntry throws an exception when using
-  LZMA2 compression on Java8.  Issue: COMPRESS-241.
-o 7z reading of big 64bit values could be wrong.
-  Issue: COMPRESS-244. Thanks to Nico Kruber.
-o TarArchiveInputStream could fail to read an archive completely.
-  Issue: COMPRESS-245.
-o The time-setters in X5455_ExtendedTimestamp now set the
-  corresponding flags explicitly - i.e. they set the bit if the valus
-  is not-null and reset it otherwise.  This may cause
-  incompatibilities if you use setFlags to unset a bit and later set
-  the time to a non-null value - the flag will now be set.
-  Issue: COMPRESS-242.
-o SevenZOutputFile would create invalid archives if more than six
-  empty files or directories were included.  Issue: COMPRESS-252.
+o BZip2CompressorInputStream read fewer bytes than possible from
+  a truncated stream.
+  Issue: COMPRESS-253. 
+o SevenZFile failed claiming the dictionary was too large when
+  archives used LZMA compression for headers and content and
+  certain non-default dictionary sizes.
+  Issue: COMPRESS-253. 
+o CompressorStreamFactory.createCompressorInputStream with
+  explicit compression did not honor decompressConcatenated
+  Issue: COMPRESS-259. 
+o TarArchiveInputStream will now read archives created by tar
+  implementations that encode big numbers by not adding a
+  trailing NUL.
+  Issue: COMPRESS-262. 
+o ZipArchiveInputStream would return NUL bytes for the first 512
+  bytes of a STORED entry if it was the very first entry of the
+  archive.
+  Issue: COMPRESS-264. 
+o When writing PAX/POSIX headers for TAR entries with
+  backslashes or certain non-ASCII characters in their name
+  TarArchiveOutputStream could fail.
+  Issue: COMPRESS-265. 
+o ArchiveStreamFactory now throws a StreamingNotSupported - a
+  new subclass of ArchiveException - if it is asked to read from
+  or write to a stream and Commons Compress doesn't support
+  streaming for the format.  This currently only applies to the
+  7z format.
+  Issue: COMPRESS-267. 
 
 For complete information on Commons Compress, including instructions
 on how to submit bug reports, patches, or suggestions for improvement,

Modified: commons/proper/compress/trunk/doap_compress.rdf
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/doap_compress.rdf?rev=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/doap_compress.rdf (original)
+++ commons/proper/compress/trunk/doap_compress.rdf Wed Mar 12 22:40:31 2014
@@ -36,6 +36,13 @@
     <release>
       <Version>
         <name>commons-compress</name>
+        <created>2014-03-12</created>
+        <revision>1.8</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>commons-compress</name>
         <created>2014-01-20</created>
         <revision>1.7</revision>
       </Version>

Modified: commons/proper/compress/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/pom.xml (original)
+++ commons/proper/compress/trunk/pom.xml Wed Mar 12 22:40:31 2014
@@ -25,7 +25,7 @@
 
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-compress</artifactId>
-  <version>1.8-SNAPSHOT</version>
+  <version>1.9-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=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/changes/changes.xml (original)
+++ commons/proper/compress/trunk/src/changes/changes.xml Wed Mar 12 22:40:31 
2014
@@ -42,7 +42,10 @@ The <action> type attribute can be add,u
     <title>commons-compress</title>
   </properties>
   <body>
-    <release version="1.8" date="not released, yet"
+    <release version="1.9" date="not released yet"
+             description="Release 1.9">
+    </release>
+    <release version="1.8" date="2014-03-12"
              description="Release 1.8">
       <action issue="COMPRESS-253" type="fix" date="2014-01-20">
         BZip2CompressorInputStream read fewer bytes than possible from

Modified: commons/proper/compress/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/site.xml?rev=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/site/site.xml (original)
+++ commons/proper/compress/trunk/src/site/site.xml Wed Mar 12 22:40:31 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.8" href="javadocs/api-1.8/index.html"/>
       <item name="Javadoc 1.7" href="javadocs/api-1.7/index.html"/>
       <item name="Javadoc 1.6" href="javadocs/api-1.6/index.html"/>
       <item name="Javadoc SVN latest" href="apidocs/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=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/site/xdoc/download_compress.xml (original)
+++ commons/proper/compress/trunk/src/site/xdoc/download_compress.xml Wed Mar 
12 22:40:31 2014
@@ -95,32 +95,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Commons Compress 1.7 ">
+    <section name="Commons Compress 1.8 ">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/compress/binaries/commons-compress-1.7-bin.tar.gz">commons-compress-1.7-bin.tar.gz</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.7-bin.tar.gz.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.7-bin.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/compress/binaries/commons-compress-1.8-bin.tar.gz">commons-compress-1.8-bin.tar.gz</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8-bin.tar.gz.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8-bin.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/compress/binaries/commons-compress-1.7-bin.zip">commons-compress-1.7-bin.zip</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.7-bin.zip.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.7-bin.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/compress/binaries/commons-compress-1.8-bin.zip">commons-compress-1.8-bin.zip</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8-bin.zip.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8-bin.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/compress/source/commons-compress-1.7-src.tar.gz">commons-compress-1.7-src.tar.gz</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.7-src.tar.gz.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.7-src.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/compress/source/commons-compress-1.8-src.tar.gz">commons-compress-1.8-src.tar.gz</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.8-src.tar.gz.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.8-src.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/compress/source/commons-compress-1.7-src.zip">commons-compress-1.7-src.zip</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.7-src.zip.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.7-src.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/compress/source/commons-compress-1.8-src.zip">commons-compress-1.8-src.zip</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.8-src.zip.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/commons/compress/source/commons-compress-1.8-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=1576968&r1=1576967&r2=1576968&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/compress/trunk/src/site/xdoc/index.xml Wed Mar 12 22:40:31 
2014
@@ -51,20 +51,13 @@
         </section>
 
         <section name="Status">
-          <p>The current release is 1.7 and requires Java 5.</p>
+          <p>The current release is 1.8 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.7?">
-            <ul>
-              <li>Read-only support for the Snappy compression.</li>
-              <li>Read-only support for the traditional Unix compress
-              format used for <code>.Z</code> files.</li>
-            </ul>
-          </subsection>
-          <subsection name="What's coming in 1.8?">
+          <subsection name="What's new in 1.8?">
             <ul>
               <li>Bug fixes to the tar, zip and 7z packages</li>
               <li>Access to metadata when reading gzip streams</li>
@@ -73,6 +66,8 @@
               important filter methods used in 7z archives.</li>
             </ul>
           </subsection>
+          <!--subsection name="What's coming in 1.9?">
+          </subsection-->
         </section>
 
         <section name="Documentation">
@@ -90,14 +85,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.7 support for
+            Java</a> library.  As of Commons Compress 1.8 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.7 support for the dump and arj formats is
+            1.8 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


Reply via email to