You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/08 14:46:38 UTC

[commons-compress] branch master updated (c5039b5 -> 1f4ae17)

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git.


    from c5039b5  COMPRESS-485 record second part
     new b2026d3  COMPRESS-488 add "cannot skip over prefix" to the list of limitations
     new 1f4ae17  be more precise when describing the problem

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/site/xdoc/limitations.xml | 2 +-
 src/site/xdoc/zip.xml         | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)


[commons-compress] 02/02: be more precise when describing the problem

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git

commit 1f4ae17ba0753bd9fa1ec0c188c579b52ba19ba5
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Thu Aug 8 16:46:02 2019 +0200

    be more precise when describing the problem
---
 src/site/xdoc/limitations.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/xdoc/limitations.xml b/src/site/xdoc/limitations.xml
index 3e9a826..2adc4a6 100644
--- a/src/site/xdoc/limitations.xml
+++ b/src/site/xdoc/limitations.xml
@@ -204,7 +204,7 @@
          <li>no support for encryption or multi-volume archives</li>
          <li>In versions prior to Compress 1.6
          <code>ZipArchiveEntries</code> read from an archive will
-         contain non-zero millisecond values when using Java8 rather
+         contain non-zero millisecond values when using Java 8 or later rather
          than the expected two-second granularity.</li>
          <li>Compress 1.7 has a known bug where the very first entry
          of an archive will not be read correctly by


[commons-compress] 01/02: COMPRESS-488 add "cannot skip over prefix" to the list of limitations

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git

commit b2026d350372d091366b475c2d41d4292103ada7
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Thu Aug 8 16:45:31 2019 +0200

    COMPRESS-488 add "cannot skip over prefix" to the list of limitations
---
 src/site/xdoc/zip.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/site/xdoc/zip.xml b/src/site/xdoc/zip.xml
index 1629ef5..bad3a26 100644
--- a/src/site/xdoc/zip.xml
+++ b/src/site/xdoc/zip.xml
@@ -76,6 +76,11 @@
           <li>may return unknown sizes and CRC values for entries
           until the next entry has been reached if the archive uses
           the data descriptor feature (see below).</li>
+          <li>can not skip over bytes that occur before the real zip
+          stream. This means self-extracting zips as they are created
+          by some tools can not be read using
+          <code>ZipArchiveInputStream</code> at all. This also applies
+          to Chrome extension archives, for example.</li>
         </ul>
 
         <p><code>ZipArchiveInputStream</code> shares these limitations