diff --git a/CHANGELOG.md b/CHANGELOG.md index 0546e7bb2d3..58e8c8ea3d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 1.79.0 +* Feature - Add support for finding EBS devices on Xen instances [#3971](https://github.com/aws/amazon-ecs-agent/pull/3971) +* Feature - Add network builder and platform APIs [#3939](https://github.com/aws/amazon-ecs-agent/pull/3939) +* Enhancement - Load managed daemon images in background to speed up startup time [#3984](https://github.com/aws/amazon-ecs-agent/pull/3984) +* Enhancement - ECS client API update [#3974](https://github.com/aws/amazon-ecs-agent/pull/3974) +* Enhancement - Upgrade Golang version to 1.20.10 [#3988](https://github.com/aws/amazon-ecs-agent/pull/3988) +* Enhancement - Integrate the applicable shared ECS interfaces with agent [#4008](https://github.com/aws/amazon-ecs-agent/pull/4008) +* Enhancement - Add generic Attachment interface to allow for multiple attachment types [#3969](https://github.com/aws/amazon-ecs-agent/pull/3969) +* Enhancement - Minor refactor of TTL cache (allow nil TTL + get TTL) [#3968](https://github.com/aws/amazon-ecs-agent/pull/3968) +* Enhancement - Update ecs-agent/ ECS model with missing fields + consume the same [#3999](https://github.com/aws/amazon-ecs-agent/pull/3999) +* Bugfix - Update ecs-agent in-container path for managed daemon logging [#3982](https://github.com/aws/amazon-ecs-agent/pull/3982) +* Bugfix - Fix local agent state for CSI driver daemon task [#3970](https://github.com/aws/amazon-ecs-agent/pull/3970) +* Bugfix - Fix invalid task volumes field for EBS-backed task payload [#3975](https://github.com/aws/amazon-ecs-agent/pull/3975) +* Bugfix - Bugfixes for EBS Task Attach [#3965](https://github.com/aws/amazon-ecs-agent/pull/3965) + ## 1.78.1 * Bugfix - revert "add apparmor support". [3993](https://github.com/aws/amazon-ecs-agent/pull/3993) diff --git a/VERSION b/VERSION index d9741f66cac..b3a8c61e6a8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.78.1 +1.79.0 diff --git a/agent/version/version.go b/agent/version/version.go index 0b503255d77..6c64188c013 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.78.1" +const Version = "1.79.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 = "63c4fc73" +const GitShortHash = "9bc4f08a" diff --git a/ecs-init/ECSVERSION b/ecs-init/ECSVERSION index d9741f66cac..b3a8c61e6a8 100644 --- a/ecs-init/ECSVERSION +++ b/ecs-init/ECSVERSION @@ -1 +1 @@ -1.78.1 +1.79.0 diff --git a/ecs-init/config/common.go b/ecs-init/config/common.go index b4981e9fd3b..068fb0fdf99 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.78.1" + DefaultAgentVersion = "v1.79.0" // 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 11df97931b8..e6404622551 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.78.1 +Version: 1.79.0 Release: 1%{?dist} License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -269,6 +269,9 @@ fi %endif %changelog +* Tue Oct 31 2023 Saisree Valluri - 1.79.0-1 +- Cache Agent version 1.79.0 + * Thu Oct 26 2023 Anuj Singh - 1.78.1-1 - Cache Agent version 1.78.1 diff --git a/packaging/generic-deb-integrated/debian/changelog b/packaging/generic-deb-integrated/debian/changelog index c5463675707..e2dd6e99406 100644 --- a/packaging/generic-deb-integrated/debian/changelog +++ b/packaging/generic-deb-integrated/debian/changelog @@ -1,3 +1,9 @@ +amazon-ecs-init (1.79.0-1) stable; urgency=medium + + * Cache Agent version 1.79.0 + + -- Saisree Valluri Tue, 31 Oct 2023 18:00:00 +0000 + amazon-ecs-init (1.78.1-1) stable; urgency=medium * Cache Agent version 1.78.1 diff --git a/packaging/generic-rpm-integrated/amazon-ecs-init.spec b/packaging/generic-rpm-integrated/amazon-ecs-init.spec index cc5240a11df..858ba95b369 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.78.1 +Version: 1.79.0 Release: 1 License: Apache 2.0 Summary: Amazon Elastic Container Service initialization application @@ -92,6 +92,9 @@ ln -sf %{basename:%{agent_image}} %{_cachedir}/ecs/ecs-agent.tar %systemd_postun_with_restart amazon-ecs-volume-plugin %changelog +* Tue Oct 31 2023 Saisree Valluri - 1.79.0-1 +- Cache Agent version 1.79.0 + * Thu Oct 26 2023 Anuj Singh - 1.78.1-1 - Cache Agent version 1.78.1 diff --git a/packaging/suse/amazon-ecs-init.changes b/packaging/suse/amazon-ecs-init.changes index e99fd3457b4..9ec24418ba7 100644 --- a/packaging/suse/amazon-ecs-init.changes +++ b/packaging/suse/amazon-ecs-init.changes @@ -1,4 +1,8 @@ ------------------------------------------------------------------- +Tue Oct 31, 18:00:00 UTC 2023 - vsaisree@amazon.com - 1.79.0-1 + +- Cache Agent version 1.79.0 +------------------------------------------------------------------- Thu Oct 26, 18:00:00 UTC 2023 - singholt@amazon.com - 1.78.1-1 - Cache Agent version 1.78.1 diff --git a/scripts/changelog/CHANGELOG_MASTER b/scripts/changelog/CHANGELOG_MASTER index 03e34ba811d..f2bdebb7885 100644 --- a/scripts/changelog/CHANGELOG_MASTER +++ b/scripts/changelog/CHANGELOG_MASTER @@ -1,3 +1,8 @@ +1.79.0-1 +Saisree Valluri +2023-10-31T10:00:00-08:00 +Cache Agent version 1.79.0 + 1.78.1-1 Anuj Singh 2023-10-26T10:00:00-08:00