Accepting request 810801 from home:pmonrealgonzalez:branches:Java:packages
- Update to version 1.14 * Release 1.14 - 2019-12-30 - Fix: Hex: Allow encoding read-only ByteBuffer. - Fix: Hex: Only use an available ByteBuffer backing array if the length equals the remaining byte count. - Update: MurmurHash3: Deprecate hash64 methods and hash methods accepting a String that use the default encoding. - Fix: BaseNCodec to expand buffer using overflow conscious code. - Fix: Base32/64: Fixed decoding check that all the final trailing bits to discard are zero. - Add: Add MurmurHash3.hash128x64 methods to fix sign extension error during seeding in hash128 methods. - Add: Add MurmurHash3.hash32x86 methods and IncrementalHash32x86 to fix sign extension error in hash32 methods. - Fix: Allow repeat calls to MurmurHash3.IncrementalHash32.end() to generate the same value. - Add: Add RandomAccessFile digest methods #31. - Add: Add Path APIs to org.apache.commons.codec.digest.DigestUtils similar to File APIs. - Add: Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9 and up. - Add: Add missing note in javadoc when sign extension error is present #34. - Fix: Reliance on default encoding in MurmurHash2 and MurmurHash3. - Update: Don't reload standard Charsets in org.apache.commons.codec.Charsets. - Update: Deprecate Charset constants in org.apache.commons.codec.Charsets in favor of java.nio.charset.StandardCharsets. * Release 1.13 - 2019-07-20 - Fix: ColognePhonetic handles x incorrectly. - Fix: ColognePhonetic does not treat the letter H correctly. - Fix: Reject any decode request for a value that is impossible to encode to for Base32/Base64 rather than blindly decoding. OBS-URL: https://build.opensuse.org/request/show/810801 OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-commons-codec?expand=0&rev=45
This commit is contained in:
parent
8582d7d7ec
commit
db2be85193
@ -10,7 +10,7 @@
|
||||
|
||||
<property name="project.groupId" value="commons-codec"/>
|
||||
<property name="project.artifactId" value="commons-codec"/>
|
||||
<property name="project.version" value="1.11"/>
|
||||
<property name="project.version" value="1.14"/>
|
||||
<property name="project.name" value="Apache Commons Codec"/>
|
||||
<property name="project.description" value="The Apache Commons Codec package
|
||||
contains simple encoder and decoders for various formats such as Base64 and Hexadecimal.
|
||||
|
@ -1,3 +1,49 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 2 08:57:59 UTC 2020 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
|
||||
|
||||
- Update to version 1.14
|
||||
* Release 1.14 - 2019-12-30
|
||||
- Fix: Hex: Allow encoding read-only ByteBuffer.
|
||||
- Fix: Hex: Only use an available ByteBuffer backing array if
|
||||
the length equals the remaining byte count.
|
||||
- Update: MurmurHash3: Deprecate hash64 methods and hash methods
|
||||
accepting a String that use the default encoding.
|
||||
- Fix: BaseNCodec to expand buffer using overflow conscious code.
|
||||
- Fix: Base32/64: Fixed decoding check that all the final trailing
|
||||
bits to discard are zero.
|
||||
- Add: Add MurmurHash3.hash128x64 methods to fix sign extension error
|
||||
during seeding in hash128 methods.
|
||||
- Add: Add MurmurHash3.hash32x86 methods and IncrementalHash32x86 to
|
||||
fix sign extension error in hash32 methods.
|
||||
- Fix: Allow repeat calls to MurmurHash3.IncrementalHash32.end() to
|
||||
generate the same value.
|
||||
- Add: Add RandomAccessFile digest methods #31.
|
||||
- Add: Add Path APIs to org.apache.commons.codec.digest.DigestUtils
|
||||
similar to File APIs.
|
||||
- Add: Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9 and up.
|
||||
- Add: Add missing note in javadoc when sign extension error is present #34.
|
||||
- Fix: Reliance on default encoding in MurmurHash2 and MurmurHash3.
|
||||
- Update: Don't reload standard Charsets in org.apache.commons.codec.Charsets.
|
||||
- Update: Deprecate Charset constants in org.apache.commons.codec.Charsets
|
||||
in favor of java.nio.charset.StandardCharsets.
|
||||
* Release 1.13 - 2019-07-20
|
||||
- Fix: ColognePhonetic handles x incorrectly.
|
||||
- Fix: ColognePhonetic does not treat the letter H correctly.
|
||||
- Fix: Reject any decode request for a value that is impossible to
|
||||
encode to for Base32/Base64 rather than blindly decoding.
|
||||
- Add: MurmurHash2 for 32-bit or 64-bit value.
|
||||
- Add: MurmurHash3 for 32-bit or 128-bit value.
|
||||
- Update: Broken direct java.nio.ByteBuffer support in
|
||||
org.apache.commons.codec.binary.Hex.
|
||||
* Release 1.12 - 2019-02-04
|
||||
- Fix: B64 salt generator: Random -> ThreadLocalRandom.
|
||||
- Fix: Wrong value calculated by Cologne Phonetic if a special character
|
||||
is placed between equal letters.
|
||||
- Update: Update from Java 6 to Java 7.
|
||||
- Add: Add Percent-Encoding Codec (described in RFC3986 and RFC7578).
|
||||
- Fix: ColognePhoneticTest.testIsEncodeEquals missing assertions.
|
||||
- Add: Add SHA-3 methods in DigestUtils.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 25 17:23:20 UTC 2019 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package apache-commons-codec
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2000-2010, JPackage Project
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -21,7 +21,7 @@
|
||||
%define short_name commons-%{base_name}
|
||||
%bcond_with tests
|
||||
Name: apache-commons-codec
|
||||
Version: 1.11
|
||||
Version: 1.14
|
||||
Release: 0
|
||||
Summary: Apache Commons Codec Package
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b32302f8369677b4fb1dd41b5815577e0f6c1996a22a9ead9e824c1dcc64b817
|
||||
size 369538
|
3
commons-codec-1.14-src.tar.gz
Normal file
3
commons-codec-1.14-src.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:094e7ba23ba9ea778ae4e884ec1f29cd133457156eaab26e4815cec99e02b987
|
||||
size 406760
|
Loading…
Reference in New Issue
Block a user