From aae607f6ec98c353f86e4d60960ef98a7d1340ad Mon Sep 17 00:00:00 2001 From: Thean Lim Date: Fri, 15 Nov 2024 00:48:59 +0000 Subject: [PATCH] Release 1.89.0 --- CHANGELOG.md | 7 +++++++ VERSION | 2 +- agent/version/version.go | 4 ++-- ecs-init/version/version.go | 4 ++-- packaging/amazon-linux-ami-integrated/ecs-agent.spec | 3 +++ packaging/generic-deb-integrated/debian/changelog | 6 ++++++ packaging/generic-rpm-integrated/amazon-ecs-init.spec | 3 +++ packaging/suse/amazon-ecs-init.changes | 4 ++++ scripts/changelog/CHANGELOG_MASTER | 5 +++++ 9 files changed, 33 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0afa93a330..f1a78ae19c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +# 1.89.0 +* Enhancement - Bump google.golang.org/grpc from 1.64.0 to 1.64.1 in /ecs-agent/daemonimages/csidriver [#4361](https://github.com/aws/amazon-ecs-agent/pull/4361) +* Enhancement - Log unresolved dependencies at info level [#4419](https://github.com/aws/amazon-ecs-agent/pull/4419) +* Enhancement - Make the path to resolv.conf a configuration parameter instead of a hardcoded string [#4421](https://github.com/aws/amazon-ecs-agent/pull/4421) +* Bugfix - Implement reference counting of volume mounts in amazon-ecs-volume-plugin [#4425](https://github.com/aws/amazon-ecs-agent/pull/4425) +* Bugfix - Set firelens mem_buf_limit by default [#4405](https://github.com/aws/amazon-ecs-agent/pull/4405) + # 1.88.0 * Feature - Fault Injection Service Integration [#4414](https://github.com/aws/amazon-ecs-agent/pull/4414) * Bugfix - Retry GPU devices check during env vars load if instance supports GPU [#4387](https://github.com/aws/amazon-ecs-agent/pull/4387) diff --git a/VERSION b/VERSION index 59be592144c..636ea711ad9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.88.0 +1.89.0 diff --git a/agent/version/version.go b/agent/version/version.go index f84e7e99c0d..b1d0b34a623 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 agent -const Version = "1.88.0" +const Version = "1.89.0" // 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 = "c9040caf" +const GitShortHash = "9494fb35" diff --git a/ecs-init/version/version.go b/ecs-init/version/version.go index 1f6a78c7dc9..b5db04bdc89 100644 --- a/ecs-init/version/version.go +++ b/ecs-init/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 ecs-init -const Version = "1.88.0" +const Version = "1.89.0" // GitDirty indicates the cleanliness of the git repo when this ecs-init was built const GitDirty = true // GitShortHash is the short hash of this ecs-init build -const GitShortHash = "c9040caf" +const GitShortHash = "9494fb35" diff --git a/packaging/amazon-linux-ami-integrated/ecs-agent.spec b/packaging/amazon-linux-ami-integrated/ecs-agent.spec index 0a782b794b3..74aa3865339 100644 --- a/packaging/amazon-linux-ami-integrated/ecs-agent.spec +++ b/packaging/amazon-linux-ami-integrated/ecs-agent.spec @@ -270,6 +270,9 @@ fi %endif %changelog +* Thu Nov 14 2024 Thean Lim - 1.89.0-1 +- Cache Agent version 1.89.0 + * Wed Oct 30 2024 Michael Ye - 1.88.0-1 - Cache Agent version 1.88.0 diff --git a/packaging/generic-deb-integrated/debian/changelog b/packaging/generic-deb-integrated/debian/changelog index 544330adfd6..d671e353212 100644 --- a/packaging/generic-deb-integrated/debian/changelog +++ b/packaging/generic-deb-integrated/debian/changelog @@ -1,3 +1,9 @@ +amazon-ecs-init (1.89.0-1) stable; urgency=medium + + * Cache Agent version 1.89.0 + + -- Thean Lim Thu, 14 Nov 2024 18:00:00 +0000 + amazon-ecs-init (1.88.0-1) stable; urgency=medium * Cache Agent version 1.88.0 diff --git a/packaging/generic-rpm-integrated/amazon-ecs-init.spec b/packaging/generic-rpm-integrated/amazon-ecs-init.spec index 7bc14fe4716..58cc44029d3 100644 --- a/packaging/generic-rpm-integrated/amazon-ecs-init.spec +++ b/packaging/generic-rpm-integrated/amazon-ecs-init.spec @@ -93,6 +93,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar %systemd_postun_with_restart amazon-ecs-volume-plugin %changelog +* Thu Nov 14 2024 Thean Lim - 1.89.0-1 +- Cache Agent version 1.89.0 + * Wed Oct 30 2024 Michael Ye - 1.88.0-1 - Cache Agent version 1.88.0 diff --git a/packaging/suse/amazon-ecs-init.changes b/packaging/suse/amazon-ecs-init.changes index 379e3bf42e2..d2bb85158c8 100644 --- a/packaging/suse/amazon-ecs-init.changes +++ b/packaging/suse/amazon-ecs-init.changes @@ -1,4 +1,8 @@ ------------------------------------------------------------------- +Thu Nov 14, 18:00:00 UTC 2024 - theanlim@amazon.com - 1.89.0-1 + +- Cache Agent version 1.89.0 +------------------------------------------------------------------- Wed Oct 30, 18:00:00 UTC 2024 - yemike@amazon.com - 1.88.0-1 - Cache Agent version 1.88.0 diff --git a/scripts/changelog/CHANGELOG_MASTER b/scripts/changelog/CHANGELOG_MASTER index 0454fd47464..dcc4428edc1 100644 --- a/scripts/changelog/CHANGELOG_MASTER +++ b/scripts/changelog/CHANGELOG_MASTER @@ -1,3 +1,8 @@ +1.89.0-1 +Thean Lim +2024-11-14T10:00:00-08:00 +Cache Agent version 1.89.0 + 1.88.0-1 Michael Ye 2024-10-30T10:00:00-08:00