Skip to content

Commit 0ad25e6

Browse files
authored
Merge pull request #83 from runatlantis/release-0.3.4
Release 0.3.4.
2 parents 6bf86df + eb5f731 commit 0ad25e6

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# v0.3.4
2+
## Description
3+
This release delivers some speed improvements through caching plugins and
4+
not running `terraform workspace select` unnecessarily. In my testing it saves ~20s per run.
5+
6+
## Features
7+
* All config flags can now be specified by environment variables. Fixes ([#38](https://github.com/runatlantis/atlantis/issues/38)).
8+
* Completed thanks to @psalaberria002!
9+
* Run terraform with the `TF_PLUGIN_CACHE_DIR` env var set. Fixes ([#34](https://github.com/runatlantis/atlantis/issues/34)).
10+
* This will cache plugins and make `terraform init` faster. Terraform will still download new versions of plugins. See https://www.terraform.io/docs/configuration/providers.html#provider-plugin-cache for more details.
11+
* In my testing this saves >10s per run.
12+
* Run terraform with `TF_IN_AUTOMATION=true` so the output won't contain suggestions to run commands that you can't run via Atlantis. ([#82](https://github.com/runatlantis/atlantis/pull/82)).
13+
* Don't run `terraform workspace select` unless we actually need to switch workspaces. ([#82](https://github.com/runatlantis/atlantis/pull/82)).
14+
* In my testing this saves ~10s.
15+
16+
## Bug Fixes
17+
* Validate that workspace doesn't contain a path when running ex. `atlantis plan -w /jdlkj`. This was already not a valid workspace name according to Terraform. ([#78](https://github.com/runatlantis/atlantis/pull/78)).
18+
* Error out if `ngrok` is already running when running `atlantis bootstrap` ([#81](https://github.com/runatlantis/atlantis/pull/81)).
19+
20+
## Backwards Incompatibilities / Notes:
21+
* None
22+
23+
## Downloads
24+
* [atlantis_darwin_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.4/atlantis_darwin_amd64.zip)
25+
* [atlantis_linux_386.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.4/atlantis_linux_386.zip)
26+
* [atlantis_linux_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.4/atlantis_linux_amd64.zip)
27+
* [atlantis_linux_arm.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.4/atlantis_linux_arm.zip)
28+
129
# v0.3.3
230

331
## Features

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/spf13/viper"
2020
)
2121

22-
const atlantisVersion = "0.3.3"
22+
const atlantisVersion = "0.3.4"
2323

2424
func main() {
2525
v := viper.New()

0 commit comments

Comments
 (0)