From 71a0f6765cc469913a0b09728196feb0d0d33e37 Mon Sep 17 00:00:00 2001 From: UTSA BHATTACHARJYA Date: Thu, 2 Jun 2022 00:08:14 +0000 Subject: [PATCH] Release 1.61.2 --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- agent/version/version.go | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e72900fdb3c..3d39faa6407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## 1.61.2 +* Enhancement - Integrate new/updated build targets and processes [#3234](https://github.com/aws/amazon-ecs-agent/pull/3234) +* Enhancement - Trimming task reason to a max of 1024 characters as per Back-end model [#3229](https://github.com/aws/amazon-ecs-agent/pull/3229) +* Enhancement - Add log message when receiving error during cached image inspection [#3216](https://github.com/aws/amazon-ecs-agent/pull/3216) +* Bug - Fix an issue where a task can be stuck in PENDING for ever when container dependencies can never be fulfilled [#3218](https://github.com/aws/amazon-ecs-agent/pull/3218) + ## 1.61.1 * Enhancement - Remove hard-coded task CPU limit and advertise a new capability ecs.capability.increased-task-cpu-limit [#3197](https://github.com/aws/amazon-ecs-agent/pull/3197) * Enhancement - Simplify api/task code [#3176](https://github.com/aws/amazon-ecs-agent/pull/3176) diff --git a/VERSION b/VERSION index 30e298c7494..199ea37350b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.61.1 +1.61.2 diff --git a/agent/version/version.go b/agent/version/version.go index 0a232303473..9f081801407 100644 --- a/agent/version/version.go +++ b/agent/version/version.go @@ -22,10 +22,10 @@ package version // repository. Only the 'Version' const should change in checked-in source code // Version is the version of the Agent -const Version = "1.61.1" +const Version = "1.61.2" // GitDirty indicates the cleanliness of the git repo when this agent was built const GitDirty = true // GitShortHash is the short hash of this agent build -const GitShortHash = "be393c83" +const GitShortHash = "a7818bfa"