diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a06df3fe5..3f30803bf2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## UNRELEASED * Feature - Support for provisioning Tasks with ENIs + +## 1.14.5 * Enhancement - Retry failed container image pull operations [#975](https://github.com/aws/amazon-ecs-agent/pull/975) * Enhancement - Set read and write timeouts for websocket connectons [#993](https://github.com/aws/amazon-ecs-agent/pull/993) * Enhancement - Add support for the SumoLogic Docker log driver plugin @@ -11,6 +13,7 @@ * Bug - Fixed an issue where `microsoft/windowsservercore:latest` was not pulled on Windows under certain conditions. [#990](https://github.com/aws/amazon-ecs-agent/pull/990) +* Bug - Fixed an issue where task IAM role credentials could be logged to disk. [#998](https://github.com/aws/amazon-ecs-agent/pull/998) ## 1.14.4 * Enhancement - Batch container state change events. [#867](https://github.com/aws/amazon-ecs-agent/pull/867) diff --git a/VERSION b/VERSION index 4e00d0ac079..61e44cc77cf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.4 +1.14.5 \ No newline at end of file diff --git a/agent/version/version.go b/agent/version/version.go index 53dab2595fb..a4d2d718cde 100644 --- a/agent/version/version.go +++ b/agent/version/version.go @@ -22,7 +22,7 @@ package version // repository. Only the 'Version' const should change in checked-in source code // Version is the version of the Agent -const Version = "1.14.4" +const Version = "1.14.5" // GitDirty indicates the cleanliness of the git repo when this agent was built const GitDirty = true diff --git a/misc/windows-deploy/user-data.ps1 b/misc/windows-deploy/user-data.ps1 index 2dc3a835acc..e98fd7329e8 100644 --- a/misc/windows-deploy/user-data.ps1 +++ b/misc/windows-deploy/user-data.ps1 @@ -4,7 +4,7 @@ # Set agent env variables for the Machine context (durable) [Environment]::SetEnvironmentVariable("ECS_CLUSTER", "windows", "Machine") [Environment]::SetEnvironmentVariable("ECS_ENABLE_TASK_IAM_ROLE", "false", "Machine") -$agentVersion = 'v1.14.3' +$agentVersion = 'v1.14.5' $agentZipUri = "https://s3.amazonaws.com/amazon-ecs-agent/ecs-agent-windows-$agentVersion.zip" $agentZipMD5Uri = "$agentZipUri.md5"