From 460bf99bbfe342db86dc0e889718225cf1e2d13e Mon Sep 17 00:00:00 2001 From: Patrick Hoefler <61934744+phofl@users.noreply.github.com> Date: Fri, 9 Feb 2024 16:48:39 +0100 Subject: [PATCH] Add changelog entry for dask-expr --- docs/source/changelog.rst | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index b99d0ec80c5..4cccc6f0612 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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