add 1.6.0 to changelog
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Unreleased
|
||||
## 1.6.0
|
||||
### Added
|
||||
- experimental support for remote debugging with tmate, disabled by default
|
||||
|
||||
### Fixed
|
||||
- exit code 78 not properly exiting early when pipeline has services (from runner-go)
|
||||
|
||||
|
||||
@@ -195,7 +195,7 @@ func registerCompile(app *kingpin.Application) {
|
||||
StringVar(&c.Config)
|
||||
|
||||
cmd.Flag("tmate-image", "tmate docker image").
|
||||
Default("drone/drone-runner-docker:latest").
|
||||
Default("drone/drone-runner-docker:1").
|
||||
StringVar(&c.Tmate.Image)
|
||||
|
||||
cmd.Flag("tmate-enabled", "tmate enabled").
|
||||
|
||||
@@ -108,8 +108,8 @@ type Config struct {
|
||||
}
|
||||
|
||||
Tmate struct {
|
||||
Enabled bool `envconfig:"DRONE_TMATE_ENABLED" default:"true"`
|
||||
Image string `envconfig:"DRONE_TMATE_IMAGE" default:"drone/drone-runner-docker:latest"`
|
||||
Enabled bool `envconfig:"DRONE_TMATE_ENABLED" default:"false"`
|
||||
Image string `envconfig:"DRONE_TMATE_IMAGE" default:"drone/drone-runner-docker:1"`
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -330,7 +330,7 @@ func registerExec(app *kingpin.Application) {
|
||||
StringVar(&c.Config)
|
||||
|
||||
cmd.Flag("tmate-image", "tmate docker image").
|
||||
Default("drone/drone-runner-docker:latest").
|
||||
Default("drone/drone-runner-docker:1").
|
||||
StringVar(&c.Tmate.Image)
|
||||
|
||||
cmd.Flag("tmate-enabled", "tmate enabled").
|
||||
|
||||
Reference in New Issue
Block a user