Skip to content

Commit 2950721

Browse files
committed
Release 1.78.0
1 parent e3218ca commit 2950721

File tree

10 files changed

+34
-7
lines changed

10 files changed

+34
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
3+
## 1.78.0
4+
* Feature - Add AppArmor support. [#3941](https://github.com/aws/amazon-ecs-agent/pull/3941)
5+
* Enhancement - Update SSM Agent version to 3.2.1630.0 for ECS exec. [#3952](https://github.com/aws/amazon-ecs-agent/pull/3952)
6+
* Bugfix - fixing an edge case for 'START' container dependency. [#3927](https://github.com/aws/amazon-ecs-agent/pull/3927)
7+
28
## 1.77.0
39
* Feature - ECS_TASK_PIDS_LIMIT for setting the task-level PIDs limit. [#3923](https://github.com/aws/amazon-ecs-agent/pull/3923)
410
* Enhancement - Add interface for csi client [#3899](https://github.com/aws/amazon-ecs-agent/pull/3899)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.77.0
1+
1.78.0

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.77.0"
25+
const Version = "1.78.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 = "70d53be7"
31+
const GitShortHash = "e3218ca6"

ecs-init/ECSVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.77.0
1+
1.78.0

ecs-init/config/common.go

Lines changed: 1 addition & 1 deletion
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.77.0"
49+
DefaultAgentVersion = "v1.78.0"
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

Lines changed: 4 additions & 1 deletion
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.77.0
29+
Version: 1.78.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+
* Wed Oct 11 2023 Cameron Sparr <[email protected]> - 1.78.0-1
273+
- Cache Agent version 1.78.0
274+
272275
* Wed Sep 27 2023 Prateek Chaudhry <[email protected]> - 1.77.0-1
273276
- Cache Agent version 1.77.0
274277

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.78.0-1) stable; urgency=medium
2+
3+
* Cache Agent version 1.78.0
4+
5+
-- Cameron Sparr <[email protected]> Wed, 11 Oct 2023 18:00:00 +0000
6+
17
amazon-ecs-init (1.77.0-1) stable; urgency=medium
28

39
* Cache Agent version 1.77.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.77.0
22+
Version: 1.78.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+
* Wed Oct 11 2023 Cameron Sparr <[email protected]> - 1.78.0-1
96+
- Cache Agent version 1.78.0
97+
9598
* Wed Sep 27 2023 Prateek Chaudhry <[email protected]> - 1.77.0-1
9699
- Cache Agent version 1.77.0
97100

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+
Wed Oct 11, 18:00:00 UTC 2023 - [email protected] - 1.78.0-1
3+
4+
- Cache Agent version 1.78.0
5+
-------------------------------------------------------------------
26
Wed Sep 27, 18:00:00 UTC 2023 - [email protected] - 1.77.0-1
37

48
- Cache Agent version 1.77.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.78.0-1
2+
Cameron Sparr <[email protected]>
3+
2023-10-11T10:00:00-08:00
4+
Cache Agent version 1.78.0
5+
16
1.77.0-1
27
Prateek Chaudhry <[email protected]>
38
2023-09-27T10:00:00-08:00

0 commit comments

Comments
 (0)