Skip to content

Commit

Permalink
update agent to 1.15.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Haynes committed Oct 31, 2017
1 parent 0156888 commit 55a2a13
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Changelog

## UNRELEASED
## 1.15.0
* Feature - Support for provisioning Tasks with ENIs
* Enhancement - Support `init` process in containers by adding support for Docker remote API client version 1.25
[#996](https://github.com/aws/amazon-ecs-agent/pull/996)
* Feature - Support for `--init` Docker run flag
* Feature - Introduces container level metadata [#981](https://github.com/aws/amazon-ecs-agent/pull/981)
* Enhancement - Enable 'none' logging driver capability by default
[#1041](https://github.com/aws/amazon-ecs-agent/pull/1041)
* Bug - Fixed a bug where tasks that fail to pull containers can cause the
agent to fail to restore properly after a restart.
[#1033](https://github.com/aws/amazon-ecs-agent/pull/1033)
* Enhancement - Support `init` process in containers by adding support for Docker remote API client version 1.25
[#996](https://github.com/aws/amazon-ecs-agent/pull/996)
* Bug - Fixed a bug where tasks that fail to pull containers can cause the agent
to fail to restore properly after a restart. [#1033](https://github.com/aws/amazon-ecs-agent/pull/1033)
* Bug - Fixed default logging level issue [#1016](https://github.com/aws/amazon-ecs-agent/pull/1016)
* Bug - Fixed a bug where unsupported Docker API client versions could be registered
[#1014](https://github.com/aws/amazon-ecs-agent/pull/1014)
* Bug - Fixed a bug where non-essential container state changes were sometimes not submitted
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.5
1.15.0
2 changes: 1 addition & 1 deletion agent/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
const Version = "1.15.0"

// GitDirty indicates the cleanliness of the git repo when this agent was built
const GitDirty = true
Expand Down
2 changes: 1 addition & 1 deletion misc/windows-deploy/user-data.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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.5'
$agentVersion = 'v1.15.0'
$agentZipUri = "https://s3.amazonaws.com/amazon-ecs-agent/ecs-agent-windows-$agentVersion.zip"
$agentZipMD5Uri = "$agentZipUri.md5"

Expand Down

0 comments on commit 55a2a13

Please sign in to comment.