diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf84c979f..909b326139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.14.4 +* Enhancement - Batch container state change events. [#867](https://github.com/aws/amazon-ecs-agent/pull/867) +* Enhancement - Improve the error message when reserved memory is larger than the available memory. [#897](https://github.com/aws/amazon-ecs-agent/pull/897) +* Enhancement - Allow plain HTTP connections through wsclient. [#899](https://github.com/aws/amazon-ecs-agent/pull/899) +* Enhancement - Support Logentries log driver by [@opsline-radek](https://github.com/opsline-radek). [#870](https://github.com/aws/amazon-ecs-agent/pull/870) +* Enhancement - Allow instance attributes to be provided from config file + by [@ejholmes](https://github.com/ejholmes). [#908](https://github.com/aws/amazon-ecs-agent/pull/908) +* Enhancement - Reduce the disconnection period to the backend for idle connections. [#912](https://github.com/aws/amazon-ecs-agent/pull/912) +* Bug - Fix data race where a pointer was returned in Getter. [#889](https://github.com/aws/amazon-ecs-agent/pull/899) +* Bug - Reset agent state if the instance id changed on agent restart. [#892](https://github.com/aws/amazon-ecs-agent/pull/892) +* Bug - Fix a situation in which containers may be falsely reported as STOPPED + in the case of a Docker "stop" API failure. [#910](https://github.com/aws/amazon-ecs-agent/pull/910) +* Bug - Fix typo in log string by [@sharuzzaman](https://github.com/sharuzzaman). [#930](https://github.com/aws/amazon-ecs-agent/pull/930) + ## 1.14.3 * Bug - Fix a deadlock that was caused by the ImageCleanup and Image Pull. [#836](https://github.com/aws/amazon-ecs-agent/pull/836) diff --git a/VERSION b/VERSION index 4ea8ad87e6..4e00d0ac07 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.3 +1.14.4 diff --git a/agent/version/version.go b/agent/version/version.go index 3e9770ea4c..53dab2595f 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.3" +const Version = "1.14.4" // GitDirty indicates the cleanliness of the git repo when this agent was built const GitDirty = true