Skip to content

Releases: Netflix/metaflow

2.11.10

11 Apr 21:08
5908c4e
Compare
Choose a tag to compare

Improvements

Argo Events trigger improvements for parameters with default values

This release fixes an issue where partial or empty argo event payloads would incorrectly overwrite the default values for the parameters of a triggered flow.

For example a flow with

@trigger(events=["params_event"])
class DefaultParamEventFlow(FlowSpec):

    param_a = Parameter(
        name="param_a",
        default="default value A",
    )

    param_b = Parameter(
        name="param_b",
        default="default value B",
    )

will now correctly have the default values for its parameters when triggered by

from metaflow.integrations import ArgoEvent
ArgoEvent('params_event').publish()

or a default value for param_b and the supplied value for param_a when triggered by

ArgoEvent('params_event').publish({"param_a": "custom-value"})

What's Changed

Full Changelog: 2.11.9...2.11.10

2.11.9

29 Mar 18:23
bae5c10
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.8...2.11.9

2.11.8

29 Mar 10:22
e577781
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.7...2.11.8

2.11.7

27 Mar 21:09
4d855ab
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.6...2.11.7

2.11.6

23 Mar 20:16
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.5...2.11.6

2.11.5

14 Mar 17:27
ef7cb9d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.11.4...2.11.5

2.11.4

27 Feb 00:37
c90a71b
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.3...2.11.4

2.11.3

21 Feb 03:21
1bacc31
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.11.2...2.11.3

2.11.2

08 Feb 19:41
e815a13
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.11.1...2.11.2

2.11.1

29 Jan 23:42
dd59dd9
Compare
Choose a tag to compare

Features

Auto generated stubs package

You can now install metaflow[stubs] to install an additional metaflow-stubs package that provides type hints for Metaflow decorators (and other objects). Some hints were previously included inline but this package expands their use.

What's Changed

New Contributors

Full Changelog: 2.11.0...2.11.1