Lytekit

Latest version: v0.15.28

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 52 of 73

0.16.1

https://github.com/flyteorg/flytekit/pull/430
https://github.com/flyteorg/flytekit/pull/431

0.16.0

This release is the culmination of the prior eighteen or so beta releases and a few alpha ones as well. Please refer to the release notes for those interim releases for detailed information.

Our [cookbook](https://flytecookbook.readthedocs.io/en/latest/) has detailed examples and explanations (also refer to the [platform level](https://docs.flyte.org/en/latest/) getting started guide and the guide for [making your own repo](https://docs.flyte.org/en/latest/tutorials/first_example.html).

0.16.0b17

This change updates the Pod task interface to accept [kubernetes python-client structures](https://github.com/kubernetes-client/python#kubernetes-python-client) generated from the [OpenAPI spec](https://github.com/kubernetes-client/python/blob/master/kubernetes/client/models/v1_pod_spec.py).

0.16.0b16

This is hopefully the last beta release. We'll let this sit for a week and then cut a formal release. Any bug fixes done next week will likely just go into that release unless it's urgent.

With this release...

Map Task
We've added a map task. Map tasks are similar to the `map` functionality you find in Python and apply a list over an existing task.

workflow
def my_wf(a: typing.List[int]) -> int:
x = map_task(t1, metadata=TaskMetadata(retries=1))(a=a)
return t2(x=x)

Please see the [PR](https://github.com/flyteorg/flytekit/pull/405/files) and code comments for more information. Further documentation is forthcoming.

Note that map tasks are different (more optimized) than dynamic tasks because if you map a task over a thousand elements it still remains just _one_ task. A `dynamic` task would create a thousand nodes.

Task Resolver
Shoring up the execution side of flytekit (when the Flyte backend actually runs the task container on K8s) has been a long time coming. Again please see notes in the [PR](https://github.com/flyteorg/flytekit/pull/404) and code comments for more information, but this updates the way tasks are loaded at execution time and adds flexibility.

Previously, tasks were always loaded by one call to Python's `importlib.import_module()`. Now, at serialization time, the 'task resolver', a [default](https://github.com/flyteorg/flytekit/blob/master/flytekit/core/python_auto_container.py#L228) for which is provided, constructs arguments that, at execution time, the same resolver uses to resurrect/rehydrate the task. The default resolver merely does the same thing as previous, calling `import_module` and looking up the task name.

Misc
* Fixed an issue where subworkflows called in conditionals weren't getting included to the workflow closure.
* Fixed an issue where subworkflows were running even in false conditional branches during local execution
* Added custom Protobuf Type support
* Fixed the ability to construct launch plan from a `ReferenceWorkflow`

0.16.0b15

https://github.com/flyteorg/flytekit/pull/398
https://github.com/flyteorg/flytekit/pull/394
https://github.com/flyteorg/flytekit/pull/400
https://github.com/flyteorg/flytekit/pull/401

0.16.0b14

Please see v0.16.0b13 release notes - this is just to trigger github actions.

Page 52 of 73

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.