dependabot[bot] opened a new pull request, #23821:
URL: https://github.com/apache/beam/pull/23821

   Bumps 
[github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go)
 from 0.14.0 to 0.15.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/testcontainers/testcontainers-go/releases";>github.com/testcontainers/testcontainers-go's
 releases</a>.</em></p>
   <blockquote>
   <h2>v0.15.0</h2>
   <h1>What's Changed</h1>
   <h2>🚀 Features</h2>
   <ul>
   <li>feat: add sessionID HTTP Header to the Docker client setup (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/570";>#570</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>chore: proper messaging on disabling ryuk (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/566";>#566</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>Support returning all IP addresses of a container (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/553";>#553</a>)
 <a href="https://github.com/gauravgahlot";><code>@​gauravgahlot</code></a></li>
   <li>Support for cap-add/cap-drop (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/555";>#555</a>)
 <a href="https://github.com/dhuckins";><code>@​dhuckins</code></a></li>
   <li>Log docker server info (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/548";>#548</a>)
 <a href="https://github.com/gauravgahlot";><code>@​gauravgahlot</code></a></li>
   </ul>
   <h2>⚠️ Breaking Changes</h2>
   <ul>
   <li>feat: add host param to url function for wait.ForSQL (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/524";>#524</a>)
 <a href="https://github.com/frozenbonito";><code>@​frozenbonito</code></a></li>
   </ul>
   <p>Before this change, when waiting for a SQL to be executed in a container 
it always checked against <code>localhost</code>, but it could be the case that 
the database instance runs in a different container. For that reason, the 
library now supports passing the host where the database is running so that the 
<code>wait.ForSQL</code> function needs the host as part of the input 
parameters.</p>
   <pre lang="diff"><code>- func ForSQL(port nat.Port, driver string, url 
func(nat.Port) string) *waitForSql {
   + func ForSQL(port nat.Port, driver string, url func(host string, port 
nat.Port) string) *waitForSql {
   </code></pre>
   <h2>🐛 Bug Fixes</h2>
   <ul>
   <li>fix: check if the container request is for the reaper (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/574";>#574</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>fix: pass docker context key when reusing a container (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/550";>#550</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>fix: use regex to find container by name (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/558";>#558</a>)
 <a href="https://github.com/hwwwi";><code>@​hwwwi</code></a></li>
   <li>fix: expose default exposed ports if the NetworkMode is not container 
(<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/560";>#560</a>)
 <a href="https://github.com/clive-jevons";><code>@​clive-jevons</code></a></li>
   <li>fix(compose): wait.ForExit() strategy should work for finished 
containers (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/514";>#514</a>)
 <a href="https://github.com/Malinskiy";><code>@​Malinskiy</code></a></li>
   </ul>
   <h2>📖 Documentation</h2>
   <ul>
   <li>fix: edit link in documentation (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/575";>#575</a>)
 <a 
href="https://github.com/DanielHabenicht";><code>@​DanielHabenicht</code></a></li>
   <li>chore: proper messaging on disabling ryuk (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/566";>#566</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>docs: add general Docker requirements (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/565";>#565</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>Add system requirements parent docs page for podman and colima (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/562";>#562</a>)
 <a href="https://github.com/gauravgahlot";><code>@​gauravgahlot</code></a></li>
   <li>docs: add docs regarding Colima usage (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/547";>#547</a>)
 <a href="https://github.com/hhsnopek";><code>@​hhsnopek</code></a></li>
   <li>chore: add CONTRIBUTING file (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/539";>#539</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>docs: add a basic layout for wait strategies in docs (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/536";>#536</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>docs: improve consistency and fix typos (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/534";>#534</a>)
 <a href="https://github.com/sicoyle";><code>@​sicoyle</code></a></li>
   </ul>
   <h2>🧹 Housekeeping</h2>
   <ul>
   <li>chore: prepare for 0.15.0 release (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/581";>#581</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>fix: better error message in tests (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/577";>#577</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>chore: check error message in parts when testing the 
CreateContainerWithDirs method (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/576";>#576</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>chore: use container.State() function in tests (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/543";>#543</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>chore: add emoji to breaking changes in release drafter (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/542";>#542</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   <li>issue <a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/537";>#537</a>
 Rename the wait/multi.go file to wait/all.go (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/541";>#541</a>)
 <a href="https://github.com/skofli";><code>@​skofli</code></a></li>
   <li>chore: do not skip test (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/528";>#528</a>)
 <a href="https://github.com/mdelapenya";><code>@​mdelapenya</code></a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/4c04bdf03605f862f9e0fc0e3b6d49a2ef02f744";><code>4c04bdf</code></a>
 chore: prepare for 0.15.0 release (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/581";>#581</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/6b8d69927832de76f2d0223776d4b29297b81b13";><code>6b8d699</code></a>
 fix: better error message in tests (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/577";>#577</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/9bee089e952d48fbeff408a09fb4157ac9a37176";><code>9bee089</code></a>
 chore: check error message in parts when testing the CreateContainerWithDirs 
...</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/be7df34675b61860c4b87b91627f023666b83b53";><code>be7df34</code></a>
 fix: edit link in documentation (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/575";>#575</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/786954c7be036e282e86adabed2e86c49e10a32f";><code>786954c</code></a>
 fix: check if the container request if for the reaper (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/574";>#574</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/322aa4ef94d483006dd94b7bc37cc9b99094598d";><code>322aa4e</code></a>
 fix: pass docker context key when reusing a container (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/550";>#550</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/db41dd1bb6f5466da05fc51025b794f173122433";><code>db41dd1</code></a>
 feat: add sessionID HTTP Header to the Docker client setup (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/570";>#570</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/d9bb48832213a363800e10b88d41e57a59447ccb";><code>d9bb488</code></a>
 chore(deps): bump gotest.tools/v3 from 3.3.0 to 3.4.0 (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/563";>#563</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/b70166b9850ed8e970e35732ce723ffc387dc4bc";><code>b70166b</code></a>
 chore: proper messaging on disabling ryuk (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/566";>#566</a>)</li>
   <li><a 
href="https://github.com/testcontainers/testcontainers-go/commit/b798926c8da8e855d6ac9c0afdf4d010a4519a38";><code>b798926</code></a>
 fix: use regex to find container by name (<a 
href="https://github-redirect.dependabot.com/testcontainers/testcontainers-go/issues/558";>#558</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/testcontainers/testcontainers-go/compare/v0.14.0...v0.15.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/testcontainers/testcontainers-go&package-manager=go_modules&previous-version=0.14.0&new-version=0.15.0)](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