Skip to content

Commit

Permalink
Merge pull request #3352 from tphoney/prep2.19.0
Browse files Browse the repository at this point in the history
(maint) prep for v2.19.0
  • Loading branch information
TP Honey committed Aug 15, 2023
2 parents 7fc7d65 + 6f84a80 commit 7082fe9
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,33 @@
# Changelog

## [v2.19.0](https://github.com/harness/drone/tree/v2.19.0) (2023-08-15)

[Full Changelog](https://github.com/harness/drone/compare/scheduler_experiment...v2.19.0)

**Implemented enhancements:**

- Support arbitrary action value from parameter in query string [\#3341](https://github.com/harness/drone/pull/3341) ([filippopisano](https://github.com/filippopisano))

**Fixed bugs:**

- bump drone-ui to 2.11.5 [\#3350](https://github.com/harness/drone/pull/3350) ([d1wilko](https://github.com/d1wilko))
- bump drone-ui to 2.11.4 [\#3349](https://github.com/harness/drone/pull/3349) ([d1wilko](https://github.com/d1wilko))
- \(fix\) prevent scheduler deadlock [\#3344](https://github.com/harness/drone/pull/3344) ([tphoney](https://github.com/tphoney))
- bump drone-ui to 2.11.3 [\#3337](https://github.com/harness/drone/pull/3337) ([d1wilko](https://github.com/d1wilko))

**Merged pull requests:**

- remove repetitive words [\#3342](https://github.com/harness/drone/pull/3342) ([cuishuang](https://github.com/cuishuang))
- Revert "fix scheduler queue deadlock" [\#3331](https://github.com/harness/drone/pull/3331) ([tphoney](https://github.com/tphoney))

## [scheduler_experiment](https://github.com/harness/drone/tree/scheduler_experiment) (2023-07-05)

[Full Changelog](https://github.com/harness/drone/compare/v2.18.0...scheduler_experiment)

**Fixed bugs:**

- fix scheduler queue deadlock [\#3330](https://github.com/harness/drone/pull/3330) ([tphoney](https://github.com/tphoney))

## [v2.18.0](https://github.com/harness/drone/tree/v2.18.0) (2023-07-04)

[Full Changelog](https://github.com/harness/drone/compare/v2.17.0...v2.18.0)
Expand All @@ -13,6 +41,10 @@
- bump drone-ui to 2.11.2 [\#3327](https://github.com/harness/drone/pull/3327) ([d1wilko](https://github.com/d1wilko))
- Fix comment errors [\#3302](https://github.com/harness/drone/pull/3302) ([weidongkl](https://github.com/weidongkl))

**Merged pull requests:**

- v2.18.0 release prep [\#3328](https://github.com/harness/drone/pull/3328) ([tphoney](https://github.com/tphoney))

## [v2.17.0](https://github.com/harness/drone/tree/v2.17.0) (2023-04-25)

[Full Changelog](https://github.com/harness/drone/compare/v2.16.0...v2.17.0)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -25,7 +25,7 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 2
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 18
VersionMinor int64 = 19
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
// VersionPre indicates prerelease.
Expand Down
2 changes: 1 addition & 1 deletion version/version_test.go
Expand Up @@ -10,7 +10,7 @@ package version
import "testing"

func TestVersion(t *testing.T) {
if got, want := Version.String(), "2.18.0"; got != want {
if got, want := Version.String(), "2.19.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 7082fe9

Please sign in to comment.