Skip to content

2.2.4 (Oct 28th, 2020)

Compare
Choose a tag to compare
@savingoyal savingoyal released this 28 Oct 23:30
· 921 commits to master since this release
c3aab7e

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 curl to requests

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