Skip to content

Commit 953af90

Browse files
committed
Release 1.44.4
1 parent f6dcf26 commit 953af90

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.44.4
4+
* Bug - Fix a bug where the ECS Agent did not iterate through all the dependencies of a particular container [#2615](https://github.com/aws/amazon-ecs-agent/pull/2615)
5+
* Bug - Fix a bug where the ECS Agent can lose track of containers if it's stopped by SIGKILL instead of SIGTERM [#2609](https://github.com/aws/amazon-ecs-agent/pull/2609)
6+
* Bug - Fix a bug where the a Docker API call could be made with a blank string instead of a Docker ID [#2608](https://github.com/aws/amazon-ecs-agent/pull/2608)
7+
* Bug - Fix a bug where the ECS Agent was expecting ECS_LOGFILE to be present as an environment variable [#2598](https://github.com/aws/amazon-ecs-agent/pull/2598)
8+
39
## 1.44.3
410
* Bug - Revert Introspection API scope change [#2605](https://github.com/aws/amazon-ecs-agent/pull/2605)
511
* Bug - Fix a bug where ECS_LOGLEVEL stopped controlling logging level on instance [#2597](https://github.com/aws/amazon-ecs-agent/pull/2597)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.44.3
1+
1.44.4

agent/version/version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ package version
2222
// repository. Only the 'Version' const should change in checked-in source code
2323

2424
// Version is the version of the Agent
25-
const Version = "1.44.3"
25+
const Version = "1.44.4"
2626

2727
// GitDirty indicates the cleanliness of the git repo when this agent was built
2828
const GitDirty = true
2929

3030
// GitShortHash is the short hash of this agent build
31-
const GitShortHash = "11509ec7"
31+
const GitShortHash = "f6dcf262"

0 commit comments

Comments
 (0)