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 2023/11/08 01:44:41 UTC

(commons-crypto) branch dependabot/maven/com.sun.xml.bind-jaxb-impl-4.0.4 updated (55c6ae9d -> 516dadb3)

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

github-bot pushed a change to branch dependabot/maven/com.sun.xml.bind-jaxb-impl-4.0.4
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


    omit 55c6ae9d Bump com.sun.xml.bind:jaxb-impl from 2.3.7 to 4.0.4
     add 4db14927 Clarifies Java platform requirement
     add 032c5e53 Clarifies Java platform requirement
     add c2865b7c Allow OpenSSL check to be skipped for Windows
     add 90ed1f30 Incorrect duplicate [skip ci]
     add 902745f9 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-crypto.git
     add 53c8c88e Not available under bash
     add 5ceb0000 bash shell changes the openssl library on Windows
     add 13c44eac Reorganise tests
     add ef82b39a No longer needed [skip ci]
     add c0a9499d Normalize test method names
     add 2bd9a51a Sort test members
     add f930e931 Make package private class final
     add d654a391 CRYPTO-172: Add support for Linux-riscv64 (#264)
     add bd224ab3 Move cross-build into separate action
     add 1a23cd85 Doc [skip ci]
     add d3786856 Added riscv64 support [skip ci]
     add aed0ea47 Add JNA support for OpenSSL3
     add 9e2fd17d Does not depend on JNA [skip ci]
     add 3a09ee31 Simplify native code by moving differences into macros (#266)
     add 53087dac Use actual size
     add 246e4438 Trying to find OpenSSL library
     add 6cffdeed Fix?
     add 4cc97b2e Sp
     add 14b60357 Contd
     add 4a36043d Try test
     add 6dda2c42 Indentation
     add ab048edf See if can get further
     add 3fca5d03 Try lib
     add 97014422 More details
     add e6e6f140 Does debug cause a fail?
     add e5e4b848 What's the difference?
     add 3394ad61 May not be supported [skip ci]
     add 9ab98925 Silence curl; replace wget with curl [skip ci]
     add 7395dba4 debug needs second param; provide more info
     add ae512354 Need to install curl ... [skip ci]
     add b14e40bd Tidy
     add 9df7f45e CRYPTO-167 - cannot use THROW to report !env
     add d9319164 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-crypto.git
     add d7ced409 PMD fails build for redundant final qualifier
     add 191851be Also show platform property
     add c3750c59 Oops, GetLastError returns a DWORD
     add 950bf175 Centralise error reporting
     add e51a9259 CRYPTO-174: Allow override of SSL library name for Windows (#267)
     add a615f2e3 Windows needs different property names
     add 9e70ff0b Try to trace Windows crash
     add 9e45823d Revert "Try to trace Windows crash"
     add 6eac7f84 Revert "Windows needs different property names"
     add 6feb07d6 Revert "CRYPTO-174: Allow override of SSL library name for Windows (#267)"
     add 085efe05 CRYPTO-174: Allow override of SSL library name (#269)
     add ce098a49 Try Windows test no override
     add 89c357d6 Allow separate testing of JNI/JNA
     add 516dadb3 Bump com.sun.xml.bind:jaxb-impl from 2.3.7 to 4.0.4

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   (55c6ae9d)
            \
             N -- N -- N   refs/heads/dependabot/maven/com.sun.xml.bind-jaxb-impl-4.0.4 (516dadb3)

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                        |  66 ++++++------
 .github/workflows/maven_adhoc.yml                  |  97 ++++++++++--------
 .github/workflows/maven_crossbuild.yml             |  52 ++++++++++
 Makefile                                           |   4 +
 Makefile.common                                    |  12 ++-
 RELEASE-NOTES.txt                                  |   1 +
 pom.xml                                            |  45 +++++++-
 src/changes/changes.xml                            |   6 +-
 src/docker/Dockerfile                              |   8 +-
 src/docker/Dockerfile.aarch64                      |  38 +++++++
 src/docker/Dockerfile.riscv64                      |  38 +++++++
 src/docker/build.sh                                |   5 +-
 src/docker/docker-compose.yaml                     |  26 ++++-
 .../java/org/apache/commons/crypto/Crypto.java     |   8 +-
 .../apache/commons/crypto/NativeCodeLoader.java    |  12 ++-
 .../apache/commons/crypto/cipher/JceCipher.java    |   4 +-
 .../commons/crypto/jna/OpenSsl20XNativeJna.java    |   1 +
 ...l11XNativeJna.java => OpenSsl30XNativeJna.java} |   6 +-
 .../org/apache/commons/crypto/jna/OpenSslJna.java  |   4 +
 .../commons/crypto/jna/OpenSslNativeJna.java       |  16 +--
 .../org/apache/commons/crypto/utils/Utils.java     |  15 ++-
 .../org/apache/commons/crypto/DynamicLoader.c      |  38 +++++--
 .../org/apache/commons/crypto/OpenSslInfoNative.c  |  29 +-----
 .../apache/commons/crypto/cipher/OpenSslNative.c   |  52 +---------
 .../commons/crypto/org_apache_commons_crypto.h     |  24 +++--
 .../crypto/random/OpenSslCryptoRandomNative.c      |  39 +------
 src/site/xdoc/download_crypto.xml                  |   2 +-
 .../java/org/apache/commons/crypto/CryptoTest.java |   4 +-
 .../commons/crypto/cipher/AbstractCipherTest.java  | 114 ++++++++++-----------
 .../apache/commons/crypto/jna/OpenSslJnaTest.java  |   4 +-
 .../jna/PositionedCryptoInputStreamJnaTest.java    |  10 +-
 .../commons/crypto/random/FailingRandom.java       |   2 +-
 .../apache/commons/crypto/random/NoopRandom.java   |   2 +-
 .../stream/PositionedCryptoInputStreamTest.java    |  22 ++--
 34 files changed, 486 insertions(+), 320 deletions(-)
 create mode 100644 .github/workflows/maven_crossbuild.yml
 create mode 100644 src/docker/Dockerfile.aarch64
 create mode 100644 src/docker/Dockerfile.riscv64
 copy src/main/java/org/apache/commons/crypto/jna/{OpenSsl11XNativeJna.java => OpenSsl30XNativeJna.java} (97%)