From 3ef3f29a0346c1ff8225423cd4bd35c279ed0605 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 14 Jun 2023 20:57:02 +0200 Subject: [PATCH 1/3] Dockerfile: update gotestsum to v1.10.0 full diff: https://github.com/gotestyourself/gotestsum/compare/v1.8.2...v1.10.0 Signed-off-by: Sebastiaan van Stijn (cherry picked from commit 9c2694d2b08b53224419d69cd341ca8ec3011089) Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- dockerfiles/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d96ab5c1ea8a..f162a489b435 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG GO_VERSION=1.19.10 ARG ALPINE_VERSION=3.17 ARG XX_VERSION=1.1.1 ARG GOVERSIONINFO_VERSION=v1.3.0 -ARG GOTESTSUM_VERSION=v1.8.2 +ARG GOTESTSUM_VERSION=v1.10.0 ARG BUILDX_VERSION=0.10.4 FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index 55de68584477..37ffa0d531c6 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ && gofumpt --version FROM golang AS gotestsum -ARG GOTESTSUM_VERSION=v1.8.2 +ARG GOTESTSUM_VERSION=v1.10.0 RUN --mount=type=cache,target=/root/.cache/go-build \ --mount=type=cache,target=/go/pkg/mod \ --mount=type=tmpfs,target=/go/src/ \ From 7f62da4ce8bf36de3a2bb40f52681ff53c7d9949 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 20 Jun 2023 12:37:47 +0200 Subject: [PATCH 2/3] Dockerfile: update buildx to v0.11.0 Update the version of buildx we use in the dev-container to v0.11.0; https://github.com/docker/buildx/releases/tag/v0.11.0 Full diff: https://github.com/docker/buildx/compare/v0.10.4..v0.11.0 Signed-off-by: Sebastiaan van Stijn (cherry picked from commit bf5d1ce973510943c452126bca265a23219071fb) Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- dockerfiles/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f162a489b435..2bd3c280f4a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG ALPINE_VERSION=3.17 ARG XX_VERSION=1.1.1 ARG GOVERSIONINFO_VERSION=v1.3.0 ARG GOTESTSUM_VERSION=v1.10.0 -ARG BUILDX_VERSION=0.10.4 +ARG BUILDX_VERSION=0.11.0 FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index 37ffa0d531c6..34e99ebc9002 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -3,7 +3,7 @@ ARG GO_VERSION=1.19.10 ARG ALPINE_VERSION=3.17 -ARG BUILDX_VERSION=0.10.4 +ARG BUILDX_VERSION=0.11.0 FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang From 30c9ef4dc557df374981160d72f4f4d924e269f4 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 15 Jul 2023 15:02:34 +0200 Subject: [PATCH 3/3] Dockerfile: update buildx to v0.11.1 update the version we use in the dev-container; - Fix a regression for bake where services in profiles would not be loaded. - Fix a regression where --cgroup-parent option had no effect during build. - Fix a regression where valid docker contexts could fail buildx builder name validation. - Fix an issue where the host-gateway special address could not be used as an argument to --add-host. - Fix a possible panic when terminal is resized during the build. release notes: https://github.com/docker/buildx/releases/tag/v0.11.1 Signed-off-by: Sebastiaan van Stijn (cherry picked from commit ff9f1be19eabaa8c79fe4de7530c08cee06c6817) Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- dockerfiles/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bd3c280f4a6..0d56fad8dc83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG ALPINE_VERSION=3.17 ARG XX_VERSION=1.1.1 ARG GOVERSIONINFO_VERSION=v1.3.0 ARG GOTESTSUM_VERSION=v1.10.0 -ARG BUILDX_VERSION=0.11.0 +ARG BUILDX_VERSION=0.11.1 FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index 34e99ebc9002..9440e9216c30 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -3,7 +3,7 @@ ARG GO_VERSION=1.19.10 ARG ALPINE_VERSION=3.17 -ARG BUILDX_VERSION=0.11.0 +ARG BUILDX_VERSION=0.11.1 FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang