Metaflow 2.2.4 Release Notes
The Metaflow 2.2.4 release is a minor patch release.
-
Features
- Metaflow is now compliant with AWS GovCloud & AWS CN regions
-
Bug Fixes
- Address a bug with overriding the default value for IncludeFile
- Port AWS region check for AWS DynamoDb from
curltorequests
Features
Metaflow is now compliant with AWS GovCloud & AWS CN regions
AWS GovCloud & AWS CN users can now enjoy all the features of Metaflow within their region partition with no change on their end. PR: #364
Bug Fixes
Address a bug with overriding the default value for IncludeFile
Metaflow v2.1.0 introduced a bug in IncludeFile functionality which prevented users from overriding the default value specified. PR: #346
Port AWS region check for AWS DynamoDb from curl to requests
Metaflow's AWS Step Functions' integration relies on AWS DynamoDb to manage foreach constructs. Metaflow was leveraging curl at runtime to detect the region for AWS DynamoDb. Some docker images don't have curl installed by default; moving to requests (a metaflow dependency) fixes the issue. PR: #343