dependabot[bot] opened a new pull request, #11: URL: https://github.com/apache/geronimo-gshell/pull/11
Bumps [org.apache.sshd:sshd-core](https://github.com/apache/mina-sshd) from 0.1.0 to 2.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/mina-sshd/blob/master/CHANGES.md">org.apache.sshd:sshd-core's changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.7.0.md">Version 2.6.0 to 2.7.0</a></h1> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.8.0.md">Version 2.7.0 to 2.8.0</a></h1> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.9.0.md">Version 2.8.0 to 2.9.0</a></h1> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.9.1.md">Version 2.9.0 to 2.9.1</a></h1> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.9.2.md">Version 2.9.1 to 2.9.2</a></h1> <h1><a href="https://github.com/apache/mina-sshd/blob/master/docs/changes/2.10.0.md">Version 2.9.2 to 2.10.0</a></h1> <h1>Planned for next version</h1> <h2>Bug Fixes</h2> <ul> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/370">GH-370</a> Also compare file keys in <code>ModifiableFileWatcher</code>.</p> </li> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/371">GH-371</a> Fix channel pool in <code>SftpFileSystem</code>.</p> </li> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/383">GH-383</a> Use correct default <code>OpenOption</code>s in <code>SftpFileSystemProvider.newFileChannel()</code>.</p> </li> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/384">GH-384</a> Use correct lock modes for SFTP <code>FileChannel.lock()</code>.</p> </li> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/388">GH-388</a> <code>ScpClient</code>: support issuing commands to a server that uses a non-UTF-8 locale.</p> </li> <li> <p><a href="https://redirect.github.com/apache/mina-sshd/issues/398">GH-398</a> <code>SftpInputStreamAsync</code>: fix reporting EOF on zero-length reads.</p> </li> <li> <p><a href="https://issues.apache.org/jira/browse/SSHD-1259">SSHD-1259</a> Consider all applicable host keys from the known_hosts files.</p> </li> <li> <p><a href="https://issues.apache.org/jira/browse/SSHD-1310">SSHD-1310</a> <code>SftpFileSystem</code>: do not close user session.</p> </li> <li> <p><a href="https://issues.apache.org/jira/browse/SSHD-1327">SSHD-1327</a> <code>ChannelAsyncOutputStream</code>: remove write future when done.</p> </li> <li> <p><a href="https://issues.apache.org/jira/browse/SSHD-1332">SSHD-1332</a> (Regression in 2.10.0) Resolve ~ in IdentityFile file names in <code>HostConfigEntry</code>.</p> </li> </ul> <h2>New Features</h2> <ul> <li><a href="https://redirect.github.com/apache/mina-sshd/issues/356">GH-356</a> Publish snapshot maven artifacts to the <a href="https://repository.apache.org/content/repositories/snapshots">Apache Snapshots</a> maven repository.</li> </ul> <h2>Major Code Re-factoring</h2> <p>As part of the fix for <a href="https://redirect.github.com/apache/mina-sshd/issues/371">GH-371</a> the channel pool in <code>SftpFileSystem</code> was rewritten completely. Previous code also used <code>ThreadLocal</code>s to store <code>SftpClient</code>s, which could cause memory leaks.</p> <p>These <code>ThreadLocal</code>s have been removed, and the channel pool has been rewritten to function similar to a Java <code>ThreadPool</code>: the pool has a maximum size; it has an expiration duration after which an idle channel is removed and closed, and it has a "core size" of channels to keep even if they are idle. If a channel is closed for any reason it is evicted from the pool.</p> <p>Properties to configure these pool parameters have been added to <code>SftpModuleProperties</code>.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/mina-sshd/commit/2772c7c8f6afb8c53546ca803501f52118bd0491"><code>2772c7c</code></a> [maven-release-plugin] prepare release sshd-2.7.0</li> <li><a href="https://github.com/apache/mina-sshd/commit/c5500e9da63b8d756ac46cf70ff260ded8ec9e23"><code>c5500e9</code></a> Add changelog for 2.7.0</li> <li><a href="https://github.com/apache/mina-sshd/commit/9a724be5b3c762f4845a802adc5f535c83473469"><code>9a724be</code></a> [SSHD-525] Server side implementation of <a href="mailto:posix-ren...@openssh.com">posix-ren...@openssh.com</a></li> <li><a href="https://github.com/apache/mina-sshd/commit/4dad0d7059b35fc497e2be6613f4762810a6a173"><code>4dad0d7</code></a> [SSHD-1145] Deprecate ReflectionUtils#isClassAvailable and use ThreadUtils#re...</li> <li><a href="https://github.com/apache/mina-sshd/commit/db7cbdc5c0c51a0b444628357a3d45aa803285d6"><code>db7cbdc</code></a> [SSHD-1158] Don't send channel EOF after having received channel CLOSE</li> <li><a href="https://github.com/apache/mina-sshd/commit/60b50f918198cfb7b040bb125676176b991bc5b6"><code>60b50f9</code></a> [SSHD-1141] DefaultClientKexExtensionHandler: ensure list is modifiable</li> <li><a href="https://github.com/apache/mina-sshd/commit/797d887d1ec4db4c5d7722acf61bbc57f6652eab"><code>797d887</code></a> Updated Netty version to 4.1.63</li> <li><a href="https://github.com/apache/mina-sshd/commit/4bfeca39471b90f35a59072460658731fd83b2c3"><code>4bfeca3</code></a> Updated PMD version to 6.33.0</li> <li><a href="https://github.com/apache/mina-sshd/commit/f7a2ae35472d29b7c30a368d3b134cb65439b897"><code>f7a2ae3</code></a> Updated Checkstyle version to 8.41.1</li> <li><a href="https://github.com/apache/mina-sshd/commit/0a3f5da77114a1a68aff0322206435a4a563c8f7"><code>0a3f5da</code></a> Updated Spring Core version to 5.3.6</li> <li>Additional commits viewable in <a href="https://github.com/apache/mina-sshd/compare/sshd-0.1.0...sshd-2.7.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/geronimo-gshell/network/alerts). </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@geronimo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org