diff --git a/_vendor/modules.txt b/_vendor/modules.txt index 352bf3bc573..66e9abf5500 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -1,6 +1,6 @@ # github.com/moby/moby v25.0.4+incompatible # github.com/moby/buildkit v0.13.0 -# github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 +# github.com/docker/buildx v0.13.1 # github.com/docker/scout-cli v1.4.1 # github.com/docker/cli v26.0.0-rc1+incompatible # github.com/docker/compose/v2 v2.24.7 diff --git a/content/build/release-notes.md b/content/build/release-notes.md index 57439d1d1b9..466ec64a1f0 100644 --- a/content/build/release-notes.md +++ b/content/build/release-notes.md @@ -8,6 +8,18 @@ toc_max: 2 This page contains information about the new features, improvements, and bug fixes in [Docker Buildx](https://github.com/docker/buildx). +## 0.13.1 + +{{< release-date date="2024-03-13" >}} + +The full release note for this release is available +[on GitHub](https://github.com/docker/buildx/releases/tag/v0.13.1). + +### Bug fixes + +- Fix connecting to `docker-container://` and `kube-pod://` style URLs with remote driver. [docker/buildx#2327](https://github.com/docker/buildx/pull/2327) +- Fix handling of `--push` with Bake when a target has already defined a non-image output. [docker/buildx#2330](https://github.com/docker/buildx/pull/2330) + ## 0.13.0 {{< release-date date="2024-03-06" >}} diff --git a/go.mod b/go.mod index c9f9a394594..f703b395883 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.21 toolchain go1.21.1 require ( - github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 // indirect + github.com/docker/buildx v0.13.1 // indirect github.com/docker/cli v26.0.0-rc1+incompatible // indirect github.com/docker/compose/v2 v2.24.7 // indirect github.com/docker/scout-cli v1.4.1 // indirect @@ -14,7 +14,7 @@ require ( ) replace ( - github.com/docker/buildx => github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2 + github.com/docker/buildx => github.com/docker/buildx v0.13.1 github.com/docker/cli => github.com/docker/cli v25.0.4+incompatible github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.24.7 github.com/docker/scout-cli => github.com/docker/scout-cli v1.4.1 diff --git a/go.sum b/go.sum index c219eaffb8d..6ad12ef9fd5 100644 --- a/go.sum +++ b/go.sum @@ -64,6 +64,8 @@ github.com/docker/buildx v0.13.0 h1:nNbkgaxsWEZPX1P8yXN6dibAv7ADRMVqi0aohDFhLJY= github.com/docker/buildx v0.13.0/go.mod h1:f2n6vggoX4sNNZ0XoRZ0Wtv6J1/rbDTabgdHtpW9NNM= github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2 h1:kuFvsZyZCYqxWBc3O7B95wHAoYKheuZYztIHstwnF7Y= github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2/go.mod h1:f2n6vggoX4sNNZ0XoRZ0Wtv6J1/rbDTabgdHtpW9NNM= +github.com/docker/buildx v0.13.1 h1:uZjBcb477zh02tnHk0rqNV/DZOxbf/OiHw6Mc8OhDYU= +github.com/docker/buildx v0.13.1/go.mod h1:f2n6vggoX4sNNZ0XoRZ0Wtv6J1/rbDTabgdHtpW9NNM= github.com/docker/cli v24.0.2+incompatible h1:QdqR7znue1mtkXIJ+ruQMGQhpw2JzMJLRXp6zpzF6tM= github.com/docker/cli v24.0.2+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/cli v24.0.4+incompatible h1:Y3bYF9ekNTm2VFz5U/0BlMdJy73D+Y1iAAZ8l63Ydzw=