From a375571da24fb1d18ea153de7732b6a44e9d23b5 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 7 Mar 2022 12:39:14 -0500 Subject: [PATCH 1/2] release: 0.19.1 update changelog 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 f559c006ed..438026cc4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.19.1 + +Bug fix release, most importantly fixing the wrong version number associated with v0.19.0. + +## What's Changed + +* build(deps): bump actions/checkout from 2 to 3 by @dependabot in https://github.com/runatlantis/atlantis/pull/2119 +* build(deps): bump github.com/xanzy/go-gitlab from 0.55.1 to 0.58.0 by @dependabot in https://github.com/runatlantis/atlantis/pull/2118 +* fix(bitbucketcloud): Ensure status key has at most 40 characters by @maxbrunet in https://github.com/runatlantis/atlantis/pull/2037 +* fix(gitlab-client): change `pending` to `running` state by @syphernl in https://github.com/runatlantis/atlantis/pull/1971 +* fix(bitbucketcloud)!: Use AccountID as username instead of Nickname by @maxbrunet in https://github.com/runatlantis/atlantis/pull/2034 + # v0.19.0 Feature release for: diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index 800274a250..9aa97d67ce 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.6 + image: ghcr.io/runatlantis/atlantis:v0.19.1 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index 53f527b081..f8ce33827c 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.18.6" +const atlantisVersion = "0.19.1" func main() { v := viper.New() From 744e6944fe9ab0e7dd58dd35d45a74979ff0fa35 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 7 Mar 2022 12:47:28 -0500 Subject: [PATCH 2/2] add comments about gitlab and bitbucketcloud fixes Signed-off-by: Rui Chen --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 438026cc4a..022c71086f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ Bug fix release, most importantly fixing the wrong version number associated with v0.19.0. +And it also contains fixes for `bitbucketcloud` and `gitlab`. + ## What's Changed * build(deps): bump actions/checkout from 2 to 3 by @dependabot in https://github.com/runatlantis/atlantis/pull/2119