From 767a5e7a01e97d92379076281b9cee9728abfcdd Mon Sep 17 00:00:00 2001 From: rui Date: Thu, 30 Dec 2021 11:01:44 -0500 Subject: [PATCH] release: 0.18.0 (#1965) * release: 0.18.0 Signed-off-by: Rui Chen * update changelog Signed-off-by: Rui Chen --- CHANGELOG.md | 17 +++++++++++++++++ kustomize/bundle.yaml | 2 +- main.go | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db0d53f86e..db6a03a50a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# v0.18.0 + +Feature release of adding capability of streaming terraform logs, also added the capability of supporting tf 1.0.x (which was missed in the v0.17.6 release). + +## What's Changed + +* deps: terraform 1.1.2 by @chenrui333 in https://github.com/runatlantis/atlantis/pull/1952 +* build(deps): bump github.com/spf13/viper from 1.10.0 to 1.10.1 by @dependabot in https://github.com/runatlantis/atlantis/pull/1956 +* Dockerfile: Add support for last Terraform 1.0.x version in AVAILABLE_TERRAFORM_VERSIONS by @javierbeaumont in https://github.com/runatlantis/atlantis/pull/1957 +* feat: add GitHub team allowlist configuration option by @paulerickson in https://github.com/runatlantis/atlantis/pull/1694 +* fix: fallback to default TF version in apply step by @sapslaj in https://github.com/runatlantis/atlantis/pull/1931 +* docs: typo in heading level by @moretea in https://github.com/runatlantis/atlantis/pull/1960 +* docs: clarify example for `--azuredevops-token` flag by @MarkIannucci in https://github.com/runatlantis/atlantis/pull/1712 +* docs: update github docs links by @chenrui333 in https://github.com/runatlantis/atlantis/pull/1964 +* build(deps): bump github.com/hashicorp/go-getter from 1.5.9 to 1.5.10 by @dependabot in https://github.com/runatlantis/atlantis/pull/1961 +* feat: streaming terraform logs in real-time by @Aayyush in https://github.com/runatlantis/atlantis/pull/1937 + # v0.17.6 ## What's Changed diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index 1654f1abdd..8795a8c21c 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.17.6 + image: ghcr.io/runatlantis/atlantis:v0.18.0 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index b1247954b7..45e17e53db 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.17.6" +const atlantisVersion = "0.18.0" func main() { v := viper.New()