This is an automated email from the ASF dual-hosted git repository.
tomaswolf pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
from 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 8caed36ab Bump dependency to org.apache.mina:mina-core
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
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 4 +-
NOTICE-bin.txt | 2 +-
assembly/pom.xml | 2 +-
docs/changes/2.19.0.md | 48 +++++
docs/server-setup.md | 6 +-
pom.xml | 8 +-
sshd-benchmarks/pom.xml | 2 +-
sshd-cli/pom.xml | 2 +-
sshd-common/pom.xml | 2 +-
.../common/config/keys/OpenSshCertificate.java | 16 ++
.../java/org/apache/sshd/common/util/OsUtils.java | 2 +-
sshd-contrib/pom.xml | 2 +-
sshd-core/pom.xml | 2 +-
.../sshd/server/auth/pubkey/UserAuthPublicKey.java | 22 +-
.../shell/InteractiveProcessShellFactory.java | 10 +-
.../sshd/server/shell/ProcessShellFactory.java | 39 ++--
.../sshd/client/auth/pubkey/SkPubKeyAuthTest.java | 3 +-
.../auth/UserAuthPublicKeyCertificateTest.java | 234 +++++++++++++++++++++
.../apache/sshd/server/shell/ProcessShellTest.java | 28 ++-
sshd-git/README.txt | 21 +-
sshd-git/pom.xml | 2 +-
.../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 | 108 ++++++----
sshd-ldap/pom.xml | 2 +-
sshd-mina/pom.xml | 4 +-
sshd-netty/pom.xml | 2 +-
sshd-openpgp/pom.xml | 2 +-
sshd-osgi/pom.xml | 2 +-
sshd-putty/pom.xml | 2 +-
sshd-scp/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 +++++++++++
sshd-sftp/pom.xml | 2 +-
sshd-spring-sftp/pom.xml | 2 +-
42 files changed, 867 insertions(+), 126 deletions(-)
create mode 100644 docs/changes/2.19.0.md
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