This is an automated email from the ASF dual-hosted git repository.
tomaswolf pushed a change to branch dev_3.0
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
from 20c2f4f43 Bump github action versions
add ce59e814b [maven-release-plugin] prepare for next development iteration
add 1ed2d7bec NOTICE.txt: update copyright year
add 670446331 mvnw: upgrade maven
add 961541f08 Bump github action versions
add 4dd93b937 Mention security fix
add 0f35c8201 Limit the size of SSH packets after decompression
add 708239eac Update link to .asf.yaml documentation
add f463789ce Preserve security key signature blobs
add 206f54b37 Integration test for SK keys
add 333c3c04b Fix server-side user certificate handling
add 59cad03db Update CHANGES.md
add 5b9d431f3 GH-899: Fix ProcessShellFactory
add d42fb8424 sshd-git: improve handling of repository paths
add 384de9e3a Update CHANGES.md
add ab3672f03 SCP: validate filenames
add 400626e1a Update CHANGES.md
add a792e0892 SCP: escape newlines in file names on sending
add 3f036c581 Restrict remote execution of git commands
add 3a93226cb UTF8 fix in NOTICE-bin.txt
add e94075277 Fix copy-paste error in a test
add 942554a9d Merge branch 'master' into dev_3.0
add 454d50c39 Avoid potential race at end of proxy protocol
add 8caed36ab Bump dependency to org.apache.mina:mina-core
add acf81919e Merge branch 'master' into dev_3.0
add e3f9c73ca SkPubKeyAuthTest: pin docker image version
add 49e4408d8 Prepare release documentation
add e2926a279 [maven-release-plugin] prepare release sshd-2.19.0
add c2e9fa305 [maven-release-plugin] prepare for next development iteration
add 8a86e32b2 Post-release documentation updates
add 821787d7e Merge branch 'master' into dev_3.0
add 460800e34 Prepare release documentation
add ad361b2e8 [maven-release-plugin] prepare release sshd-3.0.0-M5
new 8456386dc [maven-release-plugin] prepare for next development iteration
new e9be58e88 Bump API comparison baseline to 2.19.0
The 2 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:
.asf.yaml | 2 +-
.github/workflows/master-build.yml | 6 +-
CHANGES.md | 6 +
NOTICE-bin.txt | 2 +-
docs/changes/2.18.0.md | 2 +-
docs/changes/2.19.0.md | 48 ++++
docs/changes/{3.0.0-M4.md => 3.0.0-M5.md} | 7 +-
docs/changes/version2.md | 2 +
docs/server-setup.md | 6 +-
pom.xml | 8 +-
.../common/config/keys/OpenSshCertificate.java | 16 ++
.../signature/AbstractSecurityKeySignature.java | 3 +-
.../java/org/apache/sshd/common/util/OsUtils.java | 2 +-
.../sshd/agent/common/AbstractAgentClient.java | 7 +-
.../sshd/agent/common/AbstractAgentProxy.java | 28 ++-
.../sshd/client/auth/pubkey/UserAuthPublicKey.java | 7 +-
.../client/session/filter/ClientProxyFilter.java | 9 +-
.../sshd/server/auth/pubkey/UserAuthPublicKey.java | 22 +-
.../shell/InteractiveProcessShellFactory.java | 10 +-
.../sshd/server/shell/ProcessShellFactory.java | 39 +--
.../java/org/apache/sshd/agent/AgentUnitTest.java | 94 ++++++++
.../auth/pubkey/UserAuthPublicKeySkTest.java | 125 ++++++++++
.../auth/UserAuthPublicKeyCertificateTest.java | 241 +++++++++++++++++++
.../apache/sshd/server/shell/ProcessShellTest.java | 28 ++-
sshd-git/README.txt | 21 +-
.../org/apache/sshd/git/AbstractGitCommand.java | 22 +-
.../org/apache/sshd/git/GitModuleProperties.java | 9 +
.../apache/sshd/git/pgm/EmbeddedCommandRunner.java | 77 +++++-
.../org/apache/sshd/git/pgm/GitPgmCommand.java | 5 +-
.../org/apache/sshd/git/pgm/SubcommandHandler.java | 61 +++++
.../apache/sshd/git/AbstractGitCommandTest.java | 51 ++++
.../apache/sshd/git/pack/GitPackCommandTest.java | 2 +-
.../org/apache/sshd/git/pgm/GitPgmCommandTest.java | 102 ++++----
sshd-mina/pom.xml | 2 +-
.../org/apache/sshd/scp/common/ScpFileOpener.java | 37 ++-
.../java/org/apache/sshd/scp/common/ScpHelper.java | 12 +-
.../helpers/LocalFileScpTargetStreamResolver.java | 10 +-
.../helpers/ScpReceivePathTraversalTest.java | 122 ++++++++++
.../apache/sshd/client/auth/SkPubKeyAuthTest.java | 261 +++++++++++++++++++++
39 files changed, 1395 insertions(+), 119 deletions(-)
create mode 100644 docs/changes/2.19.0.md
copy docs/changes/{3.0.0-M4.md => 3.0.0-M5.md} (64%)
create mode 100644
sshd-core/src/test/java/org/apache/sshd/client/auth/pubkey/UserAuthPublicKeySkTest.java
create mode 100644
sshd-core/src/test/java/org/apache/sshd/server/auth/UserAuthPublicKeyCertificateTest.java
create mode 100644
sshd-git/src/main/java/org/apache/sshd/git/pgm/SubcommandHandler.java
create mode 100644
sshd-git/src/test/java/org/apache/sshd/git/AbstractGitCommandTest.java
create mode 100644
sshd-scp/src/test/java/org/apache/sshd/scp/common/helpers/ScpReceivePathTraversalTest.java
create mode 100644
sshd-test/src/test/java/org/apache/sshd/client/auth/SkPubKeyAuthTest.java