Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): Bump github.com/docker/docker from 23.0.6+incompatible t…
…o 24.0.0+incompatible (runfinch#406) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 23.0.6+incompatible to 24.0.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>v24.0.0</h2> <h2>24.0.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%3A24.0.0">docker/cli, 24.0.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A24.0.0">moby/moby, 24.0.0 milestone</a></li> </ul> <h3>New</h3> <ul> <li>Introduce experimental support for containerd as the content store (replacing the existing storage drivers). <a href="https://redirect.github.com/moby/moby/pull/43735">moby/moby#43735</a>, <a href="https://github.com/moby/moby/pulls?q=is%3Apr+is%3Amerged+milestone%3A24.0.0+-label%3Aprocess%2Fcherry-picked+label%3Acontainerd-integration+">other moby/moby pull requests</a></li> <li>The <code>--host</code> CLI flag now supports a path component in a <code>ssh://</code> host address, allowing use of an alternate socket path without configuration on the remote host. <a href="https://redirect.github.com/docker/cli/pull/4073">docker/cli#4073</a></li> <li>The <code>docker info</code> CLI command now reports a version and platform field. <a href="https://redirect.github.com/docker/cli/pull/4180">docker/cli#4180</a></li> <li>Introduce the daemon flag <code>--default-network-opt</code> to configure options for newly created networks. <a href="https://redirect.github.com/moby/moby/pull/43197">moby/moby#43197</a></li> <li>Restrict access to <code>AF_VSOCK</code> in the <code>socket(2)</code> family of syscalls in the default seccomp profile. <a href="https://redirect.github.com/moby/moby/pull/44562">moby/moby#44562</a></li> <li>Introduce support for setting OCI runtime annotations on containers. <a href="https://redirect.github.com/docker/cli/pull/4156">docker/cli#45025</a>, <a href="https://redirect.github.com/moby/moby/pull/45025">moby/moby#45025</a></li> <li>Alternative runtimes can now be configured in <code>daemon.json</code>, enabling runtime names to be aliased and options to be passed. <a href="https://redirect.github.com/moby/moby/pull/45032">moby/moby#45032</a></li> <li>The <code>docker-init</code> binary will now be discovered in FHS-compliant libexec directories, in addition to the <code>PATH</code>. <a href="https://redirect.github.com/moby/moby/pull/45198">moby/moby#45198</a></li> <li>API: Surface the daemon-level <code>--no-new-privileges</code> in <code>GET /info</code>. <a href="https://redirect.github.com/moby/moby/pull/45320">moby/moby#45320</a></li> </ul> <h3>Removed</h3> <ul> <li><code>docker info</code> no longer reports <code>IndexServiceAddress</code>. <a href="https://redirect.github.com/docker/cli/pull/4204">docker/cli#4204</a></li> <li>libnetwork: Remove fallback code for obsolete kernel versions. <a href="https://redirect.github.com/moby/moby/pull/44684">moby/moby#44684</a>, <a href="https://redirect.github.com/moby/moby/pull/44802">moby/moby#44802</a></li> <li>libnetwork: Remove unused code related to classic Swarm. <a href="https://redirect.github.com/moby/moby/pull/44965">moby/moby#44965</a></li> <li>libnetwork: Remove usage of the <code>xt_u32</code> kernel module from encrypted Swarm overlay networks. <a href="https://redirect.github.com/moby/moby/pull/45281">moby/moby#45281</a></li> <li>Remove support for buildkit's deprecated <code>buildinfo</code> in favor of standard provenance attestations. <a href="https://redirect.github.com/moby/moby/pull/45097">moby/moby#45097</a></li> <li>Remove the deprecated AUFS and legacy <code>overlay</code> storage drivers. <a href="https://redirect.github.com/moby/moby/pull/45342">moby/moby#45342</a>, <a href="https://redirect.github.com/moby/moby/pull/45359">moby/moby#</a></li> <li>Remove the deprecated <code>overlay2.override_kernel_check</code> storage driver option. <a href="https://redirect.github.com/moby/moby/pull/45368">moby/moby#45368</a></li> <li>Remove workarounds for obsolete versions of <code>apparmor_parser</code> from the AppArmor profiles. <a href="https://redirect.github.com/moby/moby/pull/45500">moby/moby#45500</a></li> <li>API: <code>GET /images/json</code> no longer represents empty RepoTags and RepoDigests as<code><none>:<none></code>/<code><none>@<none></code>. Empty arrays are be returned instead on API >= 1.43. <a href="https://redirect.github.com/moby/moby/pull/45068">moby/moby#45068</a></li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate the <code>--oom-score-adjust</code> daemon option. <a href="https://redirect.github.com/moby/moby/pull/45315">moby/moby#45315</a></li> <li>API: Deprecate the <code>VirtualSize</code> field in <code>GET /images/json</code> and <code>GET /images/{id}/json</code>. <a href="https://redirect.github.com/moby/moby/pull/45346">moby/moby#45346</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>The <code>docker stack</code> command no longer validates the <code>build</code> section of Compose files. <a href="https://redirect.github.com/docker/cli/pull/4214">docker/cli#4214</a></li> <li>Fix lingering healthcheck processes after timeout is reached. <a href="https://redirect.github.com/moby/moby/pull/43739">moby/moby#43739</a></li> <li>Reduce the overhead of container startup when using the <code>overlay2</code> storage driver. <a href="https://redirect.github.com/moby/moby/pull/44285">moby/moby#44285</a></li> <li>API: Handle multiple <code>before=</code> and <code>since=</code> filters in <code>GET /images</code>. <a href="https://redirect.github.com/moby/moby/pull/44503">moby/moby#44503</a></li> <li>Fix numerous bugs in the embedded DNS resolver implementation used by user-defined networks. <a href="https://redirect.github.com/moby/moby/pull/44664">moby/moby#44664</a></li> <li>Add <code>execDuration</code> field to the map of event attributes. <a href="https://redirect.github.com/moby/moby/pull/45494">moby/moby#45494</a></li> <li>Swarm-level networks can now be created with the Windows <code>internal</code>, <code>l2bridge</code>, and <code>nat</code> drivers. <a href="https://redirect.github.com/moby/swarmkit/pull/3121">moby/swarmkit#3121</a>, <a href="https://redirect.github.com/moby/moby/pull/45291">moby/moby#45291</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update Go to <code>1.20.4</code>. <a href="https://redirect.github.com/docker/cli/pull/4253">docker/cli#4253</a>, <a href="https://redirect.github.com/moby/moby/pull/45456">moby/moby#45456</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/1331b8c39a601c77d678f3e03f3f39cb07aa5f76"><code>1331b8c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45537">#45537</a> from thaJeztah/24.0_backport_containerd_binary_1.7.1</li> <li><a href="https://github.com/moby/moby/commit/907f037141b41d0a96daa379fd2cbd0b0eee7569"><code>907f037</code></a> update containerd binary to v1.7.1</li> <li><a href="https://github.com/moby/moby/commit/a5b597ea51348f5f922fdd2167cba8f57c6961f3"><code>a5b597e</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45531">#45531</a> from rumpl/24.0_backport_fix-empty-auth-pull</li> <li><a href="https://github.com/moby/moby/commit/8bbfa3274109a240952c08a2263d0cd256a27311"><code>8bbfa32</code></a> c8d: The authorizer needs to be set even if AuthConfig is empty</li> <li><a href="https://github.com/moby/moby/commit/807e415260380b55af87ef50d72abcef9466e43b"><code>807e415</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45526">#45526</a> from laurazard/backport-classic-builder</li> <li><a href="https://github.com/moby/moby/commit/8587a1c617dae69474e8e3847d5fd799de156da6"><code>8587a1c</code></a> c8d/builder: implement cache</li> <li><a href="https://github.com/moby/moby/commit/9717369913214e9fbf1d656af24092d65a1e0102"><code>9717369</code></a> c8d: implement classic builder</li> <li><a href="https://github.com/moby/moby/commit/ed0c147c8ffd969487ecc1afb74832f8aa4e798e"><code>ed0c147</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45523">#45523</a> from thaJeztah/24.0_backport_cleanup_reexec_inits</li> <li><a href="https://github.com/moby/moby/commit/90be9ab80267fbed15503c9030b864151f73503c"><code>90be9ab</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45525">#45525</a> from thaJeztah/24.0_backport_c8d_authconfig_default</li> <li><a href="https://github.com/moby/moby/commit/d73f7031e0cb866fae12e582a6846114303a10fa"><code>d73f703</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/45521">#45521</a> from thaJeztah/24.0_backport_vendor_distribution_v2...</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v23.0.6...v24.0.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=23.0.6+incompatible&new-version=24.0.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 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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information