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


   Bumps [junit-jupiter](https://github.com/testcontainers/testcontainers-java) 
from 1.16.0 to 1.16.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/testcontainers/testcontainers-java/releases";>junit-jupiter's
 releases</a>.</em></p>
   <blockquote>
   <h2>1.16.1</h2>
   <h1>What's Changed</h1>
   <p>Testcontainers 1.16.1 has been released! 🎉</p>
   <p>This release brings a lot of eagerly awaited new features and fixes, such 
as:</p>
   <h2>🔮 Better Oracle Database support</h2>
   <p>Thanks to the engagement of the community and <a 
href="https://github.com/gvenzl";><code>@​gvenzl</code></a>'s new Docker images 
for <a href="https://hub.docker.com/r/gvenzl/oracle-xe";>Oracle Database Express 
Edition</a> we were able to update our <code>OracleContainer</code> module to 
ensure its compatibility with a wide range of Oracle XE versions.</p>
   <p>And at the same time, thanks to the new images, we were able to 
re-integrate the Oracle module into our CI. This means we can verify 
compatibility for using Testcontainers with Oracle Database going forward.</p>
   <h2>☁️ New Azure Cosmos DB module</h2>
   <p>With the new Azure Comos DB module we finally added Azure to our list of 
cloud service testing facilities.
   It is based on Microsoft's <a 
href="https://docs.microsoft.com/en-us/azure/cosmos-db/local-emulator?tabs=ssl-netstd21";>Azure
 Cosmos DB-Emulator</a> and provides you with a way to do your integration 
testing without the need for an actual Azure service.</p>
   <pre lang="java"><code>public CosmosDBEmulatorContainer emulator = new 
CosmosDBEmulatorContainer(
           
DockerImageName.parse(&quot;mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest&quot;)
   );
   </code></pre>
   <p>Please check out the <a 
href="https://www.testcontainers.org/modules/azure/";>module docs</a> to learn 
how to use it for your integration testing needs.</p>
   <h2>⛴ Host port access for containers</h2>
   <p>For further improving the developer experience of our users, we added a 
new API to make hosts ports accessible to containers:</p>
   <pre><code>container.withAccessToHost(true)
   </code></pre>
   <p>You still need to use <code>exposeHostPorts</code>, <a 
href="https://www.testcontainers.org/features/networking/#exposing-host-ports-to-the-container";>as
 per the docs</a>, but <strong>this can now be done after the container has 
started</strong>, thereby allowing new usage patterns in your tests.</p>
   <h2>🌪 Faster Cassandra startup</h2>
   <p>By making clever use of the configuration settings available in 
Cassandra, <code>CassandraContainer</code> will now start up to 3 times faster.
   It is now also configured to be less resource hungry out of the box.</p>
   <h2>✨ Better startup performance for all containers</h2>
   <p>We found a couple of ways to improve the container startup performance 
for our users, no matter the Testcontainers module you use.
   This comes through some internal changes with regards to how Testcontainers 
checks for open ports during container startup and will shave up to a couple of 
seconds from your test suite.</p>
   <hr />
   <p>We are grateful for the ongoing support of our community and users and 
thank each of our awesome contributors!</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/81317a66024cb82f99d349c5b3247f8e3616c7ae";><code>81317a6</code></a>
 Provide an API to force access to the host (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4584";>#4584</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/2174928a5d2ac6e117643c12300171a03f8de7f8";><code>2174928</code></a>
 Remove unused <code>@ClassRule</code> container in 
<code>KafkaContainerTest</code> and use `cp-kafk...</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/737865fb964f6fd5dd84ff6dbe8ca42ab9efdc53";><code>737865f</code></a>
 Upgrade ryuk image to 0.3.3 (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4581";>#4581</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/69cf13c307a3e898297bce08f7537b4ebabae7e2";><code>69cf13c</code></a>
 Perform port checks in parallel (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4463";>#4463</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/b29716dbfafe24dd66e8a9c2405aa1330ea96f60";><code>b29716d</code></a>
 Remove <code>httpclient5_test</code> (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4562";>#4562</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/b7e9bb6a69264a43bac37edf596a928c96ce5443";><code>b7e9bb6</code></a>
 Update GitLab CI docs: Add --tls=false to docker-in-docker to avoid startup 
d...</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/92155d949f58080e7aa12538574e3b8252198f53";><code>92155d9</code></a>
 Temporarily disable Thundra on master branch (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4570";>#4570</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/1ad2a053d858b2080c359a1c85288dd5481a2b78";><code>1ad2a05</code></a>
 Add Azure Cosmos DB module: Introduce CosmosDBEmulatorContainer (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4303";>#4303</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/8d40cbd75c4bbb10797e8543d080ad6e046bc1ce";><code>8d40cbd</code></a>
 Enable <code>JUnitPlatform</code> for Spock tests (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4568";>#4568</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/f31ee7984093efe303b8326934a9f76b70f65f35";><code>f31ee79</code></a>
 Skip japicmp for new modules (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4569";>#4569</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/testcontainers/testcontainers-java/compare/1.16.0...1.16.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.testcontainers:junit-jupiter&package-manager=maven&previous-version=1.16.0&new-version=1.16.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