0.7.2
Released on December 19, 2025 Features- Add AWS AssumeRole support to AWSCredentials Block #19833 by @bdalpe
- Add support for AWS IAM authentication for RDS PostgreSQL #19580 by @alaminopu
- Add py.typed file for type hinting support in prefect-aws #19413 by @peterbygrave
- Allow EC2 task definitions to omit launchType for capacity providers #19630 by @zzstoatzz
0.7.1
Released on November 07, 2025 Bug Fixes- Fix missing required
clusterandlaunchTypeparameters inrun_taskAPI Call for ECS worker #19335 by @desertaxle
0.7.0
Released on October 31, 2025 Bug Fixes- Fix
CRASHEDstate marking when containers exit with a non-zero exit code in an ECS task #19310 by @leetrout
- Remove Python 3.9 support #19273 by @desertaxle
0.6.0
Released on October 14, 2025 With this release the ECS worker now uses an event-based architecture that receives task state changes via EventBridge and SQS, replacing the previous polling-based design. This dramatically improves crash detection responsiveness and reduces API overhead. The worker gracefully degrades to limited functionality if SQS is unavailable, ensuring continued operation even during infrastructure issues. See the ECS worker documentation for setup instructions. Features- Move ECS worker to event-based crash detection #18804 by @desertaxle
0.5.16
Released on August 27, 2025 Bug Fixes- Fix exposed typing imports and remove start signal for observer to avoid the ECS worker hanging on start up #18798 by @desertaxle
0.5.15
Released on August 26, 2025 This release fixes a bug whereprefect-aws depended on mypy_boto3_sqs unnecessarily and caused an error on start up.
0.5.14
Released on August 26, 2025 This release introduces significant improvements to ECS worker management and observability. The newprefect-aws CLI simplifies ECS worker deployment with commands to deploy and manage ECS workers using CloudFormation templates.
Additionally, event replication capabilities have been added to the ECS worker, enabling real-time monitoring of ECS task state changes through SQS and EventBridge. This creates a foundation for more stateless ECS worker operations and ensures events aren’t lost if workers go down during flow execution.
See the ECS worker documentation for CLI usage examples and deployment guides.
Features
- Add event replication to
ECSWorker#18681 by @desertaxle - Add
prefect-awsDocker images #18750 by @desertaxle - Add CDK stacks for ECS worker infrastructure #18755 by @desertaxle
- Add
prefect-awsCLI for ECS worker management #18771 by @desertaxle
- Fix MinIOCredentials hashing with nested config dictionaries #18752 by @zzstoatzz
- Add SQS queue and EventBridge setup to ECS worker manual deployment guide #18789 by @desertaxle