This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.mockito-mockito-core-5.12.0 in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
discard 75d9fbad9 Bump org.mockito:mockito-core from 4.2.0 to 5.12.0 add ac1bf81b1 Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 (#544) add 1df1cf593 Bump ant.version from 1.10.12 to 1.10.14 (#540) add 0e74e8946 [maven-release-plugin] prepare release sshd-2.13.2 add 0d324d663 [maven-release-plugin] prepare for next development iteration add 8de056871 Merge remote-tracking branch 'origin/releases/v2.13.2' add 145eef139 GH-524: Optimize the chacha20-poly1305 cipher add d9d127727 SFTP: correct receive(id, timeout) add c5e34ddce GH-524: Performance (minor): optimize buffer operations add 2e85df72c GH-524: Performance: avoid buffer copying add 4160b6e3e GH-524: SFTP: optimize SftpOutputStreamAsync add a7ccaf7c9 SFTP: provide SftpClient.put() add f60f75979 GH-524: Use built-in native AES from SunJCE if available add 2b93f5cf3 GH-524: Poly1305Mac: avoid needless byte copying add 9dcb788a7 Require JDK 17 at build time (fixes #536) (#537) add d4040556f Bump org.mockito:mockito-core from 4.2.0 to 5.12.0 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 (75d9fbad9) \ N -- N -- N refs/heads/dependabot/maven/org.mockito-mockito-core-5.12.0 (d4040556f) 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/build.yml | 20 +- .github/workflows/master-build.yml | 2 +- .mvn/maven.config | 2 + CHANGES.md | 19 ++ README.md | 3 +- assembly/pom.xml | 2 +- pom.xml | 216 +++------------- sshd-cli/pom.xml | 2 +- sshd-common/pom.xml | 2 +- .../apache/sshd/common/cipher/ChaCha20Cipher.java | 178 ++++++++----- .../org/apache/sshd/common/mac/Poly1305Mac.java | 91 ++++--- .../sshd/common/util/buffer/BufferUtils.java | 29 ++- .../sshd/common/util/buffer/ByteArrayBuffer.java | 66 ++++- .../sshd/common/util/security/SecurityUtils.java | 1 + .../security/SunJCESecurityProviderRegistrar.java | 102 ++++++++ .../apache/sshd/common/cipher/BaseCipherTest.java | 10 +- sshd-contrib/pom.xml | 2 +- sshd-core/pom.xml | 2 +- .../common/channel/ChannelAsyncOutputStream.java | 15 ++ .../java/org/apache/sshd/common/kex/SNTRUP761.java | 4 - .../common/session/helpers/AbstractSession.java | 4 +- .../sshd/common/session/helpers/PacketBuffer.java | 15 +- sshd-git/pom.xml | 2 +- sshd-ldap/pom.xml | 28 +- sshd-mina/pom.xml | 2 +- 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 +- sshd-sftp/pom.xml | 2 +- .../org/apache/sshd/sftp/client/RawSftpClient.java | 3 + .../org/apache/sshd/sftp/client/SftpClient.java | 72 ++++++ .../org/apache/sshd/sftp/client/SftpMessage.java | 87 +++++++ .../helpers/AbstractSftpClientExtension.java | 6 + .../apache/sshd/sftp/client/fs/SftpFileSystem.java | 47 ++++ .../sshd/sftp/client/impl/AbstractSftpClient.java | 20 +- .../sshd/sftp/client/impl/DefaultSftpClient.java | 74 +++--- .../sftp/client/impl/SftpInputStreamAsync.java | 24 +- .../sftp/client/impl/SftpOutputStreamAsync.java | 281 ++++++++++++++++----- .../sftp/client/impl/SftpRemotePathChannel.java | 50 +--- sshd-spring-sftp/pom.xml | 2 +- 42 files changed, 991 insertions(+), 506 deletions(-) create mode 100644 .mvn/maven.config create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/util/security/SunJCESecurityProviderRegistrar.java copy sshd-common/src/main/java/org/apache/sshd/common/random/AbstractRandom.java => sshd-core/src/main/java/org/apache/sshd/common/session/helpers/PacketBuffer.java (70%) create mode 100644 sshd-sftp/src/main/java/org/apache/sshd/sftp/client/SftpMessage.java