Lytekit

Latest version: v0.15.14

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

Scan your dependencies

Page 37 of 69

0.24.0

General
We've added the following models to the top-level of the flytekit package. The classes will not move from their original locations, but importing from the top level will always be safer as we promise not to break these.

- Annotations, AuthRole, Labels
- WorkflowExecutionPhase
- Literal, LiteralType, Scalar, BlobType, Blob, BlobMetadata


Instead of `from flytekit.models.common import Labels, Annotations`, please now do
python
from flytekit import Labels, Annotations


What's Changed
* Change `dirhash` package to `checksumdir` by martinlyra in https://github.com/flyteorg/flytekit/pull/708
* Force install of the git sha of flytekit for plugins by wild-endeavor in https://github.com/flyteorg/flytekit/pull/721
* [BUG] Flytekit model file organization improvement by aeioulisa in https://github.com/flyteorg/flytekit/pull/706
* Plugin READMEs by samhita-alla in https://github.com/flyteorg/flytekit/pull/723
* Added mpi plugin by evalsocket in https://github.com/flyteorg/flytekit/pull/595
* Add support for python pickle type in flytekit/flyte by pingsutw in https://github.com/flyteorg/flytekit/pull/667
* Create default launch plan when executing WorkflowBase by pingsutw in https://github.com/flyteorg/flytekit/pull/707
* Refactor resource limit in pytorch/tensorflow plugin by evalsocket in https://github.com/flyteorg/flytekit/pull/724
* Update authoring.rst by Qiwen-Yu in https://github.com/flyteorg/flytekit/pull/726
* Add common models to flytekit __init__ by wild-endeavor in https://github.com/flyteorg/flytekit/pull/729
* Add deprecation warning and notice to flyte-cli by eapolinario in https://github.com/flyteorg/flytekit/pull/730
* Revert "[BUG] Flytekit model file organization improvement (706)" by wild-endeavor in https://github.com/flyteorg/flytekit/pull/735
* Move plugin models to be alongside plugins, remove legacy Sagemaker, Pytorch, notebook, and Tensorflow plugins by wild-endeavor in https://github.com/flyteorg/flytekit/pull/736
* fix flyte remote bugs by cosmicBboy in https://github.com/flyteorg/flytekit/pull/737
* Update Boilerplate by flyte-bot in https://github.com/flyteorg/flytekit/pull/660
* Fix dataclass transformer test by eapolinario in https://github.com/flyteorg/flytekit/pull/739
* remove pyarrow max version requirement by cosmicBboy in https://github.com/flyteorg/flytekit/pull/741
* Cookie cutter initial template by eapolinario in https://github.com/flyteorg/flytekit/pull/738
* Bump pyarrow from 3.0.0 to 6.0.0 (for M1 mac installations; duplicates 740) by TeoZosa in https://github.com/flyteorg/flytekit/pull/743

New Contributors
* martinlyra made their first contribution in https://github.com/flyteorg/flytekit/pull/708
* aeioulisa made their first contribution in https://github.com/flyteorg/flytekit/pull/706
* Qiwen-Yu made their first contribution in https://github.com/flyteorg/flytekit/pull/726
* TeoZosa made their first contribution in https://github.com/flyteorg/flytekit/pull/743

**Full Changelog**: https://github.com/flyteorg/flytekit/compare/v0.23.1...v0.24.0

0.24.0b2

Last beta release before 0.24.0 most likely

0.24.0b1

Revert "[BUG] Flytekit model file organization improvement (706)"

0.24.0b0

What's Changed
* Change `dirhash` package to `checksumdir` by martinlyra in https://github.com/flyteorg/flytekit/pull/708
* Force install of the git sha of flytekit for plugins by wild-endeavor in https://github.com/flyteorg/flytekit/pull/721
* [BUG] Flytekit model file organization improvement by aeioulisa in https://github.com/flyteorg/flytekit/pull/706
* Plugin READMEs by samhita-alla in https://github.com/flyteorg/flytekit/pull/723
* Added mpi plugin by evalsocket in https://github.com/flyteorg/flytekit/pull/595
* Add support for python pickle type in flytekit/flyte by pingsutw in https://github.com/flyteorg/flytekit/pull/667
* Create default launch plan when executing WorkflowBase by pingsutw in https://github.com/flyteorg/flytekit/pull/707

New Contributors
* martinlyra made their first contribution in https://github.com/flyteorg/flytekit/pull/708
* aeioulisa made their first contribution in https://github.com/flyteorg/flytekit/pull/706

**Full Changelog**: https://github.com/flyteorg/flytekit/compare/v0.23.1...v0.24.0b0

0.23.1

What's Changed
* Concise dynamic node ids and names by kumare3 in https://github.com/flyteorg/flytekit/pull/705
* Fix: Make sure default image can be found by bimtauer in https://github.com/flyteorg/flytekit/pull/698
* Add official support for python 3.9 by eapolinario in https://github.com/flyteorg/flytekit/pull/687
* Add debug log to surface original error by sonjaer in https://github.com/flyteorg/flytekit/pull/711
* Update CODEOWNERS by wild-endeavor in https://github.com/flyteorg/flytekit/pull/712
* Better docs on how to read flytekit code by kumare3 in https://github.com/flyteorg/flytekit/pull/714
* Bump requirements files and constrain jsonchema and pyyaml by eapolinario in https://github.com/flyteorg/flytekit/pull/713
* Move wall of text by wild-endeavor in https://github.com/flyteorg/flytekit/pull/718
* support tasks decorated with functools.wraps decorators by cosmicBboy in https://github.com/flyteorg/flytekit/pull/716

New Contributors
* bimtauer made their first contribution in https://github.com/flyteorg/flytekit/pull/698

**Full Changelog**: https://github.com/flyteorg/flytekit/compare/v0.23.0...v0.23.1

0.23

General
* Cleanup of a lot of mypy errors in the codebase itself.
* Continued changes to the FlyteRemote interface.
* `remote.sync` now operates on the object in-place.
* A `sync_nodes` argument has been added to the `remote.sync` call - by default it's True but set it to False if you want to only render inputs/outputs at the top level (rather than at every node within the execution).
* The `sync` call on `FlyteWorkflowExecution` objects was removed (it was already deprecated and a noop but if you were calling it, you'll need to remove it.)
* gRPC credentials to FlyteRemote
* Improved typing errors when scanning user code. Added better type inference to some of the transformers.

Plugin Related
* Plugin tests have been moved into each individual plugin's `test` folder.
* Snowflake task has been added
* Fixes to SQLAlchemy task secrets handling
* Modin schema transformer

Minor Fixes and Changes
* Detection of duplicate tasks when packaging
* Local caching fixes
* `Tuple` can now be used as a return type instead of an explicit tuple.
* Fixed fast registration for pod tasks.

Page 37 of 69

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.