Skip to content

Commit 7dda21e

Browse files
author
Thean Lim
committed
Release 1.92.0
1 parent ef05ac6 commit 7dda21e

File tree

10 files changed

+41
-7
lines changed

10 files changed

+41
-7
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# Changelog
2+
# 1.92.0
3+
* Enhancement - Migrate ECS client to aws-sdk-go-v2 [#4447](https://github.com/aws/amazon-ecs-agent/pull/4447)
4+
* Enhancement - Update tcs api model to rename osFilesystem to rootFileSystem. [#4525](https://github.com/aws/amazon-ecs-agent/pull/4525)
5+
* Enhancement - Enhance unit test TestSetInstanceIdentity [#4533](https://github.com/aws/amazon-ecs-agent/pull/4533)
6+
* Enhancement - Increased container exit reason message size from 255 to 1024 characters [#4545](https://github.com/aws/amazon-ecs-agent/pull/4545)
7+
* Enhancement - Bump golang.org/x/net from 0.33.0 to 0.36.0 in /agent [#4532](https://github.com/aws/amazon-ecs-agent/pull/4532)
8+
* Enhancement - Migrate ACS over to AWS SDK Go V2 [#4534](https://github.com/aws/amazon-ecs-agent/pull/4534)
9+
* Enhancement - Migrate ASM to aws-sdk-go-v2 [#4556](https://github.com/aws/amazon-ecs-agent/pull/4556)
10+
* Enhancement - Add IPv4 and IPv6 detection to Agent [#4561](https://github.com/aws/amazon-ecs-agent/pull/4561)
11+
* Enhancement - Update Agent build golang version to 1.23.7 [#4563](https://github.com/aws/amazon-ecs-agent/pull/4563)
12+
* Bugfix - Update tcs api model to rename BytesUtilized to bytesUtilized [#4537](https://github.com/aws/amazon-ecs-agent/pull/4537)
13+
* Bugfix - Change back to having struct field pointers within TaskProtectionResponse [#4559](https://github.com/aws/amazon-ecs-agent/pull/4559)
14+
215
# 1.91.2
316
* Bugfix - Revert "Migrate ECR client to aws-sdk-go-v2". [4539](https://github.com/aws/amazon-ecs-agent/pull/4539)
417

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.91.2
1+
1.92.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.91.2"
25+
const Version = "1.92.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 = "84d22c61"
31+
const GitShortHash = "ef05ac67"

ecs-init/ECSVERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.91.2
1+
1.92.0

ecs-init/config/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const (
4545
// DefaultAgentVersion is the version of the agent that will be
4646
// fetched if required. This should look like v1.2.3 or an
4747
// 8-character sha, as is downloadable from S3.
48-
DefaultAgentVersion = "v1.91.2"
48+
DefaultAgentVersion = "v1.92.0"
4949

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

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
%global ebs_csi_driver_dir /var/lib/ecs/deps/daemons/ebs-csi-driver
2828

2929
Name: ecs-init
30-
Version: 1.91.2
30+
Version: 1.92.0
3131
Release: 1%{?dist}
3232
License: Apache 2.0
3333
Summary: Amazon Elastic Container Service initialization application
@@ -282,6 +282,9 @@ fi
282282
%endif
283283

284284
%changelog
285+
* Wed Apr 09 2025 Thean Lim <theanlim@amazon.com> - 1.92.0-1
286+
- Cache Agent version 1.92.0
287+
285288
* Thu Mar 20 2025 Dane H Lim <slimdane@amazon.com> - 1.91.2-1
286289
- Cache Agent version 1.91.2
287290

packaging/generic-deb-integrated/debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
amazon-ecs-init (1.92.0-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.92.0
4+
5+
-- Thean Lim <theanlim@amazon.com> Wed, 09 Apr 2025 18:00:00 +0000
6+
17
amazon-ecs-init (1.91.2-1) stable; urgency=medium
28

39
* Cache Agent version 1.91.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.91.2
22+
Version: 1.92.0
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+
* Wed Apr 09 2025 Thean Lim <theanlim@amazon.com> - 1.92.0-1
97+
- Cache Agent version 1.92.0
98+
9699
* Thu Mar 20 2025 Dane H Lim <slimdane@amazon.com> - 1.91.2-1
97100
- Cache Agent version 1.91.2
98101

packaging/suse/amazon-ecs-init.changes

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
-------------------------------------------------------------------
2+
Wed Apr 09, 18:00:00 UTC 2025 - theanlim@amazon.com - 1.92.0-1
3+
4+
- Cache Agent version 1.92.0
5+
-------------------------------------------------------------------
26
Thu Mar 20, 18:00:00 UTC 2025 - slimdane@amazon.com - 1.91.2-1
37

48
- Cache Agent version 1.91.2

scripts/changelog/CHANGELOG_MASTER

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.92.0-1
2+
Thean Lim <theanlim@amazon.com>
3+
2025-04-09T10:00:00-08:00
4+
Cache Agent version 1.92.0
5+
16
1.91.2-1
27
Dane H Lim <slimdane@amazon.com>
38
2025-03-20T10:00:00-08:00

0 commit comments

Comments
 (0)