diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4144fd3..28bd981 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,11 +1,11 @@ -FROM adrienaury/go-devcontainer:v5.0 +FROM adrienaury/go-devcontainer:v5.1 USER root RUN apk add --update --progress --no-cache make gomplate ARG VERSION_GOLICENSE=0.2.0 -ARG VERSION_MILLER=6.11.0 +ARG VERSION_MILLER=6.12.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 7746131..0e76268 100644 --- a/.devcontainer/Dockerfile.ci +++ b/.devcontainer/Dockerfile.ci @@ -1,11 +1,11 @@ -FROM adrienaury/go-devcontainer-ci:v5.0 +FROM adrienaury/go-devcontainer-ci:v5.1 USER root RUN apk add --update --progress --no-cache make gomplate ARG VERSION_GOLICENSE=0.2.0 -ARG VERSION_MILLER=6.11.0 +ARG VERSION_MILLER=6.12.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 ca2f8eb..82b23e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ Types of changes - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [3.1.0] + +- `Added` go-devcontainer version from v5.0 to v5.1 (fix neon build steps order). +- `Added` miller version 6.12.0. + ## [3.0.0] - `Changed` go-devcontainer version from v4.0 to v5.0 (golang 1.23).