You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+26
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,29 @@
1
+
# v0.3.0
2
+
## Features
3
+
* Fix security issue where Atlantis wasn't escaping the optional "extra args" that could be appended to comments ([#16](https://github.com/runatlantis/atlantis/pull/16))
4
+
* example exploit: `atlantis plan ; cat /etc/passwd`
5
+
* Atlantis moved to new repo: `atlantisrun/atlantis`. Read why [here](https://medium.com/runatlantis/moving-atlantis-to-runatlantis-atlantis-on-github-4efc025bb05f)
6
+
* New -w/--workspace and -d/--dir flags in comments ([#14](https://github.com/runatlantis/atlantis/pull/14))
7
+
* You can now specify which directory to plan/apply in, ex. `atlantis plan -d dir1/dir2`
8
+
* Better feedback from atlantis when asking for help via comments, ex. `atlantis plan -h`
9
+
10
+
## Bug Fixes
11
+
* Convert `--data-dir` paths to absolute from relative. Fixes ([#245](https://github.com/hootsuite/atlantis/issues/245))
12
+
* Don't run plan in the parent of `modules/` unless there's a `main.tf` present. Fixes ([#12](https://github.com/runatlantis/atlantis/issues/12))
13
+
14
+
## Backwards Incompatibilities / Notes:
15
+
* You must use the `-w` flag to specify a workspace when commenting now
16
+
* Previously: `atlantis plan staging`, now: `atlantis plan -w staging`
17
+
* You must use a double-dash between Atlantis flags and extra args to be appended to the terraform command
18
+
* Previously: `atlantis plan -target=resource`, now: `atlantis plan -- -target=resource`
19
+
* Atlantis will no longer run `plan` in the parent directory of `modules/` unless there is a `main.tf` in that directory.
0 commit comments