Skip to content

Commit 883211e

Browse files
author
Realmonia
committed
Release 1.71.1
1 parent 6b42a83 commit 883211e

File tree

10 files changed

+38
-7
lines changed

10 files changed

+38
-7
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changelog
2+
## 1.71.1
3+
* Enhancement - Add new release config file called agentVersionV2-.json to our release CodePipeline project [#3680](https://github.com/aws/amazon-ecs-agent/pull/3680)
4+
* Enhancement - Update third party attribution files [#3655](https://github.com/aws/amazon-ecs-agent/pull/3655)
5+
* Enhancement - Add metrics interface and corresponding no-ops to ecs-agent/ [#3654](https://github.com/aws/amazon-ecs-agent/pull/3654)
6+
* Enhancement - Task state change logging refactor [#3674](https://github.com/aws/amazon-ecs-agent/pull/3674)
7+
* Enhancement - Add default AES256 encryption and enable versioning to buckets [#3673](https://github.com/aws/amazon-ecs-agent/pull/3673)
8+
* Code Quality Improvement - Move TMDS initialization and Audit Logger interface to ecs-agent module, and update agent module to consume them [#3653](https://github.com/aws/amazon-ecs-agent/pull/3653) [#3660](https://github.com/aws/amazon-ecs-agent/pull/3660) [#3663](https://github.com/aws/amazon-ecs-agent/pull/3663) [#3666](https://github.com/aws/amazon-ecs-agent/pull/3666)
9+
* Code Quality Improvement - Clean up ACS model, gogenerate, and tool dependencies [#3659](https://github.com/aws/amazon-ecs-agent/pull/3659) [#3670](https://github.com/aws/amazon-ecs-agent/pull/3670)
10+
* Code Quality Improvement - Move container instance health doctor to ecs-agent/ [#3662](https://github.com/aws/amazon-ecs-agent/pull/3662)
11+
* Code Quality Improvement - Move agent logger to ecs-agent module [#3681](https://github.com/aws/amazon-ecs-agent/pull/3681)
212

313
## 1.71.0
414
* Enhancement - update docker client library to latest in ecs-init [#3635](https://github.com/aws/amazon-ecs-agent/pull/3635)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.71.0
1+
1.71.1

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.71.0"
25+
const Version = "1.71.1"
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 = "fb5096fb"
31+
const GitShortHash = "6b42a83f"

ecs-init/ECSVERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.71.0
1+
1.71.1

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.71.0"
49+
DefaultAgentVersion = "v1.71.1"
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.71.0
29+
Version: 1.71.1
3030
Release: 1%{?dist}
3131
License: Apache 2.0
3232
Summary: Amazon Elastic Container Service initialization application
@@ -269,6 +269,9 @@ fi
269269
%endif
270270

271271
%changelog
272+
* Tue May 09 2023 Heming Han <[email protected]> - 1.71.1-1
273+
- Cache Agent version 1.71.1
274+
272275
* Tue Apr 25 2023 Yiyuan Zhong <[email protected]> - 1.71.0-1
273276
- Cache Agent version 1.71.0
274277

packaging/generic-deb-integrated/debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
amazon-ecs-init (1.71.1-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.71.1
4+
5+
-- Heming Han <[email protected]> Tue, 09 May 2023 18:00:00 +0000
6+
17
amazon-ecs-init (1.71.0-1) stable; urgency=medium
28

39
* Cache Agent version 1.71.0

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.71.0
22+
Version: 1.71.1
2323
Release: 1
2424
License: Apache 2.0
2525
Summary: Amazon Elastic Container Service initialization application
@@ -92,6 +92,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar
9292
%systemd_postun_with_restart amazon-ecs-volume-plugin
9393

9494
%changelog
95+
* Tue May 09 2023 Heming Han <[email protected]> - 1.71.1-1
96+
- Cache Agent version 1.71.1
97+
9598
* Tue Apr 25 2023 Yiyuan Zhong <[email protected]> - 1.71.0-1
9699
- Cache Agent version 1.71.0
97100

packaging/suse/amazon-ecs-init.changes

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
-------------------------------------------------------------------
2+
Tue May 09, 18:00:00 UTC 2023 - [email protected] - 1.71.1-1
3+
4+
- Cache Agent version 1.71.1
5+
-------------------------------------------------------------------
26
Tue Apr 25, 18:00:00 UTC 2023 - [email protected] - 1.71.0-1
37

48
- Cache Agent version 1.71.0

scripts/changelog/CHANGELOG_MASTER

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.71.1-1
2+
Heming Han <[email protected]>
3+
2023-05-09T10:00:00-08:00
4+
Cache Agent version 1.71.1
5+
16
1.71.0-1
27
Yiyuan Zhong <[email protected]>
38
2023-04-25T10:00:00-08:00

0 commit comments

Comments
 (0)