This is an automated email from the ASF dual-hosted git repository. lgoldstein pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from 32f9eb6 [SSHD-842] Updated hierarchy of ServerSessionHolder(s) new 952bb0c [SSHD-953] Parse and strip quoted command arguments when executing a server-side command via local shell new 5fa3cb0 [SSHD-931] Using an executor supplier instead of a specific instance in 'ScpCommandFactory' new 23a6e7b [SSHD-931] Using an executor supplier instead of a specific instance in 'AbstractGitCommandFactory' new d33a7c6 Added Visual Code IDE .gitignore patterns new 6931ece Provide configurable control over the client-side ChannelSession stdin pump chunk size new 119c4e0 Removed some extraneous spaces The 6 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: .gitignore | 4 ++ CHANGES.md | 14 +++-- docs/scp.md | 18 +++++- .../org/apache/sshd/cli/client/SshClientMain.java | 2 +- .../java/org/apache/sshd/common/util/OsUtils.java | 16 +++-- .../org/apache/sshd/common/util/io/IoUtils.java | 51 +++++++++------ .../util/threads/ExecutorServiceCarrier.java | 2 +- .../threads/ExecutorServiceProvider.java} | 25 ++++---- ...er.java => ManagedExecutorServiceSupplier.java} | 11 ++-- .../channel/throttle/ThrottlingPacketWriter.java | 2 +- .../org/apache/sshd/agent/SshAgentConstants.java | 2 +- .../auth/keyboard/UserAuthKeyboardInteractive.java | 2 +- .../apache/sshd/client/channel/ChannelSession.java | 45 +++++++++----- .../session/forward/PortForwardingTracker.java | 2 +- .../sshd/common/channel/ChannelOutputStream.java | 31 +++++++--- .../apache/sshd/server/channel/ChannelSession.java | 6 +- .../command/AbstractDelegatingCommandFactory.java | 3 +- .../server/command/AbstractFileSystemCommand.java | 3 +- .../apache/sshd/server/command/CommandFactory.java | 70 ++++++++++++++++++++- .../shell/InteractiveProcessShellFactory.java | 8 ++- .../server/shell/ProcessShellCommandFactory.java | 5 +- .../sshd/server/shell/ProcessShellFactory.java | 52 ++++++++++------ .../server/command/CommandFactorySplitterTest.java | 72 +++++++++++----------- .../apache/sshd/git/AbstractGitCommandFactory.java | 31 +++++++--- .../sshd/git/pack/GitPackCommandFactory.java | 9 ++- .../apache/sshd/git/pgm/GitPgmCommandFactory.java | 11 +++- .../java/org/apache/sshd/common/scp/ScpHelper.java | 51 ++++++++++----- .../apache/sshd/server/scp/ScpCommandFactory.java | 45 +++++++------- .../java/org/apache/sshd/client/scp/ScpTest.java | 21 ++++--- .../sshd/server/scp/ScpCommandFactoryTest.java | 9 ++- .../sftp/SftpOutputStreamWithChannel.java | 2 +- .../subsystem/sftp/SftpSubsystemFactory.java | 19 +++--- .../client/subsystem/sftp/SftpVersionsTest.java | 12 ++-- 33 files changed, 433 insertions(+), 223 deletions(-) copy sshd-common/src/main/java/org/apache/sshd/common/{Factory.java => util/threads/ExecutorServiceProvider.java} (62%) copy sshd-common/src/main/java/org/apache/sshd/common/util/threads/{ExecutorServiceCarrier.java => ManagedExecutorServiceSupplier.java} (69%) copy sshd-common/src/test/java/org/apache/sshd/common/PropertyResolverParseBooleanTest.java => sshd-core/src/test/java/org/apache/sshd/server/command/CommandFactorySplitterTest.java (51%)