From 77eb1f387e6b513541e19e7162442d7cb8492cef Mon Sep 17 00:00:00 2001 From: Adrien Aury <44274230+adrienaury@users.noreply.github.com> Date: Thu, 22 Feb 2024 17:23:05 +0100 Subject: [PATCH] feat: go-devcontainer version from v3.1 to v4.0 (golang 1.22) --- .devcontainer/Dockerfile | 4 ++-- .devcontainer/Dockerfile.ci | 4 ++-- CHANGELOG.md | 4 ++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index bf15353..a0b564a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,11 +1,11 @@ -FROM adrienaury/go-devcontainer:v3.1 +FROM adrienaury/go-devcontainer:v4.0 USER root RUN apk add --update --progress --no-cache make gomplate ARG VERSION_GOLICENSE=0.2.0 -ARG VERSION_MILLER=6.8.0 +ARG VERSION_MILLER=6.11.0 RUN wget -nv -O- https://github.com/mitchellh/golicense/releases/download/v${VERSION_GOLICENSE}/golicense_${VERSION_GOLICENSE}_linux_x86_64.tar.gz | tar xz -C /usr/bin golicense \ && wget -nv -O- https://github.com/johnkerl/miller/releases/download/v${VERSION_MILLER}/miller-${VERSION_MILLER}-linux-amd64.tar.gz | tar xz --strip-components 1 -C /usr/bin miller-${VERSION_MILLER}-linux-amd64/mlr \ && chmod +x /usr/bin/golicense /usr/bin/mlr diff --git a/.devcontainer/Dockerfile.ci b/.devcontainer/Dockerfile.ci index b7d2380..81133d6 100644 --- a/.devcontainer/Dockerfile.ci +++ b/.devcontainer/Dockerfile.ci @@ -1,11 +1,11 @@ -FROM adrienaury/go-devcontainer-ci:v3.1 +FROM adrienaury/go-devcontainer-ci:v4.0 USER root RUN apk add --update --progress --no-cache make gomplate ARG VERSION_GOLICENSE=0.2.0 -ARG VERSION_MILLER=6.8.0 +ARG VERSION_MILLER=6.11.0 RUN wget -nv -O- https://github.com/mitchellh/golicense/releases/download/v${VERSION_GOLICENSE}/golicense_${VERSION_GOLICENSE}_linux_x86_64.tar.gz | tar xz -C /usr/bin golicense \ && wget -nv -O- https://github.com/johnkerl/miller/releases/download/v${VERSION_MILLER}/miller-${VERSION_MILLER}-linux-amd64.tar.gz | tar xz --strip-components 1 -C /usr/bin miller-${VERSION_MILLER}-linux-amd64/mlr \ && chmod +x /usr/bin/golicense /usr/bin/mlr diff --git a/CHANGELOG.md b/CHANGELOG.md index 570089c..d089624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ Types of changes - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [2.0.0] + +- `Changed` go-devcontainer version from v3.1 to v4.0 (golang 1.22). + ## [1.3.0] - `Added` test-int-debug target.