You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moved prefect.utilities.collections.GraphQLResult to prefect.utilities.graphql.GraphQLResult - #371
SynchronousExecutor now does not do depth first execution for mapped tasks - #373
Renamed prefect.utilities.serialization.JSONField -> JSONCompatible, removed its max_size feature, and no longer automatically serialize payloads as strings - #376
Renamed prefect.utilities.serialization.NestedField.dump_fn -> NestedField.value_selection_fn for clarity - #377
Local secrets are now pulled from secrets in context instead of _secrets - #382
Remove Task and Flow descriptions, Flow project & version attributes - #383
Changed Schedule parameter from on_or_after to after - #396
Environments are immutable and return dict keys instead of str; some arguments for ContainerEnvironment are removed - #398
environment.run() and environment.build(); removed the flows CLI and replaced it with a top-level CLI command, prefect run - #400
The set_temporary_config utility now accepts a single dict of multiple config values, instead of just a key/value pair, and is located in utilities.configuration - #401
Bump click requirement to 7.0, which changes underscores to hyphens at CLI - #409
IntervalSchedule rejects intervals of less than one minute - #427
FlowRunner returns a Running state, not a Pending state, when flows do not finish - #433
Remove the task_contexts argument from FlowRunner.run() - #440
Remove the leading underscore from Prefect-set context keys - #446
Removed throttling tasks within the local cluster - #470
Even start_tasks will not run before their state's start_time (if the state is Scheduled) - #474
DaskExecutor's "processes" keyword argument was renamed "local_processes" - #477
Removed the mapped and map_index kwargs from TaskRunner.run(). These values are now inferred automatically - #485
The upstream_states dictionary used by the Runners only includes State values, not lists of States. The use case that required lists of States is now covered by the Mapped state. - #485