From 4e82a97fc6fbf6148075b1cfc5ab52e597f66525 Mon Sep 17 00:00:00 2001 From: rui Date: Mon, 7 Mar 2022 12:48:07 -0500 Subject: [PATCH] release: 0.19.1 (#2122) * release: 0.19.1 update changelog Signed-off-by: Rui Chen * add comments about gitlab and bitbucketcloud fixes Signed-off-by: Rui Chen --- CHANGELOG.md | 14 ++++++++++++++ kustomize/bundle.yaml | 2 +- main.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f559c006ed..022c71086f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v0.19.1 + +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 +* 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()