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/),
|
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)
|
||||||
|
|
||||||
|
|||||||
@@ -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").
|
||||||
|
|||||||
@@ -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"`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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").
|
||||||
|
|||||||
Reference in New Issue
Block a user