add 1.6.0 to changelog

This commit is contained in:
Brad Rydzewski
2020-11-11 18:17:10 -05:00
parent 9a66f9a7a1
commit f213588b27
4 changed files with 8 additions and 5 deletions

View File

@@ -1,7 +1,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 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). 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 ### Fixed
- exit code 78 not properly exiting early when pipeline has services (from runner-go) - exit code 78 not properly exiting early when pipeline has services (from runner-go)

View File

@@ -195,7 +195,7 @@ func registerCompile(app *kingpin.Application) {
StringVar(&c.Config) StringVar(&c.Config)
cmd.Flag("tmate-image", "tmate docker image"). cmd.Flag("tmate-image", "tmate docker image").
Default("drone/drone-runner-docker:latest"). Default("drone/drone-runner-docker:1").
StringVar(&c.Tmate.Image) StringVar(&c.Tmate.Image)
cmd.Flag("tmate-enabled", "tmate enabled"). cmd.Flag("tmate-enabled", "tmate enabled").

View File

@@ -108,8 +108,8 @@ type Config struct {
} }
Tmate struct { Tmate struct {
Enabled bool `envconfig:"DRONE_TMATE_ENABLED" default:"true"` Enabled bool `envconfig:"DRONE_TMATE_ENABLED" default:"false"`
Image string `envconfig:"DRONE_TMATE_IMAGE" default:"drone/drone-runner-docker:latest"` Image string `envconfig:"DRONE_TMATE_IMAGE" default:"drone/drone-runner-docker:1"`
} }
} }

View File

@@ -330,7 +330,7 @@ func registerExec(app *kingpin.Application) {
StringVar(&c.Config) StringVar(&c.Config)
cmd.Flag("tmate-image", "tmate docker image"). cmd.Flag("tmate-image", "tmate docker image").
Default("drone/drone-runner-docker:latest"). Default("drone/drone-runner-docker:1").
StringVar(&c.Tmate.Image) StringVar(&c.Tmate.Image)
cmd.Flag("tmate-enabled", "tmate enabled"). cmd.Flag("tmate-enabled", "tmate enabled").