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

feat: Release kedro-datasets version 1.3.0 #219

Merged
merged 5 commits into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
18 changes: 14 additions & 4 deletions kedro-datasets/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Upcoming Release:

## Major features and improvements:
## Major features and improvements

## Bug fixes and other changes

## Community contributions

# Release 1.3.0:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Release 1.3.0:
# Release 1.3.0

?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be consistent with the rest of the file, it looks like Release x.x.x should have a colon, no other titles / subtitles should. Now that you mention it, Release 1.2.0 is missing a colon too :).


## Major features and improvements
* Added pandas 2.0 support.
* Added SQLAlchemy 2.0 support (and dropped support for versions below 1.4).
* Added a save method to the APIDataSet
* Reduced constructor arguments for `APIDataSet` by replacing most arguments with a single constructor argument `load_args`. This makes it more consistent with other Kedro DataSets and the underlying `requests` API, and automatically enables the full configuration domain: stream, certificates, proxies, and more.
* Relaxed Kedro version pin to `>=0.16`
* Added `metadata` attribute to all existing datasets. This is ignored by Kedro, but may be consumed by users or external plugins.
* Added `ManagedTableDataSet` for managed delta tables on Databricks.

## Bug fixes and other changes
* Relaxed `delta-spark` upper bound to allow compatibility with Spark 3.1.x and 3.2.x.
jmholzer marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -17,10 +26,11 @@ Many thanks to the following Kedroids for contributing PRs to this release:

* [BrianCechmanek](https://github.com/BrianCechmanek)
* [McDonnellJoseph](https://github.com/McDonnellJoseph)
* [Danny Farah](https://github.com/dannyrfar)

# Release 1.2.0:
# Release 1.2.0

## Major features and improvements:
## Major features and improvements
* Added `fsspec` resolution in `SparkDataSet` to support more filesystems.
* Added the `_preview` method to the Pandas `ExcelDataSet` and `CSVDataSet` classes.

Expand All @@ -35,7 +45,7 @@ Many thanks to the following Kedroids for contributing PRs to this release:

# Release 1.1.0:

## Major features and improvements:
## Major features and improvements

* Added the following new datasets:

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,3 +1,3 @@
"""``kedro_datasets`` is where you can find all of Kedro's data connectors."""

__version__ = "1.2.0"
__version__ = "1.3.0"
Loading