mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 21:38:25 +00:00
Release 0.4.7
This commit is contained in:
27
CHANGELOG.md
27
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
|
||||
|
||||
2
main.go
2
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()
|
||||
|
||||
7
server/events/work_queue.go
Normal file
7
server/events/work_queue.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package events
|
||||
|
||||
type WorkQueue struct {
|
||||
}
|
||||
|
||||
func (w *WorkQueue) WaitForTurn(repoFullName string, pullNum int) {
|
||||
}
|
||||
Reference in New Issue
Block a user