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


   Bumps 
[testcontainers](https://github.com/testcontainers/testcontainers-java) from 
1.16.2 to 1.16.3.
   <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.16.3</h2>
   <h1>What's Changed</h1>
   <h2>Highlights</h2>
   <p>Testcontainers 1.16.3 includes many changes, but there are two key 
highlights in this release:</p>
   <h3>k3s module (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4582";>#4582</a>)
 <a href="https://github.com/rnorth";><code>@​rnorth</code></a>, <a 
href="https://github.com/kiview";><code>@​kiview</code></a></h3>
   <p>We've had plenty of feedback from users wanting to use Testcontainers to 
help test Kubernetes components.
   In particular, this is useful for people developing Kubernetes 
controllers/operators, who need something more than just a mocked Kubernetes 
API.
   In this release we're bringing the k3s module, which gives you a neat way to 
spin up the <a href="https://k3s.io/";>K3S lightweight Kubernetes</a> inside of 
a container.
   We believe that k3s hits a sweet spot for ease of use and performance, so is 
a good option for testing Kubernetes components.</p>
   <p>Now, launching a lightweight single-node Kubernetes cluster within your 
tests is easy as:</p>
   <pre lang="java"><code>K3sContainer k3s = new 
K3sContainer(DockerImageName.parse(&quot;rancher/k3s:v1.21.3-k3s1&quot;));
   k3s.start();
   <p>String kubeConfigYaml = k3s.getKubeConfigYaml();
   ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));</p>
   <p>// now use <code>client</code> to talk to your cluster!
   </code></pre></p>
   <p>Check out <a href="https://www.testcontainers.org/modules/k3s/";>the 
docs</a> to find out more!</p>
   <h3>Selenium 4 compatibility (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4914";>#4914</a>)
 <a 
href="https://github.com/GannaChernyshova";><code>@​GannaChernyshova</code></a>, 
<a href="https://github.com/tobiasstadler";><code>@​tobiasstadler</code></a>, <a 
href="https://github.com/kiview";><code>@​kiview</code></a>, <a 
href="https://github.com/rnorth";><code>@​rnorth</code></a></h3>
   <p>Selenium 4 was <a 
href="https://www.selenium.dev/blog/2021/announcing-selenium-4/";>announced a 
while back</a>, but we needed to make some changes to Testcontainers' 
Selenium/Webdriver module for compatibility.
   We're happy to announce that these changes have now been made, so you can 
now use Selenium 4 with Testcontainers!</p>
   <p>As part of this upgrade we have to drop compatibility with Selenium 2, 
but believe that this will not have any practical impact.</p>
   <h2>🚀 Features &amp; Enhancements</h2>
   <ul>
   <li>[Reusable mode] Don't log about starting container unnecessarily (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4844";>#4844</a>)
 <a href="https://github.com/pkubowicz";><code>@​pkubowicz</code></a></li>
   <li>Display Ryuk logs when it fails to start (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4842";>#4842</a>)
 <a href="https://github.com/vincz7777";><code>@​vincz7777</code></a></li>
   <li>[couchbase] Explicitly configure service quotas (and allow customizat… 
(<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4802";>#4802</a>)
 <a href="https://github.com/daschl";><code>@​daschl</code></a></li>
   <li>removed hardcoded log level setting on mockserver (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4798";>#4798</a>)
 <a href="https://github.com/szymonprz";><code>@​szymonprz</code></a></li>
   <li>[couchbase] Ignore transient primary index creation error. (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4681";>#4681</a>)
 <a href="https://github.com/daschl";><code>@​daschl</code></a></li>
   <li>Execute Docker credential program through shell on Windows  (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4763";>#4763</a>)
 <a href="https://github.com/mruemeli";><code>@​mruemeli</code></a></li>
   </ul>
   <h2>🐛 Bug Fixes</h2>
   <ul>
   <li>change external port check to it can timeout and retry (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4680";>#4680</a>)
 <a 
href="https://github.com/kmcgovern-apixio";><code>@​kmcgovern-apixio</code></a></li>
   </ul>
   <h2>📖 Documentation</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/34cfdc8e3fa86852a05131eb7f48b86966864c0a";><code>34cfdc8</code></a>
 Fix k3s for latest Docker for Mac (cgroupsv2) (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4937";>#4937</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/04937b52434edfac91bfbcfb672621d68c327891";><code>04937b5</code></a>
 Replace jcenter with mavenCentral in all examples (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4931";>#4931</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/19b58cdb7b8d2ca56c13743527bb0c674676b60d";><code>19b58cd</code></a>
 Use 2.8.8 compatible Jackson API (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4930";>#4930</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/f7dcfa8593625a490017135698ff6dbb1d794f6b";><code>f7dcfa8</code></a>
 Use jackson 2.8.8 in k3s module (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4928";>#4928</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/631531fb6a49edae99756e68fcd0e347936b4852";><code>631531f</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4927";>#4927</a>
 from testcontainers/combined-pr-branch</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/af7cec02ea6b658dfcb61f50da0ef5dbe08cacaf";><code>af7cec0</code></a>
 Bump up Gradle Enterprise plugin dependencies (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4926";>#4926</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/0a04166fb1923504ce665d98a31032ec9059dfcd";><code>0a04166</code></a>
 Merge remote-tracking branch 
'origin/dependabot/gradle/modules/postgresql/io....</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/0ff1c7950d0ba039b594da3a628e4d9c319c7133";><code>0ff1c79</code></a>
 Merge remote-tracking branch 
'origin/dependabot/gradle/modules/localstack/com...</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/8186795449a3b32108e663e3208406b38fc61d7e";><code>8186795</code></a>
 Basic K3S module (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-java/issues/4582";>#4582</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-java/commit/3a16a794162064effec0e805d7d34342c63f65ab";><code>3a16a79</code></a>
 Bump r2dbc-postgresql in /modules/postgresql</li>
   <li>Additional commits viewable in <a 
href="https://github.com/testcontainers/testcontainers-java/compare/1.16.2...1.16.3";>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.2&new-version=1.16.3)](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