Skip to content

v0.7.0 - Support for Kedro 0.19 (but not Pydantic v2)

Compare
Choose a tag to compare
@NowanIlfideme NowanIlfideme released this 22 Mar 14:57
· 18 commits to main since this release
7e6de55

Many internal changes for kedro~=0.19 and kedro-datasets, but from the user side there are only minor changes (see docs too):

  1. The *DataSet classes have been renamed to *Dataset, though the old names
    are still available as aliases.
  2. The kedro-datasets package is now a necessary dependency.
  3. Thanks to changes in Kedro's datasets, most have switched to requiring
    keyword-only arguments, especially filename. So instead of using a map such
    as {DataFrame: ParquetDataset} you should use a function or a lambda, e.g.
    {DataFrame: lambda x: ParquetDataSet(filename=x)}.

What's Changed

Full Changelog: v0.6.2...v0.7.0