Release 0.4.7

This commit is contained in:
Luke Kysow
2018-08-23 15:36:24 -10:00
parent 5710b3c1c0
commit 307cd31361
3 changed files with 35 additions and 1 deletions

View File

@@ -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

View File

@@ -19,7 +19,7 @@ import (
"github.com/spf13/viper"
)
const atlantisVersion = "0.4.6"
const atlantisVersion = "0.4.7"
func main() {
v := viper.New()

View File

@@ -0,0 +1,7 @@
package events
type WorkQueue struct {
}
func (w *WorkQueue) WaitForTurn(repoFullName string, pullNum int) {
}