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

Add changelog entry for dask-expr #10915

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
Changelog
=========

.. _v2024.2.0:

2024.2.0
--------

Released on February 9, 2024

Deprecations
^^^^^^^^^^^^

Current Dask DataFrame implementation
"""""""""""""""""""""""""""""""""""""

The current Dask DataFrame implementation is deprecated and will be replaced with
a new implementation that utilizes logical query planning and many other features
in a future version. The user-facing API of the new implementation is compatible with the
current API. The new implementation is currently available as an
experimental feature and can be activated through:

.. code:: python

dask.config.set({"dataframe.query-planning": True})

You also need to have ``dask-expr`` installed:

.. code:: bash

pip install dask-expr

The API-Docs can be found at https://docs.dask.org/en/stable/dask-expr-api.html

.. _v2024.1.1:

2024.1.1
Expand Down