From 6f73034be4097867c36b34e88630012f8ca951a4 Mon Sep 17 00:00:00 2001 From: David Barrell Date: Fri, 9 Sep 2022 13:03:51 +1000 Subject: [PATCH] Bump version and CHANGELOG for v3.39.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++-- agent/version.go | 2 +- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b18df24b63..979aad2dbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,28 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [3.38.0](https://github.com/buildkite/agent/tree/3.38.0) (2022-07-20) -[Full Changelog](https://github.com/buildkite/agent/compare/v3.37.0...3.38.0) +## [v3.39.0](https://github.com/buildkite/agent/tree/v3.39.0) (2022-09-08) +[Full Changelog](https://github.com/buildkite/agent/compare/v3.38.0...v3.39.0) + +### Added +- gcp:instance-name and tweak GCP labels fetching [#1742](https://github.com/buildkite/agent/pull/1742) (@pda) +- Support for not-yet-released per-job agent tokens [#1745](https://github.com/buildkite/agent/pull/1745) (@moskyb) + +### Changed +- Retry Disconnect API calls [#1761](https://github.com/buildkite/agent/pull/1761) (@pda) +- Only search for finished artifacts [#1728](https://github.com/buildkite/agent/pull/1728) (@moskyb) +- Cache S3 clients between artifact downloads [#1732](https://github.com/buildkite/agent/pull/1732) (@moskyb) +- Document label edge case [#1718](https://github.com/buildkite/agent/pull/1718) (@plaindocs) + +### Fixed +- Docker: run /sbin/tini without -g for graceful termination [#1763](https://github.com/buildkite/agent/pull/1763) (@pda) +- Fix multiple-nested plugin repos on gitlab [#1746](https://github.com/buildkite/agent/pull/1746) (@moskyb) +- Fix unowned plugin reference [#1733](https://github.com/buildkite/agent/pull/1733) (@moskyb) +- Fix order of level names for logger.Level.String() [#1722](https://github.com/buildkite/agent/pull/1722) (@moskyb) +- Fix warning log level [#1721](https://github.com/buildkite/agent/pull/1721) (@ChrisBr) + +## [v3.38.0](https://github.com/buildkite/agent/tree/v3.38.0) (2022-07-20) +[Full Changelog](https://github.com/buildkite/agent/compare/v3.37.0...v3.38.0) ### Changed - Include a list of enabled features in the register request [#1706](https://github.com/buildkite/agent/pull/1706) (@moskyb) diff --git a/agent/version.go b/agent/version.go index 15a653e6d5..704d90d4ea 100644 --- a/agent/version.go +++ b/agent/version.go @@ -10,7 +10,7 @@ import "runtime" // // Pre-release builds' versions must be in the format `x.y-beta`, `x.y-beta.z` or `x.y-beta.z.a` -var baseVersion string = "3.38.0" +var baseVersion string = "3.39.0" var buildVersion string = "" func Version() string {