diff --git a/CHANGELOG.md b/CHANGELOG.md index c8be54e08..49c8ae849 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +# v0.4.7 + +## Description +Support GitLab repos nested under multiple levels and use the latest version of Terraform: 0.11.8! + +## Features +* Support GitLab groups which allow repos to be nested under multiple levels, +ex. `gitlab.com/owner/group/subgroup/subsubgroup/repo` +* Use latest version of Terraform: 0.11.8 in Docker image + +## Bugfixes +* When running with `TF_LOG` set, Atlantis will start normally. Previously it +would error out due to attempting to parse the stderr output of the `terraform version` +command. + +## Backwards Incompatibilities / Notes: +None + +## Downloads +* [atlantis_darwin_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.4.7/atlantis_darwin_amd64.zip) +* [atlantis_linux_386.zip](https://github.com/runatlantis/atlantis/releases/download/v0.4.7/atlantis_linux_386.zip) +* [atlantis_linux_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.4.7/atlantis_linux_amd64.zip) +* [atlantis_linux_arm.zip](https://github.com/runatlantis/atlantis/releases/download/v0.4.7/atlantis_linux_arm.zip) + +## Docker +`runatlantis/atlantis:v0.4.7` + # v0.4.6 ## Description diff --git a/main.go b/main.go index ed52a81b1..458ad60a8 100644 --- a/main.go +++ b/main.go @@ -19,7 +19,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.4.6" +const atlantisVersion = "0.4.7" func main() { v := viper.New() diff --git a/server/events/work_queue.go b/server/events/work_queue.go new file mode 100644 index 000000000..f8ababb3c --- /dev/null +++ b/server/events/work_queue.go @@ -0,0 +1,7 @@ +package events + +type WorkQueue struct { +} + +func (w *WorkQueue) WaitForTurn(repoFullName string, pullNum int) { +}