From 6f84a80c3159f116c6d8b852743ee5926c0eebb8 Mon Sep 17 00:00:00 2001 From: dependabot-ci Date: Tue, 15 Aug 2023 11:16:34 +0100 Subject: [PATCH] (maint) prep for v2.19.0 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d585f3607..004a8c714f 100644 --- a/CHANGELOG.md +++ b/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) @@ -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) diff --git a/version/version.go b/version/version.go index 4407889136..3d211a1a32 100644 --- a/version/version.go +++ b/version/version.go @@ -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. diff --git a/version/version_test.go b/version/version_test.go index 2c2a73a050..a935f1602e 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -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) } }