You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gi...@apache.org on 2022/03/19 16:03:21 UTC

[commons-crypto] branch dependabot/maven/org.codehaus.mojo-taglist-maven-plugin-3.0.0 updated (b704448 -> 7f9f7f8)

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

github-bot pushed a change to branch dependabot/maven/org.codehaus.mojo-taglist-maven-plugin-3.0.0
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git.


    omit b704448  Bump taglist-maven-plugin from 2.4 to 3.0.0
     add e579f5c  Update NOTICE file for 2022.
     add 5644884  Comment empty block.
     add e58cc27  Javadoc.
     add d606eeb  Don't ignore native API return code, more to do.
     add 236d642  Use try-with-resources.
     add e06fefd  Use try-with-resources.
     add 3d987f2  Add GitHub build on macOS
     add ca0742c  Bump commons.japicmp.version from 0.15.3 to 0.15.7.
     add bc12dc5  Bump junit from 5.8.1 to 5.8.2
     add f94654b  Bump net.java.dev.jna:jna from 5.9.0 to 5.10.0
     add f7a3f9d  Port from pre-Java 8 javah tool to Java 8 and up javac with the -h option.
     add 1ad15f0  Build on Java 11 nad 17.
     add 3f5a0f0  Fail early when the resource is not found which makes SpotBugs happy on Java 17.
     add efe41a6  Weird changes to make tests not crash on Java 11 and 17.
     add 7f9f7f8  Bump taglist-maven-plugin from 2.4 to 3.0.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b704448)
            \
             N -- N -- N   refs/heads/dependabot/maven/org.codehaus.mojo-taglist-maven-plugin-3.0.0 (7f9f7f8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml                        |  57 +++++
 Makefile                                           |  20 +-
 Makefile.common                                    |   4 +-
 NOTICE.txt                                         |   2 +-
 pom.xml                                            |  32 ++-
 src/changes/changes.xml                            |   4 +-
 .../crypto/cipher/OpenSslGaloisCounterMode.java    |  23 +-
 .../commons/crypto/random/OpenSslCryptoRandom.java |  82 ++++---
 .../crypto/random/OpenSslCryptoRandomNative.java   |   1 +
 .../crypto/stream/PositionedCryptoInputStream.java |   4 +-
 .../org/apache/commons/crypto/utils/Utils.java     |  18 +-
 .../org/apache/commons/crypto/OpenSslInfoNative.c  |   2 +-
 .../apache/commons/crypto/cipher/OpenSslNative.c   |   2 +-
 .../crypto/random/OpenSslCryptoRandomNative.c      |  14 +-
 src/site/resources/pmd/pmd-ruleset.xml             |   1 -
 .../resources/spotbugs/spotbugs-exclude-filter.xml |  25 ++-
 .../commons/crypto/cipher/AbstractCipherTest.java  |  47 ++--
 .../commons/crypto/cipher/GcmCipherTest.java       | 241 ++++++++++-----------
 .../crypto/examples/CipherByteArrayExample.java    |  64 +++---
 .../crypto/stream/AbstractCipherStreamTest.java    |  18 +-
 .../stream/PositionedCryptoInputStreamTest.java    |  29 ++-
 21 files changed, 400 insertions(+), 290 deletions(-)
 create mode 100644 .github/workflows/maven.yml