This is an automated email from the ASF dual-hosted git repository.
twolf pushed a change to branch
dependabot/maven/org.apache.maven-maven-archiver-3.6.4
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
discard 5758b17b7 Bump org.apache.maven:maven-archiver from 3.6.3 to 3.6.4
add 2ec336a4a Fix javadoc warnings
add ebbfaf935 [releng] SCM tag for development versions
add 445ef7e8f [maven-release-plugin] prepare release sshd-2.16.0
add 96661c044 [maven-release-plugin] prepare for next development iteration
add e472eb6e4 Skip container tests if docker is not available
add 70b55faaa GH-807: Handle "verified" flag for sk-* keys
add a7f8147b5 Avoid calling newly deprecated constructor of sk-* keys
add b05e5ab42 Fix matching sk-* keys against authorized_keys
add 80fc45f0a Fix server-side authentication with sk-* keys with flags
add 02a586557 Update CHANGES
add d63179ebe Fix typo in CHANGES.md
add 59d9961c8 Fix typos in comments in UserAuthPublicKeySkTest
add 084e69b81 Fix equals() & hashCode() for sk-* keys
add 362758d2d SignatureEd25519: fix vulnerability in
net.i2p.crypto:eddsa:0.3.0
add 55f262d62 Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to
4.10.1 (#805)
add 92e5a5eb0 Bump org.assertj:assertj-core from 3.27.3 to 3.27.4 (#798)
add 19e3fd3b5 Bump com.github.mwiede:jsch from 2.27.2 to 2.27.3 (#816)
add 45aae077b Bump org.apache.maven:maven-archiver from 3.6.3 to 3.6.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 (5758b17b7)
\
N -- N -- N
refs/heads/dependabot/maven/org.apache.maven-maven-archiver-3.6.4 (45aae077b)
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:
CHANGES.md | 6 +
assembly/pom.xml | 2 +-
pom.xml | 10 +-
sshd-benchmarks/pom.xml | 2 +-
sshd-cli/pom.xml | 2 +-
sshd-common/pom.xml | 2 +-
.../auth/password/PasswordIdentityProvider.java | 2 +-
.../apache/sshd/common/config/keys/KeyUtils.java | 32 +---
.../keys/impl/SkECDSAPublicKeyEntryDecoder.java | 6 +-
.../keys/impl/SkED25519PublicKeyEntryDecoder.java | 7 +-
.../config/keys/u2f/SecurityKeyPublicKey.java | 3 +
.../common/config/keys/u2f/SkED25519PublicKey.java | 27 ++-
.../common/config/keys/u2f/SkEcdsaPublicKey.java | 27 ++-
.../signature/AbstractSecurityKeySignature.java | 17 +-
.../org/apache/sshd/common/util/GenericUtils.java | 4 -
.../java/org/apache/sshd/common/util/OsUtils.java | 14 +-
.../util/buffer/keys/BufferPublicKeyParser.java | 4 +-
.../buffer/keys/SkECBufferPublicKeyParser.java | 2 +-
.../keys/SkED25519BufferPublicKeyParser.java | 2 +-
.../apache/sshd/common/util/io/der/DERWriter.java | 4 +-
.../sshd/common/util/security/SecurityUtils.java | 4 +-
.../util/security/eddsa/SignatureEd25519.java | 39 ++++
.../apache/sshd/util/test/ContainerTestCase.java | 30 ---
sshd-contrib/pom.xml | 4 +-
sshd-core/pom.xml | 23 +--
.../sshd/client/session/ClientProxyConnector.java | 2 +-
.../org/apache/sshd/common/session/Session.java | 4 +-
...AuthorizedKeyEntriesPublickeyAuthenticator.java | 3 +-
.../sshd/server/auth/pubkey/UserAuthPublicKey.java | 23 ++-
.../sshd/server/session/ServerProxyAcceptor.java | 2 +-
.../auth/pubkey/HostBoundPubKeyAuthTest.java | 4 +-
.../ClientOpenSSHCertificatesTest.java | 4 +-
.../sshd/common/cipher/OpenSshCipherTest.java | 6 +-
.../forward/PortForwardingWithOpenSshTest.java | 10 +-
.../apache/sshd/common/kex/OpenSshMlKemTest.java | 4 +-
.../extension/StrictKexInteroperabilityTest.java | 6 +-
...orizedKeyEntriesPublickeyAuthenticatorTest.java | 71 +++++++
.../sshd/server/auth/UserAuthPublicKeySkTest.java | 206 +++++++++++++++++++++
sshd-git/pom.xml | 9 +-
sshd-ldap/pom.xml | 11 +-
.../sshd/ldap/LdapPasswordAuthenticator.java | 6 +-
sshd-mina/pom.xml | 11 +-
sshd-netty/pom.xml | 9 +-
sshd-openpgp/pom.xml | 2 +-
sshd-osgi/pom.xml | 2 +-
sshd-putty/pom.xml | 2 +-
sshd-scp/pom.xml | 30 +--
.../org/apache/sshd/scp/client/ScpCharsetTest.java | 7 +-
sshd-sftp/pom.xml | 9 +-
.../org/apache/sshd/sftp/client/SftpClient.java | 4 +-
.../sftp/client/extensions/SftpExtensionsTest.java | 7 +-
sshd-spring-sftp/pom.xml | 9 +-
52 files changed, 485 insertions(+), 253 deletions(-)
delete mode 100644
sshd-common/src/test/java/org/apache/sshd/util/test/ContainerTestCase.java
create mode 100644
sshd-core/src/test/java/org/apache/sshd/server/auth/AuthorizedKeyEntriesPublickeyAuthenticatorTest.java
create mode 100644
sshd-core/src/test/java/org/apache/sshd/server/auth/UserAuthPublicKeySkTest.java