diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f9b455d458..469a6f329f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.50.2 +* Bug - Fix potential deadlock due to seelog's string marshalling of task struct [#2811](https://github.com/aws/amazon-ecs-agent/pull/2811) + ## 1.50.1 * Enhancement - Implementation of structured logs on top of seelog [#2797](https://github.com/aws/amazon-ecs-agent/pull/2797) * Bug - Fixed a task status deadlock and pulled container state for cached images when ECS_PULL_DEPENDENT_CONTAINERS_UPFRONT is enabled [#2800](https://github.com/aws/amazon-ecs-agent/pull/2800) diff --git a/VERSION b/VERSION index 9cbd34da1ac..7ef40656729 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.50.1 +1.50.2 diff --git a/agent/version/version.go b/agent/version/version.go index f1ab1e7acd0..95a2a227b0e 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.50.1" +const Version = "1.50.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 = "1f6960f6" +const GitShortHash = "6cd32aa0"