Skip to content

Commit b3258c6

Browse files
committed
Release 1.93.1
1 parent dabc544 commit b3258c6

File tree

10 files changed

+47
-7
lines changed

10 files changed

+47
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
# Changelog
2+
# 1.93.1
3+
* Enhancement - aws-sdk-go-v2 migration
4+
* ECR Client [#4550](https://github.com/aws/amazon-ecs-agent/pull/4550)
5+
* S3 Client [#4564](https://github.com/aws/amazon-ecs-agent/pull/4564)
6+
* TCS Client [#4554](https://github.com/aws/amazon-ecs-agent/pull/4554)
7+
* SSM Client [#4611](https://github.com/aws/amazon-ecs-agent/pull/4611)
8+
* FSx Client [#4621](https://github.com/aws/amazon-ecs-agent/pull/4621)
9+
* ECS-agent shared library [#4583](https://github.com/aws/amazon-ecs-agent/pull/4583)
10+
* Docker agent-related files [#4608](https://github.com/aws/amazon-ecs-agent/pull/4608)
11+
* Add awslogs-endpoint for isolated regions [#4570](https://github.com/aws/amazon-ecs-agent/pull/4570)
12+
* Replace v1 endpoints package with internal AWS SDK v2 partition metadata [#4614](https://github.com/aws/amazon-ecs-agent/pull/4614)
13+
* Enhancement - IPv6-only support
14+
* S3 and S3Manager clients resolve to dualstack endpoint on IPV6-only instances [#4580](https://github.com/aws/amazon-ecs-agent/pull/4580)
15+
* TaskProtection Client resolves to dualstack endpoint on IPV6-only instances [#4607](https://github.com/aws/amazon-ecs-agent/pull/4607)
16+
* Populate IPv6 subnet gateway address from ACS payload [#4604](https://github.com/aws/amazon-ecs-agent/pull/4604)
17+
* IPv6 default route for IPv6-only awsvpc tasks [#4603](https://github.com/aws/amazon-ecs-agent/pull/4603)
18+
* Add IPv6 fields in the task network config for IPv6 only host mode tasks [#4605](https://github.com/aws/amazon-ecs-agent/pull/4605)
19+
* Bugfix - Adds RestartPolicy for ServiceConnect Relay Instance Task [#4602](https://github.com/aws/amazon-ecs-agent/pull/4602)
20+
221
# 1.93.0
322
* Enhancement - Add visibility to the ECS Agent for the upcoming release of Windows Server 2025 ECS AMIs and adds integration test support for Windows Server 2025 [#4547](https://github.com/aws/amazon-ecs-agent/pull/4547)
423
* Enhancement - Modify CW endpoint short term solution to include more regions [#4569](https://github.com/aws/amazon-ecs-agent/pull/4569)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.93.0
1+
1.93.1

agent/version/version.go

Lines changed: 2 additions & 2 deletions
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.93.0"
25+
const Version = "1.93.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 = "9d62df88"
31+
const GitShortHash = "dabc5442"

ecs-init/ECSVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.93.0
1+
1.93.1

ecs-init/config/common.go

Lines changed: 1 addition & 1 deletion
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.93.0"
48+
DefaultAgentVersion = "v1.93.1"
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

Lines changed: 4 additions & 1 deletion
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.93.0
30+
Version: 1.93.1
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+
* Tue May 06 2025 Anuj Singh <[email protected]> - 1.93.1-1
286+
- Cache Agent version 1.93.1
287+
285288
* Wed Apr 23 2025 Amogh Rathore <[email protected]> - 1.93.0-1
286289
- Cache Agent version 1.93.0
287290

packaging/generic-deb-integrated/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
amazon-ecs-init (1.93.1-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.93.1
4+
5+
-- Anuj Singh <[email protected]> Tue, 06 May 2025 18:00:00 +0000
6+
17
amazon-ecs-init (1.93.0-1) stable; urgency=medium
28

39
* Cache Agent version 1.93.0

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

Lines changed: 4 additions & 1 deletion
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.93.0
22+
Version: 1.93.1
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+
* Tue May 06 2025 Anuj Singh <[email protected]> - 1.93.1-1
97+
- Cache Agent version 1.93.1
98+
9699
* Wed Apr 23 2025 Amogh Rathore <[email protected]> - 1.93.0-1
97100
- Cache Agent version 1.93.0
98101

packaging/suse/amazon-ecs-init.changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
-------------------------------------------------------------------
2+
Tue May 06, 18:00:00 UTC 2025 - [email protected] - 1.93.1-1
3+
4+
- Cache Agent version 1.93.1
5+
-------------------------------------------------------------------
26
Wed Apr 23, 18:00:00 UTC 2025 - [email protected] - 1.93.0-1
37

48
- Cache Agent version 1.93.0

scripts/changelog/CHANGELOG_MASTER

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.93.1-1
2+
Anuj Singh <[email protected]>
3+
2025-05-06T10:00:00-08:00
4+
Cache Agent version 1.93.1
5+
16
1.93.0-1
27
Amogh Rathore <[email protected]>
38
2025-04-23T10:00:00-08:00

0 commit comments

Comments
 (0)