0.19.0 - Eagle Release ChangeLog
v0.19.0 codenamed Eagle, for Flyte marks the first quarterly release for Flyte in 2022. To remind, starting October 2021, the Flyte community has decided to use patch version for monthly releases and minor versions for Quarterly releases.
The release is the last in set of the 3 releases. The prior 2 can be found at
The focus on this release and the previous 2 can be divided into 2 parts
- UX (UI and Flytekit)
- System
As part of the UX, we have been focusing a lot on getting feature breadth in the UI for Flyte (flyteconsole). This is following our current UX design philosophy. We plan to complete the full design in the next 3 months and then create a fully re-designed UX (Stay tuned for more on this.)
The design for Flytekit has been wildly appreciated and we have been heavily working on improving it further and allowing users to express their various requirements much more easily. We are pretty certain on the design of flytekit and we promise that all our users will not experience a breaking change when we release a v1.0.0.
The focus on the system always is improving reliability and performance. This quarter we were able to drastically improve the size of workflows that can be executed and improvements in transition performance between nodes.
The Eagle release sets a great stage for v1.0.0 - Phoenix release slated for April 2022. We think, the Phoenix release will be a major milestone for the platform and we will be focusing on UX improvements.
Updates specific to v0.19.0
UX
- New search UX for workflows
- Support for "security context" in launch workflow form
- Support for Google Analytics
- Minor fixes:
- Removed DISABLE_AUTH env var
- Issue with launch plan metadata not showing on execution view
FlyteKit
Please find the full changelog here.
Changes
- Support for delayed annotations by @bethebunny in flyteorg/flytekit#760
Users can now addfrom __future__ import annotations
to the top of their code to stop using""
in type hints. - Add cache_serialize parameter to tasks by @hamersaw in flyteorg/flytekit#673
Turn this on to avoid two cached tasks from running at the same time. Make sure you're at least at propellerv0.16.1
or later and0.3.17
or later in datacatalog. - Use
functools.wraps
basically within thetask
andworkflow
decorators, @bstadlbauer in flyteorg/flytekit#780