From 06c1283a0c96f2098d128d05eb3abd7c5314a47f Mon Sep 17 00:00:00 2001 From: rui Date: Wed, 2 Mar 2022 20:47:38 -0500 Subject: [PATCH] release: 0.18.5 (#2107) * release: 0.18.5 * update changelog Signed-off-by: Rui Chen * add issue ref for docker hub deprecation Signed-off-by: Rui Chen --- CHANGELOG.md | 12 ++++++++++++ kustomize/bundle.yaml | 2 +- main.go | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b064bf45..5f19bcd666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.18.5 + +Maintenance release: +- Drop Dockerhub support (#2103) +- fixing the most recent multiplatform image build issue. (#2104) + +## What's Changed + +* ci: drop circleci docker hub update by @chenrui333 in https://github.com/runatlantis/atlantis/pull/2102 +* fix(docker): fix docker runtime issue by @chenrui333 in https://github.com/runatlantis/atlantis/pull/2106 +* deps: tf 1.1.7 by @chenrui333 in https://github.com/runatlantis/atlantis/pull/2108 + # v0.18.4 Maintenance release for security patches with atlantis-base image diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index 6a0a7a58b9..1cc46fe32d 100644 --- a/kustomize/bundle.yaml +++ b/kustomize/bundle.yaml @@ -22,7 +22,7 @@ spec: fsGroup: 1000 # Atlantis group (1000) read/write access to volumes. containers: - name: atlantis - image: ghcr.io/runatlantis/atlantis:v0.18.4 + image: ghcr.io/runatlantis/atlantis:v0.18.5 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index 16abdd0abc..8f071aafa5 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.18.4" +const atlantisVersion = "0.18.5" func main() { v := viper.New()