Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(datasets): Release 1.8.0 #406

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion kedro-datasets/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Upcoming Release
## Major features and improvements
## Bug fixes and other changes
## Community contributions

# Release 1.8.0
## Major features and improvements
* Moved `PartitionedDataSet` and `IncrementalDataSet` from the core Kedro repo to `kedro-datasets` and renamed to `PartitionedDataset` and `IncrementalDataset`.
* Added `polars.LazyPolarsDataset`, a `GenericDataSet` using [polars](https://www.pola.rs/)'s Lazy API.
* Renamed `polars.GenericDataSet` to `polars.EagerPolarsDataset` to better reflect the difference between the two dataset classes.
Expand All @@ -10,12 +15,12 @@
* Fix erroneous warning when using an cloud protocol file path with SparkDataSet on Databricks.
* Updated `PickleDataset` to explicitly mention `cloudpickle` support.

## Upcoming deprecations for Kedro-Datasets 2.0.0
## Community contributions
Many thanks to the following Kedroids for contributing PRs to this release:
* [PtrBld](https://github.com/PtrBld)
* [Alistair McKelvie](https://github.com/alamastor)
* [Felix Wittmann](https://github.com/hfwittmann)
* [Matthias Roels](https://github.com/MatthiasRoels)

# Release 1.7.1
## Bug fixes and other changes
Expand Down
2 changes: 1 addition & 1 deletion kedro-datasets/kedro_datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""``kedro_datasets`` is where you can find all of Kedro's data connectors."""

__all__ = ["KedroDeprecationWarning"]
__version__ = "1.7.1"
__version__ = "1.8.0"

import sys
import warnings
Expand Down
1 change: 0 additions & 1 deletion kedro-datasets/tests/polars/test_lazy_polars_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ def test_versioning_existing_dataset(

class TestBadLazyPolarsDataset:
def test_bad_file_format_argument(self):

pattern = (
"'kedro' is not an accepted format "
f"({ACCEPTED_FILE_FORMATS}) ensure that your 'file_format' parameter "
Expand Down