Skip to content

Commit

Permalink
update agent version to 1.14.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Haynes committed Sep 30, 2017
1 parent ae897cf commit 0dcd02c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## UNRELEASED
* Feature - Support for provisioning Tasks with ENIs

## 1.14.5

This comment has been minimized.

Copy link
@glasser

glasser Oct 6, 2017

Is there really still an unreleased feature on master, or did you insert that header in the wrong place?

This comment has been minimized.

Copy link
@jhaynes

jhaynes Oct 6, 2017

Contributor

There is an unreleased feature in master that is currently disabled. The header is correct.

* 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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.4
1.14.5
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.4"
const Version = "1.14.5"

// 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.3'
$agentVersion = 'v1.14.5'
$agentZipUri = "https://s3.amazonaws.com/amazon-ecs-agent/ecs-agent-windows-$agentVersion.zip"
$agentZipMD5Uri = "$agentZipUri.md5"

Expand Down

0 comments on commit 0dcd02c

Please sign in to comment.