Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Netflix/metaflow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.16.5
Choose a base ref
...
head repository: Netflix/metaflow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.16.6
Choose a head ref
  • 4 commits
  • 4 files changed
  • 4 contributors

Commits on Jul 21, 2025

  1. Configuration menu
    Copy the full SHA
    a32f4b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2025

  1. [bug fix] fix subtle bug from #2463 (#2513)

    When doing something like :
    ```
    from metaflow import project
    
    ....
    
    mymutableflow.add_decorator(
    project, deco_kwargs={"name":"abc"})
    ```
    
    Metaflow breaks with the error :
    
    ```
     File ".../metaflow/flowspec.py", line 312, in _process_config_decorators
        deco.pre_mutate(mutable_flow)
      File "mydeco.py", line 67, in pre_mutate
        mutable_flow.add_decorator(
      File ".../metaflow/user_decorators/mutable_flow.py", line 409, in add_decorator
        _add_flow_decorator(
      File ".../metaflow/user_decorators/mutable_flow.py", line 353, in _add_flow_decorator
          d for d in self._flow_cls._flow_decorators if d.name == flow_deco.name
                                                      ^^^^^^
    AttributeError: 'str' object has no attribute 'name'
    ```
    
    This is because we dont handle the _flow_cls._flow_decorators in the
    right way (as a dict instead of list)
    valayDave authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    9facfe6 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

  1. Configuration menu
    Copy the full SHA
    3e1b708 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2025

  1. patch release (#2517)

    savingoyal authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    6cd6a39 View commit details
    Browse the repository at this point in the history
Loading