Skip to content

Commit 61c8a8c

Browse files
committed
Release 1.80.0
1 parent c215fe9 commit 61c8a8c

File tree

20 files changed

+49
-17
lines changed

20 files changed

+49
-17
lines changed

CHANGELOG.md

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

3+
## 1.80.0
4+
* Enhancement - Add a mock for VolumeDriver interface [#4056](https://github.com/aws/amazon-ecs-agent/pull/4056)
5+
* Enhancement - Update logger Config setter access pattern [#4051](https://github.com/aws/amazon-ecs-agent/pull/4051)
6+
* Enhancement - Add AppArmor support [#4062](https://github.com/aws/amazon-ecs-agent/pull/4062)
7+
* Enhancement - Update credentials-fetcher docker file [#4068](https://github.com/aws/amazon-ecs-agent/pull/4068)
8+
* Enhancement - Add ECSClientFactory to create new ECS clients [ #4061](https://github.com/aws/amazon-ecs-agent/pull/4061)
9+
* Enhancement - Add CSI nodeUnstage retries. [#4069](https://github.com/aws/amazon-ecs-agent/pull/4069)
10+
* Bugfix - Fix EFS unmount hanging issue for awsvpc tasks [#4053](https://github.com/aws/amazon-ecs-agent/pull/4053)
11+
* Bugfix - Windows numCPU returning incorrectly for values above 64 [#4067](https://github.com/aws/amazon-ecs-agent/pull/4067)
12+
* Bugfix - fsx windows fileserver SSM arn parsing was incorrect [#4058](https://github.com/aws/amazon-ecs-agent/pull/4058)
13+
314
## 1.79.2
415
* Enhancement - Set device names while building task network config [#4026](https://github.com/aws/amazon-ecs-agent/pull/4026)
516
* Enhancement - Record and emit the timestamp that the last connection was established [#4035](https://github.com/aws/amazon-ecs-agent/pull/4035)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.79.2
1+
1.80.0

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.79.2"
25+
const Version = "1.80.0"
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 = "9a26f8eb"
31+
const GitShortHash = "c215fe90"

ecs-init/ECSVERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.79.2
1+
1.80.0

ecs-init/cache/dependencies_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.79.2"
49+
DefaultAgentVersion = "v1.80.0"
5050

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

ecs-init/docker/backoff_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/docker/dependencies_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/engine/dependencies_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/exec/iptables/cmd_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/exec/iptables/exec_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/exec/sysctl/cmd_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/exec/sysctl/exec_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/gpu/nvidia_gpu_manager_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs-init/volumes/driver/mock/driver_mocks.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.79.2
29+
Version: 1.80.0
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 Jan 09 2024 Michael Ye <[email protected]> - 1.80.0-1
273+
- Cache Agent version 1.80.0
274+
272275
* Mon Dec 04 2023 Dane Lim <[email protected]> - 1.79.2-1
273276
- Cache Agent version 1.79.2
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.80.0-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.80.0
4+
5+
-- Michael Ye <[email protected]> Tue, 09 Jan 2024 18:00:00 +0000
6+
17
amazon-ecs-init (1.79.2-1) stable; urgency=medium
28

39
* Cache Agent version 1.79.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.79.2
22+
Version: 1.80.0
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 Jan 09 2024 Michael Ye <[email protected]> - 1.80.0-1
96+
- Cache Agent version 1.80.0
97+
9598
* Mon Dec 04 2023 Dane Lim <[email protected]> - 1.79.2-1
9699
- Cache Agent version 1.79.2
97100

packaging/suse/amazon-ecs-init.changes

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
-------------------------------------------------------------------
2+
Tue Jan 09, 18:00:00 UTC 2024 - [email protected] - 1.80.0-1
3+
4+
- Cache Agent version 1.80.0
5+
-------------------------------------------------------------------
26
Mon Dec 04, 18:00:00 UTC 2023 - [email protected] - 1.79.2-1
37

48
- Cache Agent version 1.79.2

scripts/changelog/CHANGELOG_MASTER

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.80.0-1
2+
Michael Ye <[email protected]>
3+
2024-01-09T10:00:00-08:00
4+
Cache Agent version 1.80.0
5+
16
1.79.2-1
27
38
2023-12-04T10:00:00-08:00

0 commit comments

Comments
 (0)