dependabot[bot] opened a new pull request, #2522:
URL: https://github.com/apache/myfaces-tobago/pull/2522

   Bumps 
[testcontainers](https://github.com/testcontainers/testcontainers-java) from 
1.16.3 to 1.17.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/testcontainers/testcontainers-java/releases";>testcontainers's
 releases</a>.</em></p>
   <blockquote>
   <h2>1.17.1</h2>
   <h1>What's Changed</h1>
   <h2>🐛 Bug Fixes</h2>
   <ul>
   <li>Fix <code>StackOverflowError</code> in 
<code>DockerClientFactory#client</code> (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5262";>#5262</a>)
 <a href="https://github.com/bsideup";><code>@​bsideup</code></a></li>
   </ul>
   <h2>📖 Documentation</h2>
   <ul>
   <li>Update Testcontainers branding (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5258";>#5258</a>)
 <a href="https://github.com/kiview";><code>@​kiview</code></a></li>
   </ul>
   <h2>1.17.0</h2>
   <h1>What's Changed</h1>
   <h2>Highlights</h2>
   <p>This new version of Testcontainers comes packed with many new features 
and quality-of-life improvements, so we appropriately bumped the version to 
<code>1.17.0</code>.</p>
   <h3>🐝 New Module: HiveMQ (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4797";>#4797</a>)
 <a href="https://github.com/YannickWeber";><code>@​YannickWeber</code></a></h3>
   <p>Having started its Open Source life as its own 3rd-party Testcontainers 
library, we are very happy to welcome HiveMQ into the main repository.
   Now, using HiveMQ as part of your integration tests is as simple as a couple 
of lines of Java code:</p>
   <pre lang="java"><code>
   @Container
   HiveMQContainer hivemq = new 
HiveMQContainer(DockerImageName.parse(&quot;hivemq/hivemq-ce:2021.3&quot;));
   hivemq.start();
   <p>Mqtt5BlockingClient client = Mqtt5Client.builder()
   .serverPort(hivemqCe.getMqttPort())
   .serverHost(hivemqCe.getHost())
   .buildBlocking();</p>
   <p>client.connect();
   </code></pre></p>
   <p>Check out <a href="https://www.testcontainers.org/modules/hivemq/";>the 
docs</a> to learn more about its many features!</p>
   <h3>💀 Ryuk JVM mode (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4959";>#4959</a>)
 (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4960";>#4960</a>)
 <a href="https://github.com/bsideup";><code>@​bsideup</code></a></h3>
   <p>Many Testcontainers user love the convenience Ryuk brings to 
Testcontainers: No matter what you do in your integration tests, Ryuk has got 
you covered and will cleanup all Docker resources created by Testcontainers 
after your test run is finished.</p>
   <p>But some users operate Testcontainers in environments which do not 
support our container-based Ryuk implementation. So far their only option was 
to <a 
href="https://www.testcontainers.org/features/configuration/#disabling-ryuk";>disable
 Ryuk</a> alltogether.</p>
   <p>Coming with this release, Testcontainers will now fallback to a JVM based 
resource-cleanup implementation in case of Ryuk being disabled.
   While this won't be as robust as the Ryuk container based implementation in 
all circumstances, it is nevertheless a great addition and acts as a useful 
compromise.</p>
   <h2>🚀 Features &amp; Enhancements</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/66e4be2817f82aa80490c21e8df9e8f8a87fa792";><code>66e4be2</code></a>
 Fix <code>StackOverflowError</code> in <code>DockerClientFactory#client</code> 
(<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5262";>#5262</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/cec49348c70615a3a0b5243d10b8f5c30d3b5697";><code>cec4934</code></a>
 Update release docs to contain milestone rename step</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/af835694bb617fb1ef8d5eb1aa438ced68bcab7b";><code>af83569</code></a>
 Update images and theme for testcontainers.org (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5258";>#5258</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/17407eff6ef3343ee0c2d52e9306d40708909c43";><code>17407ef</code></a>
 Increase default client ping timeout from 5 to 10 seconds (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5254";>#5254</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/d93dceae969b63645b07881e80a61c57e3ca564b";><code>d93dcea</code></a>
 Allow to create a file in container from a Transferable (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/3814";>#3814</a>)
 (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/3815";>#3815</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/c7449edda49ff780921067c4a03014ce68b2aa41";><code>c7449ed</code></a>
 Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5099";>#5099</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/53e80aa4115b60eee11823b5aa7d3616065a9421";><code>53e80aa</code></a>
 Fix incorrect path for RABBITMQ_CONFIG_FILE (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5184";>#5184</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/734678f4be9e9a439b4391265d5f369ed1bab4b5";><code>734678f</code></a>
 Deperecate <code>getContainerIpAddress</code> (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5247";>#5247</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/aed4476bdddbecbcf5471895fa1bfba3bad0c3aa";><code>aed4476</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/5248";>#5248</a>
 from testcontainers/combined-pr-branch</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/ae6bc93ab166f32f0aba6f1e3c37274013ac39d9";><code>ae6bc93</code></a>
 Merge remote-tracking branch 
'origin/dependabot/github_actions/actions/checko...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/testcontainers/testcontainers-java/compare/1.16.3...1.17.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.testcontainers:testcontainers&package-manager=maven&previous-version=1.16.3&new-version=1.17.1)](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 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)
   
   
   </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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to