From 989593e94b0678106688b5538b6ab48401f59201 Mon Sep 17 00:00:00 2001 From: Dane H Lim Date: Wed, 7 Dec 2022 19:56:25 +0000 Subject: [PATCH] Release 1.67.1 --- CHANGELOG.md | 3 +++ VERSION | 2 +- agent/version/version.go | 4 ++-- ecs-init/ECSVERSION | 2 +- ecs-init/config/common.go | 2 +- packaging/amazon-linux-ami-integrated/ecs-agent.spec | 5 ++++- packaging/amazon-linux-ami/ecs-agent.spec | 5 ++++- packaging/generic-deb-integrated/debian/changelog | 6 ++++++ packaging/generic-deb/debian/changelog | 6 ++++++ packaging/generic-rpm-integrated/amazon-ecs-init.spec | 5 ++++- packaging/generic-rpm/amazon-ecs-init.spec | 5 ++++- packaging/suse/amazon-ecs-init.changes | 4 ++++ scripts/changelog/CHANGELOG_MASTER | 5 +++++ 13 files changed, 45 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8bd46e6f12..5340c0d579c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.67.1 +* Bug - Read git hash from RELEASE_COMMIT file if possible [#3508](https://github.com/aws/amazon-ecs-agent/pull/3508) + ## 1.67.0 * Bug - Don't log errors on instances not using GMSA [#3489](https://github.com/aws/amazon-ecs-agent/pull/3489) * Enhancement - Update packaging Readme files with updated instructions to build init files [#3490](https://github.com/aws/amazon-ecs-agent/pull/3490) diff --git a/VERSION b/VERSION index 65ee0959841..737e2ba5099 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.67.0 +1.67.1 diff --git a/agent/version/version.go b/agent/version/version.go index f257e17fdbf..31cf9a40e5c 100644 --- a/agent/version/version.go +++ b/agent/version/version.go @@ -22,10 +22,10 @@ package version // repository. Only the 'Version' const should change in checked-in source code // Version is the version of the Agent -const Version = "1.67.0" +const Version = "1.67.1" // GitDirty indicates the cleanliness of the git repo when this agent was built const GitDirty = true // GitShortHash is the short hash of this agent build -const GitShortHash = "d1fa74b5" +const GitShortHash = "9fc6bdb5" diff --git a/ecs-init/ECSVERSION b/ecs-init/ECSVERSION index 65ee0959841..737e2ba5099 100644 --- a/ecs-init/ECSVERSION +++ b/ecs-init/ECSVERSION @@ -1 +1 @@ -1.67.0 +1.67.1 diff --git a/ecs-init/config/common.go b/ecs-init/config/common.go index efd7f20b6f6..b3f448e2a38 100644 --- a/ecs-init/config/common.go +++ b/ecs-init/config/common.go @@ -46,7 +46,7 @@ const ( // DefaultAgentVersion is the version of the agent that will be // fetched if required. This should look like v1.2.3 or an // 8-character sha, as is downloadable from S3. - DefaultAgentVersion = "v1.67.0" + DefaultAgentVersion = "v1.67.1" // AgentPartitionBucketName is the name of the paritional s3 bucket that stores the agent AgentPartitionBucketName = "amazon-ecs-agent" diff --git a/packaging/amazon-linux-ami-integrated/ecs-agent.spec b/packaging/amazon-linux-ami-integrated/ecs-agent.spec index ef74ee707a4..bf759893ce6 100644 --- a/packaging/amazon-linux-ami-integrated/ecs-agent.spec +++ b/packaging/amazon-linux-ami-integrated/ecs-agent.spec @@ -26,7 +26,7 @@ %global agent_image ecs-agent-v%{version}.tar Name: ecs-init -Version: 1.67.0 +Version: 1.67.1 Release: 1%{?dist} License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -272,6 +272,9 @@ fi %endif %changelog +* Wed Dec 07 2022 Dane H Lim - 1.67.1-1 +- Cache Agent version 1.67.1 + * Mon Dec 05 2022 Yash Kulshrestha - 1.67.0-1 - Cache Agent version 1.67.0 diff --git a/packaging/amazon-linux-ami/ecs-agent.spec b/packaging/amazon-linux-ami/ecs-agent.spec index f83d768aba4..e7abf7680b7 100644 --- a/packaging/amazon-linux-ami/ecs-agent.spec +++ b/packaging/amazon-linux-ami/ecs-agent.spec @@ -33,7 +33,7 @@ %endif Name: ecs-init -Version: 1.67.0 +Version: 1.67.1 Release: 1%{?dist} License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -279,6 +279,9 @@ fi %endif %changelog +* Wed Dec 07 2022 Dane H Lim - 1.67.1-1 +- Cache Agent version 1.67.1 + * Mon Dec 05 2022 Yash Kulshrestha - 1.67.0-1 - Cache Agent version 1.67.0 diff --git a/packaging/generic-deb-integrated/debian/changelog b/packaging/generic-deb-integrated/debian/changelog index 63b8d37fb81..cad336a50f1 100644 --- a/packaging/generic-deb-integrated/debian/changelog +++ b/packaging/generic-deb-integrated/debian/changelog @@ -1,3 +1,9 @@ +amazon-ecs-init (1.67.1-1) stable; urgency=medium + + * Cache Agent version 1.67.1 + + -- Dane H Lim Wed, 07 Dec 2022 18:00:00 +0000 + amazon-ecs-init (1.67.0-1) stable; urgency=medium * Cache Agent version 1.67.0 diff --git a/packaging/generic-deb/debian/changelog b/packaging/generic-deb/debian/changelog index 63b8d37fb81..cad336a50f1 100644 --- a/packaging/generic-deb/debian/changelog +++ b/packaging/generic-deb/debian/changelog @@ -1,3 +1,9 @@ +amazon-ecs-init (1.67.1-1) stable; urgency=medium + + * Cache Agent version 1.67.1 + + -- Dane H Lim Wed, 07 Dec 2022 18:00:00 +0000 + amazon-ecs-init (1.67.0-1) stable; urgency=medium * Cache Agent version 1.67.0 diff --git a/packaging/generic-rpm-integrated/amazon-ecs-init.spec b/packaging/generic-rpm-integrated/amazon-ecs-init.spec index f2047b88294..0d1df6a4948 100644 --- a/packaging/generic-rpm-integrated/amazon-ecs-init.spec +++ b/packaging/generic-rpm-integrated/amazon-ecs-init.spec @@ -19,7 +19,7 @@ %global agent_image ecs-agent-v%{version}.tar Name: amazon-ecs-init -Version: 1.67.0 +Version: 1.67.1 Release: 1 License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -95,6 +95,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar %systemd_postun_with_restart amazon-ecs-volume-plugin %changelog +* Wed Dec 07 2022 Dane H Lim - 1.67.1-1 +- Cache Agent version 1.67.1 + * Mon Dec 05 2022 Yash Kulshrestha - 1.67.0-1 - Cache Agent version 1.67.0 diff --git a/packaging/generic-rpm/amazon-ecs-init.spec b/packaging/generic-rpm/amazon-ecs-init.spec index 64a79707e4e..dbb3aaeda36 100644 --- a/packaging/generic-rpm/amazon-ecs-init.spec +++ b/packaging/generic-rpm/amazon-ecs-init.spec @@ -26,7 +26,7 @@ #%endif Name: amazon-ecs-init -Version: 1.67.0 +Version: 1.67.1 Release: 1 License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -105,6 +105,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar %systemd_postun_with_restart amazon-ecs-volume-plugin %changelog +* Wed Dec 07 2022 Dane H Lim - 1.67.1-1 +- Cache Agent version 1.67.1 + * Mon Dec 05 2022 Yash Kulshrestha - 1.67.0-1 - Cache Agent version 1.67.0 diff --git a/packaging/suse/amazon-ecs-init.changes b/packaging/suse/amazon-ecs-init.changes index 781233a0e6a..96c6c4c2cb7 100644 --- a/packaging/suse/amazon-ecs-init.changes +++ b/packaging/suse/amazon-ecs-init.changes @@ -1,4 +1,8 @@ ------------------------------------------------------------------- +Wed Dec 07, 18:00:00 UTC 2022 - slimdane@amazon.com - 1.67.1-1 + +- Cache Agent version 1.67.1 +------------------------------------------------------------------- Mon Dec 05, 18:00:00 UTC 2022 - kulshres@amazon.com - 1.67.0-1 - Cache Agent version 1.67.0 diff --git a/scripts/changelog/CHANGELOG_MASTER b/scripts/changelog/CHANGELOG_MASTER index 9e8c8b8badb..5af779da891 100644 --- a/scripts/changelog/CHANGELOG_MASTER +++ b/scripts/changelog/CHANGELOG_MASTER @@ -1,3 +1,8 @@ +1.67.1-1 +Dane H Lim +2022-12-07T10:00:00-08:00 +Cache Agent version 1.67.1 + 1.67.0-1 Yash Kulshrestha 2022-12-05T10:00:00-08:00