You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/12/31 00:32:11 UTC

[commons-codec] branch release updated (1a30728 -> 7146c72)

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

ggregory pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/commons-codec.git.


    from 1a30728  [CODEC-278] Deprecate Charset constants in org.apache.commons.codec.Charsets in favor of java.nio.charset.StandardCharsets.
     add a387ac8  Test incremental hash with huge length array added to unprocessed bytes.
     add 33491ff  Overflow safe position counter in XXHash32.
     add bc82d82  Update the method to get the little-endian int.
     add 88e729e  Test for incremental XXHash32.
     add 08bfd44  Test XXHash32 with huge length array added to unprocessed bytes.
     add 4c5b1b7  Add reference file for XXHash32 using a small number of bytes.
     add b46a254  Exclude test resources file from rat check.
     add b542cf9  Merge remote-tracking branch 'origin/release'
     add 150278a  Prepare for 1.14.
     add 5fcf098  Some Checkstyle fixes.
     new 7146c72  Prepare for 1.14.

The 1 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:
 RELEASE-NOTES.txt                                  |  6 ++-
 pom.xml                                            |  3 +-
 src/changes/changes.xml                            |  2 +-
 .../java/org/apache/commons/codec/Charsets.java    | 48 +++++++++---------
 .../org/apache/commons/codec/binary/Base32.java    | 12 ++---
 .../commons/codec/binary/Base32InputStream.java    |  6 +--
 .../commons/codec/binary/Base32OutputStream.java   |  6 +--
 .../codec/binary/BaseNCodecInputStream.java        |  4 +-
 .../codec/binary/BaseNCodecOutputStream.java       |  6 +--
 .../apache/commons/codec/digest/MurmurHash3.java   |  1 +
 .../org/apache/commons/codec/digest/XXHash32.java  | 49 +++++++++---------
 .../commons/codec/digest/MurmurHash3Test.java      | 34 +++++++++++++
 .../commons/codec/digest/XXHash32OverflowTest.java | 59 ++++++++++++++++++++++
 .../apache/commons/codec/digest/XXHash32Test.java  | 20 ++++++++
 src/test/resources/small.bin                       |  1 +
 15 files changed, 190 insertions(+), 67 deletions(-)
 create mode 100644 src/test/java/org/apache/commons/codec/digest/XXHash32OverflowTest.java
 create mode 100644 src/test/resources/small.bin


[commons-codec] 01/01: Prepare for 1.14.

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

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit 7146c720770171fa4aba5a44abbd4b8cdb7b8e25
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 30 19:32:07 2019 -0500

    Prepare for 1.14.
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index e8b30ea..7c95625 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -42,7 +42,7 @@ The <action> type attribute can be add,update,fix,remove.
   </properties>
   <body>
 
-    <release version="1.14" date="2019-12-29" description="Feature and fix release.">
+    <release version="1.14" date="2019-12-30" description="Feature and fix release.">
       <action issue="CODEC-261" dev="aherbert" type="fix">Hex: Allow encoding read-only ByteBuffer.</action>
       <action issue="CODEC-259" dev="aherbert" type="fix">Hex: Only use an available ByteBuffer backing array if the length equals the remaining byte count.</action>
       <action issue="CODEC-268" dev="aherbert" type="update">MurmurHash3: Deprecate hash64 methods and hash methods accepting a String that use the default encoding.</action>