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

   Bumps [github.com/docker/docker](https://github.com/docker/docker) from 
27.3.1+incompatible to 27.4.0+incompatible.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/docker/docker/releases";>github.com/docker/docker's 
releases</a>.</em></p>
   <blockquote>
   <h2>v27.4.0</h2>
   <h2>27.4.0</h2>
   <p>For a full list of pull requests and changes in this release, refer to 
the relevant GitHub milestones:</p>
   <ul>
   <li><a 
href="https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A27.4.0";>docker/cli,
 27.4.0 milestone</a></li>
   <li><a 
href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A27.4.0";>moby/moby,
 27.4.0 milestone</a></li>
   </ul>
   <h3>API</h3>
   <ul>
   <li><code>GET /images/json</code> with the <code>manifests</code> option 
enabled now preserves the original order in which manifests appeared in the 
manifest-index. <a 
href="https://redirect.github.com/moby/moby/pull/48712";>moby/moby#48712</a></li>
   </ul>
   <h3>Bug fixes and enhancements</h3>
   <ul>
   <li>When reading logs with the <code>jsonfile</code> or <code>local</code> 
log drivers, any errors while trying to read or parse underlying log files will 
cause the rest of the file to be skipped and move to the next log file (if one 
exists) rather than returning an error to the client and closing the stream. 
The errors are viewable in the Docker Daemon logs and exported to traces when 
tracing is configured. <a 
href="https://redirect.github.com/moby/moby/pull/48842";>moby/moby#48842</a></li>
   <li>When reading log files, compressed log files are now only decompressed 
when needed rather than decompressing all files before starting the log stream. 
<a 
href="https://redirect.github.com/moby/moby/pull/48842";>moby/moby#48842</a></li>
   <li>Fix an issue that meant published ports from one container on a bridge 
network were not accessible from another container on the same network with 
<code>userland-proxy</code> disabled, if the kernel's <code>br_netfilter</code> 
module was not loaded and enabled. The daemon will now attempt to load the 
module and enable <code>bridge-nf-call-iptables</code> or 
<code>bridge-nf-call-ip6tables</code> when creating a network with the userland 
proxy disabled. <a 
href="https://redirect.github.com/moby/moby/pull/48685";>moby/moby#48685</a></li>
   <li>Fix loading of <code>bridge</code> and <code>br_netfilter</code> kernel 
modules. <a 
href="https://redirect.github.com/moby/moby/pull/48966";>moby/moby#48966</a></li>
   <li>containerd image store: Fix Docker daemon failing to fully start with a 
&quot;context deadline exceeded error&quot; with containerd snapshotter and 
many builds/images. <a 
href="https://redirect.github.com/moby/moby/pull/48954";>moby/moby#48954</a></li>
   <li>containerd image-store: Fix partially pulled images not being 
garbage-collected. <a 
href="https://redirect.github.com/moby/moby/pull/48910";>moby#48910</a>, <a 
href="https://redirect.github.com/moby/moby/pull/48957";>moby/moby#48957</a></li>
   <li>containerd image store: Fix <code>docker image inspect</code> outputting 
duplicate references in <code>RepoDigests</code>. <a 
href="https://redirect.github.com/moby/moby/pull/48785";>moby/moby#48785</a></li>
   <li>containerd image store: Fix not being able to connect to some insecure 
registries in cases where the HTTPS request failed due to a non-TLS related 
error. <a 
href="https://redirect.github.com/moby/moby/pull/48758";>moby/moby#48758</a></li>
   <li>containerd image store: Remove a confusing warning log when tagging a 
non-dangling image. <a 
href="https://redirect.github.com/moby/moby/pull/49010";>moby/moby#49010</a></li>
   <li>dockerd-rootless-setuptool.sh: let --force ignore smoke test errors <a 
href="https://redirect.github.com/moby/moby/pull/48695";>moby/moby#48695</a></li>
   <li>Disable IPv6 Duplicate Address Detection (DAD) for addresses assigned to 
the bridges belonging to bridge networks. <a 
href="https://redirect.github.com/moby/moby/pull/48684";>moby/moby#48684</a></li>
   <li>Remove BuildKit init timeout. <a 
href="https://redirect.github.com/moby/moby/pull/48963";>moby/moby#48963</a></li>
   <li>Ignore &quot;dataset does not exist&quot; error when removing dataset on 
ZFS. <a 
href="https://redirect.github.com/moby/moby/pull/48968";>moby/moby#48968</a></li>
   <li>Client: Prevent idle connections leaking FDs. <a 
href="https://redirect.github.com/moby/moby/pull/48764";>moby/moby#48764</a></li>
   <li>Fix anonymous volumes being created through the <code>--mount</code> 
option not being marked as anonymous. <a 
href="https://redirect.github.com/moby/moby/pull/48755";>moby/moby#48755</a></li>
   <li>After a daemon restart with live-restore, ensure an iptables jump to the 
<code>DOCKER-USER</code> chain is placed before other rules. <a 
href="https://redirect.github.com/moby/moby/pull/48714";>moby/moby#48714</a></li>
   <li>Fix a possible memory leak caused by OTel meters. <a 
href="https://redirect.github.com/moby/moby/pull/48693";>moby/moby#48693</a></li>
   <li>Create distinct build history db for each store. <a 
href="https://redirect.github.com/moby/moby/pull/48688";>moby/moby#48688</a></li>
   <li>Fix an issue that caused excessive memory usage when DNS resolution was 
made in a tight loop. <a 
href="https://redirect.github.com/moby/moby/pull/48840";>moby/moby#48840</a></li>
   <li>containerd image store: Do not underline names in <code>docker image ls 
--tree</code>. <a 
href="https://redirect.github.com/docker/cli/pull/5519";>docker/cli#5519</a></li>
   <li>containerd image store: Change name of <code>USED</code> column in 
<code>docker image ls --tree</code> to <code>IN USE</code>. <a 
href="https://redirect.github.com/docker/cli/pull/5518";>docker/cli#5518</a></li>
   <li>Fix a bug preventing image pulls from being cancelled during 
<code>docker run</code>. <a 
href="https://redirect.github.com/docker/cli/pull/5654";>docker/cli#5654</a></li>
   <li>Port some completions from the bash completion to the new cobra based 
completion. <a 
href="https://redirect.github.com/docker/cli/pull/5618";>docker/cli#5618</a></li>
   <li>The <code>docker login</code> and <code>docker logout</code> command no 
longer update the configuration file if the credentials didn't change. <a 
href="https://redirect.github.com/docker/cli/pull/5569";>docker/cli#5569</a></li>
   <li>Optimise <code>docker stats</code> to reduce flickering issues. <a 
href="https://redirect.github.com/docker/cli/pull/5588";>docker/cli#5588</a>, <a 
href="https://redirect.github.com/docker/cli/pull/5635";>docker/cli#5635</a></li>
   <li>Fix inaccessible plugins paths preventing plugins from being detected. 
<a 
href="https://redirect.github.com/docker/cli/pull/5652";>docker/cli#5652</a></li>
   <li>Add support for <code>events --filter</code> in cobra generated shell 
completions. <a 
href="https://redirect.github.com/docker/cli/pull/5614";>docker/cli#5614</a></li>
   <li>Fix bash completion for <code>events --filter daemon=</code>. <a 
href="https://redirect.github.com/docker/cli/pull/5563";>docker/cli#5563</a></li>
   <li>Improve shell-completion of containers for <code>docker rm</code>. <a 
href="https://redirect.github.com/docker/cli/pull/5540";>docker/cli#5540</a></li>
   <li>Add shell-completion for <code>--platform</code> flags. <a 
href="https://redirect.github.com/docker/cli/pull/5540";>docker/cli#5540</a></li>
   <li>rootless: Make <code>/etc/cdi</code> and <code>/var/run/cdi</code> 
accessible by the Container Device Interface (CDI) integration. <a 
href="https://redirect.github.com/moby/moby/pull/49027";>moby/moby#49027</a></li>
   </ul>
   <h3>Removed</h3>
   <ul>
   <li>Deprecate <code>Daemon.Exists()</code> and 
<code>Daemon.IsPaused()</code>. These functions are no longer used and will be 
removed in the next release. <a 
href="https://redirect.github.com/moby/moby/pull/48719";>moby/moby#48719</a></li>
   <li>Deprecate <code>container.ErrNameReserved</code> and 
<code>container.ErrNameNotReserved</code>. <a 
href="https://redirect.github.com/moby/moby/pull/48697";>moby/moby#48697</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/moby/moby/commit/92a83937d0280dcbea92099b01e01aa4251c1777";><code>92a8393</code></a>
 Merge pull request <a 
href="https://redirect.github.com/docker/docker/issues/49027";>#49027</a> from 
thaJeztah/27.x_backport_cdi-rootless</li>
   <li><a 
href="https://github.com/moby/moby/commit/9163aa379a8212c08c14aeff45a25131faa3d47b";><code>9163aa3</code></a>
 Merge pull request <a 
href="https://redirect.github.com/docker/docker/issues/49026";>#49026</a> from 
thaJeztah/27.x_update_go_1.22.10</li>
   <li><a 
href="https://github.com/moby/moby/commit/4775621ab6ab5adb94450d8edfa7f85c790070f7";><code>4775621</code></a>
 Dockerd rootless: make {/etc,/var/run}/cdi available</li>
   <li><a 
href="https://github.com/moby/moby/commit/0176f4a5c3b354fa2c7aa76f1249c1ef93d2d8a1";><code>0176f4a</code></a>
 Merge pull request <a 
href="https://redirect.github.com/docker/docker/issues/49024";>#49024</a> from 
thaJeztah/27.x_vendor_buildkit_0.17.3</li>
   <li><a 
href="https://github.com/moby/moby/commit/0e34b3956b6e95324d67517305a3376d36896490";><code>0e34b39</code></a>
 update to go1.22.10</li>
   <li><a 
href="https://github.com/moby/moby/commit/7919b806e7654c999656ff2288fed76542b2707e";><code>7919b80</code></a>
 [27.x] vendor: github.com/moby/buildkit v0.17.3</li>
   <li><a 
href="https://github.com/moby/moby/commit/a92d4c5a575722f61bfe6f659360a17fb6a53f0d";><code>a92d4c5</code></a>
 Merge pull request <a 
href="https://redirect.github.com/docker/docker/issues/49013";>#49013</a> from 
vvoland/49006-27.x</li>
   <li><a 
href="https://github.com/moby/moby/commit/1cc127466dcb3ad693b5285ff13ba3e24163277f";><code>1cc1274</code></a>
 Merge pull request <a 
href="https://redirect.github.com/docker/docker/issues/49010";>#49010</a> from 
vvoland/49009-27.x</li>
   <li><a 
href="https://github.com/moby/moby/commit/525b929947e8cf02246ab53915d1ea89936a2181";><code>525b929</code></a>
 registry: deprecate RepositoryInfo.Class</li>
   <li><a 
href="https://github.com/moby/moby/commit/d6d43b29126043b479ff967f20259a5491d58f0f";><code>d6d43b2</code></a>
 c8d/tag: Don't log a warning if the source image is not dangling</li>
   <li>Additional commits viewable in <a 
href="https://github.com/docker/docker/compare/v27.3.1...v27.4.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/docker/docker&package-manager=go_modules&previous-version=27.3.1+incompatible&new-version=27.4.0+incompatible)](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)
   
   
   </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