Skip to content

Commit 78a2bf0

Browse files
committed
Release 1.86.3
1 parent d6e4c7a commit 78a2bf0

File tree

10 files changed

+33
-7
lines changed

10 files changed

+33
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
# 1.86.3
3+
* Bugfix: AWSVPC task containers' transition to MANIFEST_PULLED state should depend on the network pause container reaching RESOURCES_PROVISIONED state. [#4286](https://github.com/aws/amazon-ecs-agent/pull/4286)
4+
* Enhancement: Update manifest pull retry strategy so that first few retries are quicker to help setups on which image repository calls depend on network pause container being initialized [#4289](https://github.com/aws/amazon-ecs-agent/pull/4289)
5+
* Bugfix: Streamline how tasks stopped per ECS Control Plane [#4301](https://github.com/aws/amazon-ecs-agent/pull/4301)
6+
27
# 1.86.2
38
* Bugfix - Add more validation of stats received from Docker [#4295](https://github.com/aws/amazon-ecs-agent/pull/4295)
49

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.86.2
1+
1.86.3

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.86.2"
25+
const Version = "1.86.3"
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 = "7a0fa963"
31+
const GitShortHash = "d6e4c7a1"

ecs-init/ECSVERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.86.2
1+
1.86.3

ecs-init/config/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const (
4646
// DefaultAgentVersion is the version of the agent that will be
4747
// fetched if required. This should look like v1.2.3 or an
4848
// 8-character sha, as is downloadable from S3.
49-
DefaultAgentVersion = "v1.86.2"
49+
DefaultAgentVersion = "v1.86.3"
5050

5151
// AgentPartitionBucketName is the name of the paritional s3 bucket that stores the agent
5252
AgentPartitionBucketName = "amazon-ecs-agent"

packaging/amazon-linux-ami-integrated/ecs-agent.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
%global agent_image ecs-agent-v%{version}.tar
2727

2828
Name: ecs-init
29-
Version: 1.86.2
29+
Version: 1.86.3
3030
Release: 1%{?dist}
3131
License: Apache 2.0
3232
Summary: Amazon Elastic Container Service initialization application
@@ -270,6 +270,9 @@ fi
270270
%endif
271271

272272
%changelog
273+
* Mon Aug 26 2024 Dane Lim <[email protected]> - 1.86.3-1
274+
- Cache Agent version 1.86.3
275+
273276
* Sat Aug 17 2024 Harish Senthilkumar <[email protected]> - 1.86.2-1
274277
- Cache Agent version 1.86.2
275278

packaging/generic-deb-integrated/debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
amazon-ecs-init (1.86.3-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.86.3
4+
5+
-- Dane Lim <[email protected]> Mon, 26 Aug 2024 18:00:00 +0000
6+
17
amazon-ecs-init (1.86.2-1) stable; urgency=medium
28

39
* Cache Agent version 1.86.2

packaging/generic-rpm-integrated/amazon-ecs-init.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
%global agent_image ecs-agent-v%{version}.tar
2020

2121
Name: amazon-ecs-init
22-
Version: 1.86.2
22+
Version: 1.86.3
2323
Release: 1
2424
License: Apache 2.0
2525
Summary: Amazon Elastic Container Service initialization application
@@ -93,6 +93,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar
9393
%systemd_postun_with_restart amazon-ecs-volume-plugin
9494

9595
%changelog
96+
* Mon Aug 26 2024 Dane Lim <[email protected]> - 1.86.3-1
97+
- Cache Agent version 1.86.3
98+
9699
* Sat Aug 17 2024 Harish Senthilkumar <[email protected]> - 1.86.2-1
97100
- Cache Agent version 1.86.2
98101

packaging/suse/amazon-ecs-init.changes

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
-------------------------------------------------------------------
2+
Mon Aug 26, 18:00:00 UTC 2024 - [email protected] - 1.86.3-1
3+
4+
- Cache Agent version 1.86.3
5+
-------------------------------------------------------------------
26
Sat Aug 17, 18:00:00 UTC 2024 - [email protected] - 1.86.2-1
37

48
- Cache Agent version 1.86.2

scripts/changelog/CHANGELOG_MASTER

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.86.3-1
2+
3+
2024-08-26T10:00:00-08:00
4+
Cache Agent version 1.86.3
5+
16
1.86.2-1
27
Harish Senthilkumar <[email protected]>
38
2024-08-17T10:00:00-08:00

0 commit comments

Comments
 (0)