From 1489adfaec05c559ea4e1490774d1f86261cf936 Mon Sep 17 00:00:00 2001 From: Mythri Garaga Manjunatha Date: Wed, 28 Oct 2020 20:17:48 +0000 Subject: [PATCH] Release 1.47.0 --- 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 06f8af9fae8..a9c73bb2f7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.47.0 +* Feature - Add support for FSxWindowsFileServerVolumeConfiguration in task definition [#2690](https://github.com/aws/amazon-ecs-agent/pull/2690) +* Bug - Fixed Makefile to use Go1.12 for Agent windows build +[#2688](https://github.com/aws/amazon-ecs-agent/pull/2688) +* Bug - Initialize the logger from the agent’s main() [#2644](https://github.com/aws/amazon-ecs-agent/pull/2644) + ## 1.46.0 * Enhancement - Use Go 1.15 for Linux platforms and Go 1.12 for Windows platforms [#2653](https://github.com/aws/amazon-ecs-agent/pull/2653) * Bug - Currently, while polling docker stats, there is no timeout for the API call. So the call could be stuck until the container is stopped. Adding poll stats timeout [#2656](https://github.com/aws/amazon-ecs-agent/pull/2656) diff --git a/VERSION b/VERSION index 0a3db35b241..21998d3c2d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.46.0 +1.47.0 diff --git a/agent/version/version.go b/agent/version/version.go index 1dfadb77725..a89f70da226 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.46.0" +const Version = "1.47.0" // 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 = "f734d4f6" +const GitShortHash = "006b065d"