-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[27.x backport] command: check for wsl mount path on windows #5432
[27.x backport] command: check for wsl mount path on windows #5432
Conversation
This checks for the equivalent WSL mount path on windows. WSL will mount the windows drives at `/mnt/c` (or whichever drive is being used). This is done by parsing a UNC path with forward slashes from the unix socket URL. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com> (cherry picked from commit 38c3fef) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 27.x #5432 +/- ##
==========================================
- Coverage 59.81% 59.79% -0.03%
==========================================
Files 345 345
Lines 23396 23439 +43
==========================================
+ Hits 13994 14015 +21
- Misses 8432 8450 +18
- Partials 970 974 +4 |
Because there are lots of changes in 27.x , can we get a 27.2.x (or just 27.2) branch? This PR would still go in as well. |
For vendoring into BuildKit/Buildx? |
@laurazard Yes, for vendoring into buildx. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@tonistiigi I'm a little worried about dependencies mismatch/unexpected consequences of not having all those lined up, especially thinking about OTEL dependencies and things of the sort, unless we take care to backport all of those as well. Are there that many changes vs the last 27.2.x release? We can definitely do it, just need to take some care/would prefer not to. |
@thaJeztah thoughts on that? |
@laurazard We only want this change in buildx v0.17.1 , no other cli changes or vendor updates. Rest of 27.x (27.3) can go to buildx master. v0.17.0 has v27.2.1 vendored atm. |
Right but will buildx 0.17.1 go out with engine+CLI 27.3? I guess it's less scary if it's just for buildx/not BuildKit. I can't think of any change since 27.2.1 in the CLI code that would require a vendor in plugins. We could branch off of whatever last commit went into 27.2.1 and cherry-pick this PR if you're okay with vendoring a branch. |
No, that would probably be
Yes, that is fine. We can vendor a branch commit. We don't need a 27.2.2 tag for this. |
@tonistiigi I'm confused; what are the "lots of changes"? Looking at the list of PRs for this release; https://github.com/docker/cli/pulls?q=is%3Apr+milestone%3A27.3.0 Outside of this PR, the only changes are a bugfix only affecting the docker CLI itself (#5426), a change in the output for the docker CLI itself (#5423), and some documentation updates. All vendor updates are because of buildkit those updates For the daemon https://github.com/moby/moby/pulls?q=is%3Apr+milestone%3A27.3.0 A bugfix for NVIDIA GPU support (moby/moby#48483), and containerd handling of pruning (moby/moby#48488), which don't affect BuildKit vendoring. Some linting fixes (moby/moby#48481) and a bugfix for seccomp on riscv64 (moby/moby#48463), which would affect BuildKit (but only riscv64) All vendoring updates were because of the BuildKit update; moby/moby#48469 |
I had a look at the changes in buildkit; The first commit shows the changes in docker and docker/cli code. Second commit contains dependency updates, which are not "enforced" because we don't have a go.mod.
Also had a look at the buildx changes; And this is the diff (I excluded the swagger-file and go.sum changes); git diff -- . ':(exclude)go.sum' ':(exclude)vendor/modules.txt' ':(exclude)vendor/github.com/docker/docker/api/swagger.yaml' diff --git a/go.mod b/go.mod
index 24d06871..b0e0acf8 100644
--- a/go.mod
+++ b/go.mod
@@ -16,9 +16,9 @@ require (
github.com/containerd/typeurl/v2 v2.2.0
github.com/creack/pty v1.1.21
github.com/distribution/reference v0.6.0
- github.com/docker/cli v27.2.1+incompatible
+ github.com/docker/cli v27.2.2-0.20240912223434-c85c3df6b5b7+incompatible // 27.x branch / v27.3.0-dev
github.com/docker/cli-docs-tool v0.8.0
- github.com/docker/docker v27.2.1+incompatible
+ github.com/docker/docker v27.2.2-0.20240912213415-bf60e5cced83+incompatible // 27.x branch / v27.3.0-dev
github.com/docker/go-units v0.5.0
github.com/gofrs/flock v0.12.1
github.com/gogo/protobuf v1.3.2
diff --git a/vendor/github.com/docker/docker/api/types/filters/parse.go b/vendor/github.com/docker/docker/api/types/filters/parse.go
index 0c39ab5f..0914b2a4 100644
--- a/vendor/github.com/docker/docker/api/types/filters/parse.go
+++ b/vendor/github.com/docker/docker/api/types/filters/parse.go
@@ -196,7 +196,7 @@ func (args Args) Match(field, source string) bool {
}
// GetBoolOrDefault returns a boolean value of the key if the key is present
-// and is intepretable as a boolean value. Otherwise the default value is returned.
+// and is interpretable as a boolean value. Otherwise the default value is returned.
// Error is not nil only if the filter values are not valid boolean or are conflicting.
func (args Args) GetBoolOrDefault(key string, defaultValue bool) (bool, error) {
fieldValues, ok := args.fields[key]
diff --git a/vendor/github.com/docker/docker/api/types/image/summary.go b/vendor/github.com/docker/docker/api/types/image/summary.go
index c7168fe6..e87e216a 100644
--- a/vendor/github.com/docker/docker/api/types/image/summary.go
+++ b/vendor/github.com/docker/docker/api/types/image/summary.go
@@ -12,7 +12,7 @@ type Summary struct {
Containers int64 `json:"Containers"`
// Date and time at which the image was created as a Unix timestamp
- // (number of seconds sinds EPOCH).
+ // (number of seconds since EPOCH).
//
// Required: true
Created int64 `json:"Created"`
diff --git a/vendor/github.com/docker/docker/api/types/swarm/swarm.go b/vendor/github.com/docker/docker/api/types/swarm/swarm.go
index 3eae4b9b..1b4be6ff 100644
--- a/vendor/github.com/docker/docker/api/types/swarm/swarm.go
+++ b/vendor/github.com/docker/docker/api/types/swarm/swarm.go
@@ -122,7 +122,7 @@ type CAConfig struct {
SigningCAKey string `json:",omitempty"`
// If this value changes, and there is no specified signing cert and key,
- // then the swarm is forced to generate a new root certificate ane key.
+ // then the swarm is forced to generate a new root certificate and key.
ForceRotate uint64 `json:",omitempty"`
}
diff --git a/vendor/github.com/docker/docker/api/types/volume/cluster_volume.go b/vendor/github.com/docker/docker/api/types/volume/cluster_volume.go
index bbd9ff0b..618a4816 100644
--- a/vendor/github.com/docker/docker/api/types/volume/cluster_volume.go
+++ b/vendor/github.com/docker/docker/api/types/volume/cluster_volume.go
@@ -414,7 +414,7 @@ type Info struct {
// the Volume has not been successfully created yet.
VolumeID string `json:",omitempty"`
- // AccessibleTopolgoy is the topology this volume is actually accessible
+ // AccessibleTopology is the topology this volume is actually accessible
// from.
AccessibleTopology []Topology `json:",omitempty"`
}
diff --git a/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go b/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go
index 035160c8..8d2c8857 100644
--- a/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go
+++ b/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go
@@ -290,7 +290,7 @@ func DisplayJSONMessagesStream(in io.Reader, out io.Writer, terminalFd uintptr,
}
// Stream is an io.Writer for output with utilities to get the output's file
-// descriptor and to detect wether it's a terminal.
+// descriptor and to detect whether it's a terminal.
//
// it is subset of the streams.Out type in
// https://pkg.go.dev/github.com/docker/cli@v20.10.17+incompatible/cli/streams#Out
diff --git a/vendor/github.com/docker/docker/pkg/pools/pools.go b/vendor/github.com/docker/docker/pkg/pools/pools.go
index 3792c67a..3ea3012b 100644
--- a/vendor/github.com/docker/docker/pkg/pools/pools.go
+++ b/vendor/github.com/docker/docker/pkg/pools/pools.go
@@ -124,7 +124,7 @@ func (bufPool *BufioWriterPool) Put(b *bufio.Writer) {
}
// NewWriteCloserWrapper returns a wrapper which puts the bufio.Writer back
-// into the pool and closes the writer if it's an io.Writecloser.
+// into the pool and closes the writer if it's an io.WriteCloser.
func (bufPool *BufioWriterPool) NewWriteCloserWrapper(buf *bufio.Writer, w io.Writer) io.WriteCloser {
return ioutils.NewWriteCloserWrapper(w, func() error {
buf.Flush()
diff --git a/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go b/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go
index facfbb31..b877ecc5 100644
--- a/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go
+++ b/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go
@@ -6,7 +6,7 @@ import (
// Lgetxattr retrieves the value of the extended attribute identified by attr
// and associated with the given path in the file system.
-// It will returns a nil slice and nil error if the xattr is not set.
+// It returns a nil slice and nil error if the xattr is not set.
func Lgetxattr(path string, attr string) ([]byte, error) {
sysErr := func(err error) ([]byte, error) {
return nil, &XattrError{Op: "lgetxattr", Attr: attr, Path: path, Err: err}
diff --git a/vendor/github.com/docker/docker/registry/config.go b/vendor/github.com/docker/docker/registry/config.go
index 84b0a63a..e1b0a0ca 100644
--- a/vendor/github.com/docker/docker/registry/config.go
+++ b/vendor/github.com/docker/docker/registry/config.go
@@ -359,7 +359,7 @@ func hasScheme(reposName string) bool {
}
func validateHostPort(s string) error {
- // Split host and port, and in case s can not be splitted, assume host only
+ // Split host and port, and in case s can not be split, assume host only
host, port, err := net.SplitHostPort(s)
if err != nil {
host = s
---
|
TL;DR; there are no code changes except for typo-fixes in code-comments. The dependencies can be updated, but (because we're not a go module yet) could be skipped if you decide to. |
Let me bring this one in |
Ok, seems that we can do without it. There are thousands of lines of changes, but because cli does not use go modules, nothing under |
Right, but most of those 1000s lines of changes was because buildkit updates those, so we had to update as well😂 |
…y with 5 updates (#882) Bumps the production-dependencies group with 3 updates in the /bi directory: [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2), [github.com/docker/docker](https://github.com/docker/docker) and [github.com/samber/slog-multi](https://github.com/samber/slog-multi). Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.35 to 1.27.36 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.35...config/v1.27.36">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.30.8 to 1.31.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-go-v2/compare/service/sts/v1.30.8...v1.31.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/smithy-go` from 1.20.4 to 1.21.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws/smithy-go/blob/main/CHANGELOG.md">github.com/aws/smithy-go's changelog</a>.</em></p> <blockquote> <h1>Release (2024-09-19)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.21.0 <ul> <li><strong>Feature</strong>: Add tracing and metrics APIs, and builtin instrumentation for both, in generated clients.</li> </ul> </li> <li><code>github.com/aws/smithy-go/metrics/smithyotelmetrics</code>: <a href="https://github.com/aws/smithy-go/blob/main/metrics/smithyotelmetrics/CHANGELOG.md#v100-2024-09-19">v1.0.0</a> <ul> <li><strong>Release</strong>: Initial release of <code>smithyotelmetrics</code> module, which is used to adapt an OpenTelemetry SDK meter provider to be used with Smithy clients.</li> </ul> </li> <li><code>github.com/aws/smithy-go/tracing/smithyoteltracing</code>: <a href="https://github.com/aws/smithy-go/blob/main/tracing/smithyoteltracing/CHANGELOG.md#v100-2024-09-19">v1.0.0</a> <ul> <li><strong>Release</strong>: Initial release of <code>smithyoteltracing</code> module, which is used to adapt an OpenTelemetry SDK tracer provider to be used with Smithy clients.</li> </ul> </li> </ul> <h1>Release (2024-08-14)</h1> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.20.4 <ul> <li><strong>Dependency Update</strong>: Bump minimum Go version to 1.21.</li> </ul> </li> </ul> <h1>Release (2024-06-27)</h1> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.20.3 <ul> <li><strong>Bug Fix</strong>: Fix encoding/cbor test overflow on x86.</li> </ul> </li> </ul> <h1>Release (2024-03-29)</h1> <ul> <li>No change notes available for this release.</li> </ul> <h1>Release (2024-02-21)</h1> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.20.1 <ul> <li><strong>Bug Fix</strong>: Remove runtime dependency on go-cmp.</li> </ul> </li> </ul> <h1>Release (2024-02-13)</h1> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.20.0 <ul> <li><strong>Feature</strong>: Add codegen definition for sigv4a trait.</li> <li><strong>Feature</strong>: Bump minimum Go version to 1.20 per our language support policy.</li> </ul> </li> </ul> <h1>Release (2023-12-07)</h1> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/smithy-go</code>: v1.19.0 <ul> <li><strong>Feature</strong>: Support modeled request compression.</li> </ul> </li> </ul> <h1>Release (2023-11-30)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/smithy-go/commit/85dcb19b11c07f02d27bc664e40aefb9b16052d8"><code>85dcb19</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/smithy-go/commit/d2ad136d4774f0bef7fa710ddc774063ada2aa68"><code>d2ad136</code></a> add tracing and metrics support to generated clients (<a href="https://redirect.github.com/aws/smithy-go/issues/538">#538</a>)</li> <li>See full diff in <a href="https://github.com/aws/smithy-go/compare/v1.20.4...v1.21.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `github.com/samber/slog-multi` from 1.2.1 to 1.2.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/samber/slog-multi/releases">github.com/samber/slog-multi's releases</a>.</em></p> <blockquote> <h2>v1.2.2</h2> <h2>What's Changed</h2> <ul> <li>Remove unnecessary memory allocation by <a href="https://github.com/maruel"><code>@maruel</code></a> in <a href="https://redirect.github.com/samber/slog-multi/pull/11">samber/slog-multi#11</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/maruel"><code>@maruel</code></a> made their first contribution in <a href="https://redirect.github.com/samber/slog-multi/pull/11">samber/slog-multi#11</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/samber/slog-multi/compare/v1.2.1...v1.2.2">https://github.com/samber/slog-multi/compare/v1.2.1...v1.2.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/samber/slog-multi/commit/380e5ddd844835d2618319d10e292204e8696bb5"><code>380e5dd</code></a> bump v1.2.2</li> <li><a href="https://github.com/samber/slog-multi/commit/14fd0acc225277bf1916382bf203bacce7798f4c"><code>14fd0ac</code></a> Remove unnecessary memory allocation (<a href="https://redirect.github.com/samber/slog-multi/issues/11">#11</a>)</li> <li><a href="https://github.com/samber/slog-multi/commit/804146f39255fa8517459ce6a0b2a18f3fa75718"><code>804146f</code></a> Update README.md</li> <li>See full diff in <a href="https://github.com/samber/slog-multi/compare/v1.2.1...v1.2.2">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the go group with 9 updates: | Package | From | To | | --- | --- | --- | | [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.5` | `1.31.0` | | [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.33` | `1.27.36` | | [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.17.32` | `1.17.34` | | [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) | `1.17.18` | `1.17.22` | | [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.33.0` | `1.35.0` | | [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.61.2` | `1.63.0` | | [github.com/docker/cli](https://github.com/docker/cli) | `27.2.1+incompatible` | `27.3.1+incompatible` | | [github.com/docker/docker](https://github.com/docker/docker) | `27.2.1+incompatible` | `27.3.1+incompatible` | Updates `github.com/aws/aws-sdk-go-v2` from 1.30.5 to 1.31.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/v1.30.5...v1.31.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.33 to 1.27.36 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.33...config/v1.27.36">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.32 to 1.17.34 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.17.32...credentials/v1.17.34">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/feature/s3/manager` from 1.17.18 to 1.17.22 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50"><code>7c25c21</code></a> Release 2024-06-26</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1"><code>b374423</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6"><code>923f54e</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e"><code>5f3bdfc</code></a> track changes for string_array endpoint parameters (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699">#2699</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036"><code>2b4498c</code></a> Release 2024-06-25</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818"><code>332d372</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17"><code>9397b8d</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f"><code>674e1e4</code></a> Release 2024-06-24</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0"><code>406eeb4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105"><code>17bd894</code></a> Update endpoints model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.17.18...credentials/v1.17.22">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/service/ecr` from 1.33.0 to 1.35.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/CHANGELOG.md">github.com/aws/aws-sdk-go-v2/service/ecr's changelog</a>.</em></p> <blockquote> <h1>Release (2023-06-16)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/applicationdiscoveryservice/CHANGELOG.md#v1160-2023-06-16">v1.16.0</a> <ul> <li><strong>Feature</strong>: Add Amazon EC2 instance recommendations export</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/connect</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/connect/CHANGELOG.md#v1590-2023-06-16">v1.59.0</a> <ul> <li><strong>Feature</strong>: Updates the *InstanceStorageConfig APIs to support a new ResourceType: SCREEN_RECORDINGS to enable screen recording and specify the storage configurations for publishing the recordings. Also updates DescribeInstance and ListInstances APIs to include InstanceAccessUrl attribute in the API response.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/iam</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/iam/CHANGELOG.md#v1203-2023-06-16">v1.20.3</a> <ul> <li><strong>Documentation</strong>: Documentation updates for AWS Identity and Access Management (IAM).</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/s3</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/s3/CHANGELOG.md#v1350-2023-06-16">v1.35.0</a> <ul> <li><strong>Feature</strong>: This release adds SDK support for request-payer request header and request-charged response header in the "GetBucketAccelerateConfiguration", "ListMultipartUploads", "ListObjects", "ListObjectsV2" and "ListObjectVersions" S3 APIs.</li> </ul> </li> </ul> <h1>Release (2023-06-15)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/auditmanager</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/auditmanager/CHANGELOG.md#v1250-2023-06-15">v1.25.0</a> <ul> <li><strong>Feature</strong>: This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/efs</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/efs/CHANGELOG.md#v1203-2023-06-15">v1.20.3</a> <ul> <li><strong>Documentation</strong>: Documentation updates for EFS.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/guardduty</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/guardduty/CHANGELOG.md#v1232-2023-06-15">v1.23.2</a> <ul> <li><strong>Documentation</strong>: Updated descriptions for some APIs.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/location</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/location/CHANGELOG.md#v1240-2023-06-15">v1.24.0</a> <ul> <li><strong>Feature</strong>: Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.</li> </ul> </li> </ul> <h1>Release (2023-06-13)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/cloudtrail</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/cloudtrail/CHANGELOG.md#v1270-2023-06-13">v1.27.0</a> <ul> <li><strong>Feature</strong>: This feature allows users to view dashboards for CloudTrail Lake event data stores.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/codegurusecurity</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/codegurusecurity/CHANGELOG.md#v100-2023-06-13">v1.0.0</a> <ul> <li><strong>Release</strong>: New AWS service client module</li> <li><strong>Feature</strong>: Initial release of Amazon CodeGuru Security APIs</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/drs</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/drs/CHANGELOG.md#v1140-2023-06-13">v1.14.0</a> <ul> <li><strong>Feature</strong>: Added APIs to support network replication and recovery using AWS Elastic Disaster Recovery.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/ec2</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/ec2/CHANGELOG.md#v11000-2023-06-13">v1.100.0</a> <ul> <li><strong>Feature</strong>: This release introduces a new feature, EC2 Instance Connect Endpoint, that enables you to connect to a resource over TCP, without requiring the resource to have a public IPv4 address.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/imagebuilder</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/imagebuilder/CHANGELOG.md#v1235-2023-06-13">v1.23.5</a> <ul> <li><strong>Documentation</strong>: Change the Image Builder ImagePipeline dateNextRun field to more accurately describe the data.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/lightsail</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/lightsail/CHANGELOG.md#v1270-2023-06-13">v1.27.0</a> <ul> <li><strong>Feature</strong>: This release adds pagination for the Get Certificates API operation.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/s3</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/s3/CHANGELOG.md#v1340-2023-06-13">v1.34.0</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/d26d4922424dcb67dd89db55ad2f61bbce99b42a"><code>d26d492</code></a> Release 2023-06-16</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c3dc991ca0f4c582cf2e060880f68b0327233351"><code>c3dc991</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/cd5b3f0aa76862d2dcb21d1d78c4f5d89141df86"><code>cd5b3f0</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c92ebc88890d9400122d55e2fc458931e32423ae"><code>c92ebc8</code></a> Release 2023-06-15</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/3488004c6c0a1ab352f4e05d492f6078c1a86dcf"><code>3488004</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/3ee898185413e0b3f92f599dc991f492d13c2b27"><code>3ee8981</code></a> Update endpoints model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/09d9f49930ba1d3f5070cc14467a817b8ea0d65d"><code>09d9f49</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/844ff45cdc76182229ad098c95bf3f5ab8c20e9f"><code>844ff45</code></a> Release 2023-06-13</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/cc294064366687ef764f7bb73a7b08d7222a4f28"><code>cc29406</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/aa907c6969a3d103e6659d9f098f55d13dfde232"><code>aa907c6</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.33.0...service/s3/v1.35.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.61.2 to 1.63.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.61.2...service/s3/v1.63.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/containerd/errdefs` from 0.1.0 to 0.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/containerd/errdefs/releases">github.com/containerd/errdefs's releases</a>.</em></p> <blockquote> <h2>v0.2.0</h2> <h2>What's Changed</h2> <ul> <li>Add more grpc types by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/3">containerd/errdefs#3</a></li> <li>Split gRPC and HTTP error utility into seperate packages by <a href="https://github.com/austinvazquez"><code>@austinvazquez</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/5">containerd/errdefs#5</a></li> <li>Fix Cancelled interface typo by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/6">containerd/errdefs#6</a></li> <li>Add stack support by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/8">containerd/errdefs#8</a></li> <li>Add a resolve error function to return first error by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/9">containerd/errdefs#9</a></li> <li>Add support for custom error messages by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/10">containerd/errdefs#10</a></li> <li>Add support for grpc error details and multiple errors by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/7">containerd/errdefs#7</a></li> <li>Complete interface definitions for errors by <a href="https://github.com/dmcgowan"><code>@dmcgowan</code></a> in <a href="https://redirect.github.com/containerd/errdefs/pull/18">containerd/errdefs#18</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/austinvazquez"><code>@austinvazquez</code></a> made their first contribution in <a href="https://redirect.github.com/containerd/errdefs/pull/5">containerd/errdefs#5</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/containerd/errdefs/compare/v0.1.0...v0.2.0">https://github.com/containerd/errdefs/compare/v0.1.0...v0.2.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/containerd/errdefs/commit/02b65bcc1b50358f7c1cca419c76f538349af784"><code>02b65bc</code></a> Merge pull request <a href="https://redirect.github.com/containerd/errdefs/issues/18">#18</a> from dmcgowan/add-missing-interfaces</li> <li><a href="https://github.com/containerd/errdefs/commit/41d12e1db5cf9452436122e3c648e761453a112c"><code>41d12e1</code></a> Complete interface definitions for errors</li> <li><a href="https://github.com/containerd/errdefs/commit/70440b892c8b3081371ec5426a4d4a33d84acea3"><code>70440b8</code></a> Merge pull request <a href="https://redirect.github.com/containerd/errdefs/issues/7">#7</a> from dmcgowan/grpc-error-details</li> <li><a href="https://github.com/containerd/errdefs/commit/b9dce4d7bd5a514f38c0b47bcc4397b7ad7930f4"><code>b9dce4d</code></a> Add support for grpc error details</li> <li><a href="https://github.com/containerd/errdefs/commit/ffb0349b41b940e9415587a6e12d571cd9a55fbe"><code>ffb0349</code></a> Update Resolve function to support Is interface</li> <li><a href="https://github.com/containerd/errdefs/commit/124d0dc9f0cd27578004a3f14e01ef8a3456d147"><code>124d0dc</code></a> Merge pull request <a href="https://redirect.github.com/containerd/errdefs/issues/10">#10</a> from dmcgowan/custom-error-messages</li> <li><a href="https://github.com/containerd/errdefs/commit/dc9b20ea99092223cac03215dcaf6cd96f190a7c"><code>dc9b20e</code></a> Add support for custom error messages</li> <li><a href="https://github.com/containerd/errdefs/commit/6c7f4021d232b3e8bfedd80e8cbac1f8d1eddffa"><code>6c7f402</code></a> Merge pull request <a href="https://redirect.github.com/containerd/errdefs/issues/9">#9</a> from dmcgowan/resolve-error</li> <li><a href="https://github.com/containerd/errdefs/commit/9f87502f13ad5c2758b225ff9bc10f3d9f932010"><code>9f87502</code></a> Add a resolve error function to return first error</li> <li><a href="https://github.com/containerd/errdefs/commit/6fb6cf070c0032afa4fd2b7c8c1031783d23d2bf"><code>6fb6cf0</code></a> Merge pull request <a href="https://redirect.github.com/containerd/errdefs/issues/8">#8</a> from dmcgowan/add-stack-support</li> <li>Additional commits viewable in <a href="https://github.com/containerd/errdefs/compare/v0.1.0...v0.2.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/cli` from 27.2.1+incompatible to 27.3.1+incompatible <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/docker/cli/commit/ce1223035ac3ab8922717092e63a184cf67b493d"><code>ce12230</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5462">#5462</a> from thaJeztah/27.x_backport_bump_compose</li> <li><a href="https://github.com/docker/cli/commit/263ba959c4d07813723518caaa922722102e6646"><code>263ba95</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5461">#5461</a> from laurazard/27.x-backport-update-VERSION</li> <li><a href="https://github.com/docker/cli/commit/be9b9f3d70cfd69881db72a843962b1ff55ed1b5"><code>be9b9f3</code></a> Update <code>VERSION</code> file to <code>v27.3.1-dev</code></li> <li><a href="https://github.com/docker/cli/commit/a4149b0c3d102b0a1644022f75dd8f2103e234c2"><code>a4149b0</code></a> Dockerfile: update compose to v2.29.7</li> <li><a href="https://github.com/docker/cli/commit/4aac4154b0a7760ddf02233fa1223a9fed07ecc9"><code>4aac415</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5458">#5458</a> from thaJeztah/27.x_bump_engine3</li> <li><a href="https://github.com/docker/cli/commit/854695884ad1b5dc8a0fab0e2ebccbf4d634f66e"><code>8546958</code></a> vendor: github.com/docker/docker v27.3.0</li> <li><a href="https://github.com/docker/cli/commit/f05200311df1e062f16a1ef3700ab514242d8f5a"><code>f052003</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5457">#5457</a> from laurazard/backport-dropped-defer</li> <li><a href="https://github.com/docker/cli/commit/460f1becc5c330e8df1f79857a089a9808132de6"><code>460f1be</code></a> telemetry: fix early meterprovider shutdown</li> <li><a href="https://github.com/docker/cli/commit/e85edf8556f9c8afdfcdce50c19f0b943efa1111"><code>e85edf8</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5452">#5452</a> from laurazard/27.3.0-match-moby-version</li> <li><a href="https://github.com/docker/cli/commit/ca62759b0fd5d3c5858e2101089beda8ad55d21b"><code>ca62759</code></a> vendor: github.com/docker/docker v27.3.0-rc2</li> <li>Additional commits viewable in <a href="https://github.com/docker/cli/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Bumps the go-dev-dependencies group with 2 updates: [github.com/docker/docker](https://github.com/docker/docker) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.66.2 to 1.67.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.67.0</h2> <h1>Bug Fixes</h1> <ul> <li>ringhash: when used with multiple EDS priorities, fix bug that could prevent a higher priority from recovering from transient failure. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7364">#7364</a>) <ul> <li>Special Thanks: <a href="https://github.com/atollena"><code>@atollena</code></a></li> </ul> </li> </ul> <h1>Behavior Changes</h1> <ul> <li>In accordance with <a href="https://tools.ietf.org/html/rfc7540#section-3.3">RFC 7540</a>, clients and servers will now reject TLS connections that don't support ALPN. This can be disabled by setting the environment variable <code>GRPC_ENFORCE_ALPN_ENABLED</code> to <code>false</code> (case insensitive). Please file a bug if you encounter any issues with this behavior. The environment variable to revert this behavior will be removed in an upcoming release. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/6f50403edb0c2db1bb557168cf4e6f87ea2efdb5"><code>6f50403</code></a> Change version to 1.67.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7604">#7604</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3c3a0257a33b59b0d0a072696775b53392c7d8ae"><code>3c3a025</code></a> mem: replace flate.Reader reference (<a href="https://redirect.github.com/grpc/grpc-go/issues/7595">#7595</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/7637">#7637</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3ffb98b2c93a9a633f7415893c40946e2a6a6e89"><code>3ffb98b</code></a> .*: fix revive lints <code>redefines-builtin-id</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7552">#7552</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/56660492e4a669c8c0f02bd7f31ad31a3ef59883"><code>5666049</code></a> vet: enforce revive linter (<a href="https://redirect.github.com/grpc/grpc-go/issues/7589">#7589</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/c6ad07fa041eea78cd6757a51f252dd407105452"><code>c6ad07f</code></a> protoc: regenerate protos (<a href="https://redirect.github.com/grpc/grpc-go/issues/7590">#7590</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/70f19eecd168b0ea1f15e991170576bf36f74b40"><code>70f19ee</code></a> credentials/tls: default GRPC_ENFORCE_ALPN_ENABLED to true (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/92111dc36694c570dc873b9a5a461ef953ea2b54"><code>92111dc</code></a> xds: keep ads flow control local to xdsclient/transport package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7578">#7578</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/535bdce10d2c1127e526e986b04b38995fe84712"><code>535bdce</code></a> estats: remove dependency on testing package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7579">#7579</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/0f03c747b13b41c3601ee835f1f8bf0f457b3fd2"><code>0f03c74</code></a> .*: fix revive lint issues <code>unused-parameter</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7580">#7580</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/6147c81cd047f0237c9bfa553fb61ce74bfa37aa"><code>6147c81</code></a> stats/opentelemetry: Optimize slice allocations (<a href="https://redirect.github.com/grpc/grpc-go/issues/7525">#7525</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.66.2...v1.67.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…tory with 5 updates (#787) Bumps the all-go-mod-patch-and-minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.5` | `1.31.0` | | [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.33` | `1.27.36` | | [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.33.0` | `1.35.0` | | [github.com/docker/cli](https://github.com/docker/cli) | `27.2.1+incompatible` | `27.3.1+incompatible` | | [github.com/docker/docker](https://github.com/docker/docker) | `27.2.1+incompatible` | `27.3.1+incompatible` | Updates `github.com/aws/aws-sdk-go-v2` from 1.30.5 to 1.31.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/v1.30.5...v1.31.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.33 to 1.27.36 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3"><code>2f44586</code></a> Release 2024-09-20</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6"><code>22d0876</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a"><code>5454ab9</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612"><code>06150d9</code></a> add tracing and metrics support (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798">#2798</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000"><code>18f7b40</code></a> Release 2024-09-19</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d"><code>e91c9c4</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629"><code>6df0a09</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196"><code>98ae688</code></a> Release 2024-09-18</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e"><code>222928c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7"><code>887c4de</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.33...config/v1.27.36">compare view</a></li> </ul> </details> <br /> Updates `github.com/aws/aws-sdk-go-v2/service/ecr` from 1.33.0 to 1.35.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/CHANGELOG.md">github.com/aws/aws-sdk-go-v2/service/ecr's changelog</a>.</em></p> <blockquote> <h1>Release (2023-06-16)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/applicationdiscoveryservice/CHANGELOG.md#v1160-2023-06-16">v1.16.0</a> <ul> <li><strong>Feature</strong>: Add Amazon EC2 instance recommendations export</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/connect</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/connect/CHANGELOG.md#v1590-2023-06-16">v1.59.0</a> <ul> <li><strong>Feature</strong>: Updates the *InstanceStorageConfig APIs to support a new ResourceType: SCREEN_RECORDINGS to enable screen recording and specify the storage configurations for publishing the recordings. Also updates DescribeInstance and ListInstances APIs to include InstanceAccessUrl attribute in the API response.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/iam</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/iam/CHANGELOG.md#v1203-2023-06-16">v1.20.3</a> <ul> <li><strong>Documentation</strong>: Documentation updates for AWS Identity and Access Management (IAM).</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/s3</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/s3/CHANGELOG.md#v1350-2023-06-16">v1.35.0</a> <ul> <li><strong>Feature</strong>: This release adds SDK support for request-payer request header and request-charged response header in the "GetBucketAccelerateConfiguration", "ListMultipartUploads", "ListObjects", "ListObjectsV2" and "ListObjectVersions" S3 APIs.</li> </ul> </li> </ul> <h1>Release (2023-06-15)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/auditmanager</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/auditmanager/CHANGELOG.md#v1250-2023-06-15">v1.25.0</a> <ul> <li><strong>Feature</strong>: This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/efs</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/efs/CHANGELOG.md#v1203-2023-06-15">v1.20.3</a> <ul> <li><strong>Documentation</strong>: Documentation updates for EFS.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/guardduty</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/guardduty/CHANGELOG.md#v1232-2023-06-15">v1.23.2</a> <ul> <li><strong>Documentation</strong>: Updated descriptions for some APIs.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/location</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/location/CHANGELOG.md#v1240-2023-06-15">v1.24.0</a> <ul> <li><strong>Feature</strong>: Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.</li> </ul> </li> </ul> <h1>Release (2023-06-13)</h1> <h2>General Highlights</h2> <ul> <li><strong>Dependency Update</strong>: Updated to the latest SDK module versions</li> </ul> <h2>Module Highlights</h2> <ul> <li><code>github.com/aws/aws-sdk-go-v2/service/cloudtrail</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/cloudtrail/CHANGELOG.md#v1270-2023-06-13">v1.27.0</a> <ul> <li><strong>Feature</strong>: This feature allows users to view dashboards for CloudTrail Lake event data stores.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/codegurusecurity</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/codegurusecurity/CHANGELOG.md#v100-2023-06-13">v1.0.0</a> <ul> <li><strong>Release</strong>: New AWS service client module</li> <li><strong>Feature</strong>: Initial release of Amazon CodeGuru Security APIs</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/drs</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/drs/CHANGELOG.md#v1140-2023-06-13">v1.14.0</a> <ul> <li><strong>Feature</strong>: Added APIs to support network replication and recovery using AWS Elastic Disaster Recovery.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/ec2</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/ec2/CHANGELOG.md#v11000-2023-06-13">v1.100.0</a> <ul> <li><strong>Feature</strong>: This release introduces a new feature, EC2 Instance Connect Endpoint, that enables you to connect to a resource over TCP, without requiring the resource to have a public IPv4 address.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/imagebuilder</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/imagebuilder/CHANGELOG.md#v1235-2023-06-13">v1.23.5</a> <ul> <li><strong>Documentation</strong>: Change the Image Builder ImagePipeline dateNextRun field to more accurately describe the data.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/lightsail</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/lightsail/CHANGELOG.md#v1270-2023-06-13">v1.27.0</a> <ul> <li><strong>Feature</strong>: This release adds pagination for the Get Certificates API operation.</li> </ul> </li> <li><code>github.com/aws/aws-sdk-go-v2/service/s3</code>: <a href="https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.35.0/service/s3/CHANGELOG.md#v1340-2023-06-13">v1.34.0</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/d26d4922424dcb67dd89db55ad2f61bbce99b42a"><code>d26d492</code></a> Release 2023-06-16</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c3dc991ca0f4c582cf2e060880f68b0327233351"><code>c3dc991</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/cd5b3f0aa76862d2dcb21d1d78c4f5d89141df86"><code>cd5b3f0</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c92ebc88890d9400122d55e2fc458931e32423ae"><code>c92ebc8</code></a> Release 2023-06-15</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/3488004c6c0a1ab352f4e05d492f6078c1a86dcf"><code>3488004</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/3ee898185413e0b3f92f599dc991f492d13c2b27"><code>3ee8981</code></a> Update endpoints model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/09d9f49930ba1d3f5070cc14467a817b8ea0d65d"><code>09d9f49</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/844ff45cdc76182229ad098c95bf3f5ab8c20e9f"><code>844ff45</code></a> Release 2023-06-13</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/cc294064366687ef764f7bb73a7b08d7222a4f28"><code>cc29406</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/aa907c6969a3d103e6659d9f098f55d13dfde232"><code>aa907c6</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.33.0...service/s3/v1.35.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/cli` from 27.2.1+incompatible to 27.3.1+incompatible <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/docker/cli/commit/ce1223035ac3ab8922717092e63a184cf67b493d"><code>ce12230</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5462">#5462</a> from thaJeztah/27.x_backport_bump_compose</li> <li><a href="https://github.com/docker/cli/commit/263ba959c4d07813723518caaa922722102e6646"><code>263ba95</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5461">#5461</a> from laurazard/27.x-backport-update-VERSION</li> <li><a href="https://github.com/docker/cli/commit/be9b9f3d70cfd69881db72a843962b1ff55ed1b5"><code>be9b9f3</code></a> Update <code>VERSION</code> file to <code>v27.3.1-dev</code></li> <li><a href="https://github.com/docker/cli/commit/a4149b0c3d102b0a1644022f75dd8f2103e234c2"><code>a4149b0</code></a> Dockerfile: update compose to v2.29.7</li> <li><a href="https://github.com/docker/cli/commit/4aac4154b0a7760ddf02233fa1223a9fed07ecc9"><code>4aac415</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5458">#5458</a> from thaJeztah/27.x_bump_engine3</li> <li><a href="https://github.com/docker/cli/commit/854695884ad1b5dc8a0fab0e2ebccbf4d634f66e"><code>8546958</code></a> vendor: github.com/docker/docker v27.3.0</li> <li><a href="https://github.com/docker/cli/commit/f05200311df1e062f16a1ef3700ab514242d8f5a"><code>f052003</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5457">#5457</a> from laurazard/backport-dropped-defer</li> <li><a href="https://github.com/docker/cli/commit/460f1becc5c330e8df1f79857a089a9808132de6"><code>460f1be</code></a> telemetry: fix early meterprovider shutdown</li> <li><a href="https://github.com/docker/cli/commit/e85edf8556f9c8afdfcdce50c19f0b943efa1111"><code>e85edf8</code></a> Merge pull request <a href="https://redirect.github.com/docker/cli/issues/5452">#5452</a> from laurazard/27.3.0-match-moby-version</li> <li><a href="https://github.com/docker/cli/commit/ca62759b0fd5d3c5858e2101089beda8ad55d21b"><code>ca62759</code></a> vendor: github.com/docker/docker v27.3.0-rc2</li> <li>Additional commits viewable in <a href="https://github.com/docker/cli/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker/docker](https://redirect.github.com/docker/docker) | minor | `27.2.1` -> `27.3.1` | --- ### Release Notes <details> <summary>docker/docker (docker/docker)</summary> ### [`v27.3.1`](https://redirect.github.com/moby/moby/releases/tag/v27.3.1) [Compare Source](https://redirect.github.com/docker/docker/compare/v27.3.0-rc.1...v27.3.1) #### 27.3.1 For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: - [docker/cli, 27.3.1 milestone](https://redirect.github.com/docker/cli/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1) - [moby/moby, 27.3.1 milestone](https://redirect.github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1) ##### Bug fixes and enhancements - CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. [docker/cli#5457](https://redirect.github.com/docker/cli/pull/5457) ##### Packaging updates - Update `Compose` to [v2.29.7](https://redirect.github.com/docker/compose/releases/tag/v2.29.7) ### [`v27.3.0`](https://redirect.github.com/moby/moby/releases/tag/v27.3.0) [Compare Source](https://redirect.github.com/docker/docker/compare/v27.2.1...v27.3.0-rc.1) #### 27.3.0 For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: - [docker/cli, 27.3.0 milestone](https://redirect.github.com/docker/cli/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0) - [moby/moby, 27.3.0 milestone](https://redirect.github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0) ##### Bug fixes and enhancements - containerd image store: Fix `docker image prune -a` untagging images used by containers started from images referenced by a digested reference. [moby/moby#48488](https://redirect.github.com/moby/moby/pull/48488) - Add a `--feature` flag to the daemon options. [moby/moby#48487](https://redirect.github.com/moby/moby/pull/48487) - Updated the handling of the `--gpus=0` flag to be consistent with the NVIDIA Container Runtime. [moby/moby#48483](https://redirect.github.com/moby/moby/pull/48483) [https://github.com/docker/cli/pull/5432](https://redirect.github.com/docker/cli/pull/5432)5432) - Support WSL2 mirrored-mode networking's use of interface `loopback0` for packets from the Windows host. [moby/moby#48514](https://redirect.github.com/moby/moby/pull/48514) - Fix an issue that prevented communication between containers on an IPv4 bridge network when running with `--iptables=false`, `--ip6tables=true` (the default), a firewall with a DROP rule for forwarded packets on hosts where the `br_netfilter` kernel module was not normally loaded. [moby/moby#48511](https://redirect.github.com/moby/moby/pull/48511) - CLI: Fix issue where `docker volume update` command would cause the CLI to panic if no argument/volume was passed. [docker/cli#5426](https://redirect.github.com/docker/cli/pull/5426) - CLI: Properly report metrics when run in WSL environment on Windows. \[[docker/cli#5432](https://redirect.github.com/docker/cli/issues/5432)] ##### Packaging updates - Update `containerd` (static binaries only) to [v1.7.22](https://redirect.github.com/containerd/containerd/releases/tag/v1.7.22) [moby/moby#48468](https://redirect.github.com/moby/moby/pull/48468) - Updated `Buildkit` to [v0.16.0](https://redirect.github.com/moby/buildkit/releases/tag/v0.16.0) - Update `Compose` to [v2.29.6](https://redirect.github.com/docker/compose/releases/tag/v2.29.6) - Update `Buildx` to [v0.17.1](https://redirect.github.com/docker/buildx/releases/tag/v0.17.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 6am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/earthly/dind). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…o 27.3.1+incompatible (#191) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 27.2.0+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.0...v27.3.1">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.2.0+incompatible&new-version=27.3.1+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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the minor-and-patch group with 2 updates: [github.com/docker/docker](https://github.com/docker/docker) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.66.2 to 1.67.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.67.0</h2> <h1>Bug Fixes</h1> <ul> <li>ringhash: when used with multiple EDS priorities, fix bug that could prevent a higher priority from recovering from transient failure. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7364">#7364</a>) <ul> <li>Special Thanks: <a href="https://github.com/atollena"><code>@atollena</code></a></li> </ul> </li> </ul> <h1>Behavior Changes</h1> <ul> <li>In accordance with <a href="https://tools.ietf.org/html/rfc7540#section-3.3">RFC 7540</a>, clients and servers will now reject TLS connections that don't support ALPN. This can be disabled by setting the environment variable <code>GRPC_ENFORCE_ALPN_ENABLED</code> to <code>false</code> (case insensitive). Please file a bug if you encounter any issues with this behavior. The environment variable to revert this behavior will be removed in an upcoming release. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/6f50403edb0c2db1bb557168cf4e6f87ea2efdb5"><code>6f50403</code></a> Change version to 1.67.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7604">#7604</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3c3a0257a33b59b0d0a072696775b53392c7d8ae"><code>3c3a025</code></a> mem: replace flate.Reader reference (<a href="https://redirect.github.com/grpc/grpc-go/issues/7595">#7595</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/7637">#7637</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3ffb98b2c93a9a633f7415893c40946e2a6a6e89"><code>3ffb98b</code></a> .*: fix revive lints <code>redefines-builtin-id</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7552">#7552</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/56660492e4a669c8c0f02bd7f31ad31a3ef59883"><code>5666049</code></a> vet: enforce revive linter (<a href="https://redirect.github.com/grpc/grpc-go/issues/7589">#7589</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/c6ad07fa041eea78cd6757a51f252dd407105452"><code>c6ad07f</code></a> protoc: regenerate protos (<a href="https://redirect.github.com/grpc/grpc-go/issues/7590">#7590</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/70f19eecd168b0ea1f15e991170576bf36f74b40"><code>70f19ee</code></a> credentials/tls: default GRPC_ENFORCE_ALPN_ENABLED to true (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/92111dc36694c570dc873b9a5a461ef953ea2b54"><code>92111dc</code></a> xds: keep ads flow control local to xdsclient/transport package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7578">#7578</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/535bdce10d2c1127e526e986b04b38995fe84712"><code>535bdce</code></a> estats: remove dependency on testing package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7579">#7579</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/0f03c747b13b41c3601ee835f1f8bf0f457b3fd2"><code>0f03c74</code></a> .*: fix revive lint issues <code>unused-parameter</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7580">#7580</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/6147c81cd047f0237c9bfa553fb61ce74bfa37aa"><code>6147c81</code></a> stats/opentelemetry: Optimize slice allocations (<a href="https://redirect.github.com/grpc/grpc-go/issues/7525">#7525</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.66.2...v1.67.0">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…mpatible (#1004) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 27.2.0+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/moby/commit/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.0...v27.3.1">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.2.0+incompatible&new-version=27.3.1+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>
Bumps the minor-and-patch group with 2 updates: [github.com/docker/docker](https://github.com/docker/docker) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/docker/docker` from 27.2.1+incompatible to 27.3.1+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.3.1</h2> <h2>27.3.1</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">docker/cli, 27.3.1 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.1">moby/moby, 27.3.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>CLI: Fix issue with command execution metrics not being exported due to the CLI MeterProvider being shutdown too early. <a href="https://redirect.github.com/docker/cli/pull/5457">docker/cli#5457</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.7">v2.29.7</a></li> </ul> <h2>v27.3.0</h2> <h2>27.3.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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix <code>docker image prune -a</code> untagging images used by containers started from images referenced by a digested reference. <a href="https://redirect.github.com/moby/moby/pull/48488">moby/moby#48488</a></li> <li>Add a <code>--feature</code> flag to the daemon options. <a href="https://redirect.github.com/moby/moby/pull/48487">moby/moby#48487</a></li> <li>Updated the handling of the <code>--gpus=0</code> flag to be consistent with the NVIDIA Container Runtime. <a href="https://redirect.github.com/moby/moby/pull/48483">moby/moby#48483</a> (<a href="https://redirect.github.com/docker/cli/pull/5432">docker/cli#5432</a>)</li> <li>Support WSL2 mirrored-mode networking's use of interface <code>loopback0</code> for packets from the Windows host. <a href="https://redirect.github.com/moby/moby/pull/48514">moby/moby#48514</a></li> <li>Fix an issue that prevented communication between containers on an IPv4 bridge network when running with <code>--iptables=false</code>, <code>--ip6tables=true</code> (the default), a firewall with a DROP rule for forwarded packets on hosts where the <code>br_netfilter</code> kernel module was not normally loaded. <a href="https://redirect.github.com/moby/moby/pull/48511">moby/moby#48511</a></li> <li>CLI: Fix issue where <code>docker volume update</code> command would cause the CLI to panic if no argument/volume was passed. <a href="https://redirect.github.com/docker/cli/pull/5426">docker/cli#5426</a></li> <li><code>docker/cli#5432</code></li> </ul> <h3>Packaging updates</h3> <ul> <li>Update <code>containerd</code> (static binaries only) to <a href="https://github.com/containerd/containerd/releases/tag/v1.7.22">v1.7.22</a> <a href="https://redirect.github.com/moby/moby/pull/48468">moby/moby#48468</a></li> <li>Updated <code>Buildkit</code> to <a href="https://github.com/moby/buildkit/releases/tag/v0.16.0">v0.16.0</a></li> <li>Update <code>Compose</code> to <a href="https://github.com/docker/compose/releases/tag/v2.29.6">v2.29.6</a></li> <li>Update <code>Buildx</code> to <a href="https://github.com/docker/buildx/releases/tag/v0.17.1">v0.17.1</a></li> </ul> <h2>v27.3.0-rc.2</h2> <h2>27.3.0-rc.2</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=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">docker/cli, 27.3.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=sort%3Aupdated-desc+is%3Aclosed+milestone%3A27.3.0">moby/moby, 27.3.0 milestone</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/41ca978a0a5400cc24b274137efa9f25517fcc0b"><code>41ca978</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48525">#48525</a> from thaJeztah/27.x_backport_govulncheck_permissions</li> <li><a href="https://github.com/moby/moby/commit/a6b772b24cbfa5c1aab2dc31c5283f7a9bac80f4"><code>a6b772b</code></a> gha: govulncheck: make sure read permissions are set</li> <li><a href="https://github.com/moby/moby/commit/856359cb772e68c274622ebdf18e08e02c72b4e7"><code>856359c</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48514">#48514</a> from robmry/backport-27.x/wsl2_mirrored_loopback0_w...</li> <li><a href="https://github.com/moby/moby/commit/cd21af7e411c114dcc877cead6456d3dda8ef9cc"><code>cd21af7</code></a> Do not DNAT packets from WSL2's loopback0</li> <li><a href="https://github.com/moby/moby/commit/8516f3b0c1aecbb84e26472ec25f95723d05b742"><code>8516f3b</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48510">#48510</a> from thaJeztah/27.x_backport_bump_buildx_compose</li> <li><a href="https://github.com/moby/moby/commit/3a7779ad61700f5f00751cb39826ea6a4add5109"><code>3a7779a</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48511">#48511</a> from robmry/backport-27.x/48375_bridge_netfiltering</li> <li><a href="https://github.com/moby/moby/commit/5c499fc4b249708619b4225de00c50c861bcfc08"><code>5c499fc</code></a> Only enable bridge netfiltering when needed</li> <li><a href="https://github.com/moby/moby/commit/98f24aaf8a5e95b3e98ad9a5bc1035e9b6ba4557"><code>98f24aa</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/48506">#48506</a> from thaJeztah/27.x_backport_man_dockerd_logformat</li> <li><a href="https://github.com/moby/moby/commit/8adc8e405db4115871ad5f8bdd3155f8f162493b"><code>8adc8e4</code></a> Dockerfile: update compose to v2.29.4</li> <li><a href="https://github.com/moby/moby/commit/576fc88b1af1434de8fa753814320f7920d2670a"><code>576fc88</code></a> Dockerfile: update buildx to v0.17.1</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v27.2.1...v27.3.1">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.66.2 to 1.67.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.67.0</h2> <h1>Bug Fixes</h1> <ul> <li>ringhash: when used with multiple EDS priorities, fix bug that could prevent a higher priority from recovering from transient failure. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7364">#7364</a>) <ul> <li>Special Thanks: <a href="https://github.com/atollena"><code>@atollena</code></a></li> </ul> </li> </ul> <h1>Behavior Changes</h1> <ul> <li>In accordance with <a href="https://tools.ietf.org/html/rfc7540#section-3.3">RFC 7540</a>, clients and servers will now reject TLS connections that don't support ALPN. This can be disabled by setting the environment variable <code>GRPC_ENFORCE_ALPN_ENABLED</code> to <code>false</code> (case insensitive). Please file a bug if you encounter any issues with this behavior. The environment variable to revert this behavior will be removed in an upcoming release. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/6f50403edb0c2db1bb557168cf4e6f87ea2efdb5"><code>6f50403</code></a> Change version to 1.67.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7604">#7604</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3c3a0257a33b59b0d0a072696775b53392c7d8ae"><code>3c3a025</code></a> mem: replace flate.Reader reference (<a href="https://redirect.github.com/grpc/grpc-go/issues/7595">#7595</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/7637">#7637</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3ffb98b2c93a9a633f7415893c40946e2a6a6e89"><code>3ffb98b</code></a> .*: fix revive lints <code>redefines-builtin-id</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7552">#7552</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/56660492e4a669c8c0f02bd7f31ad31a3ef59883"><code>5666049</code></a> vet: enforce revive linter (<a href="https://redirect.github.com/grpc/grpc-go/issues/7589">#7589</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/c6ad07fa041eea78cd6757a51f252dd407105452"><code>c6ad07f</code></a> protoc: regenerate protos (<a href="https://redirect.github.com/grpc/grpc-go/issues/7590">#7590</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/70f19eecd168b0ea1f15e991170576bf36f74b40"><code>70f19ee</code></a> credentials/tls: default GRPC_ENFORCE_ALPN_ENABLED to true (<a href="https://redirect.github.com/grpc/grpc-go/issues/7535">#7535</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/92111dc36694c570dc873b9a5a461ef953ea2b54"><code>92111dc</code></a> xds: keep ads flow control local to xdsclient/transport package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7578">#7578</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/535bdce10d2c1127e526e986b04b38995fe84712"><code>535bdce</code></a> estats: remove dependency on testing package (<a href="https://redirect.github.com/grpc/grpc-go/issues/7579">#7579</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/0f03c747b13b41c3601ee835f1f8bf0f457b3fd2"><code>0f03c74</code></a> .*: fix revive lint issues <code>unused-parameter</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7580">#7580</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/6147c81cd047f0237c9bfa553fb61ce74bfa37aa"><code>6147c81</code></a> stats/opentelemetry: Optimize slice allocations (<a href="https://redirect.github.com/grpc/grpc-go/issues/7525">#7525</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.66.2...v1.67.0">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- What I did
This checks for the equivalent WSL mount path on windows. WSL will mount the windows drives at
/mnt/c
(or whichever drive is being used).- How I did it
The code will now check to see if a file exists in
/mnt/<drive>
. If there is no drive in the path, it'll default to the C drive. If that file exists, it will use it. The check now also supports URLs of the formatc:/path/to/file
(note the forward slashes rather than backslashes).- How to verify it
Integrate the change with buildx and run a build in a WSL container on Windows.
- Description for the changelog
* Properly report metrics when run in WSL environment on Windows