From 0e004d43c149998dc471974596dc6bb300265263 Mon Sep 17 00:00:00 2001 From: philippe Date: Tue, 15 Oct 2024 14:27:47 -0400 Subject: [PATCH 1/2] Remove deprecation on plugins --- dash/dash.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dash/dash.py b/dash/dash.py index 0c08abe64c..29fc7e4d63 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -564,12 +564,6 @@ def __init__( # pylint: disable=too-many-statements if plugins is not None and isinstance( plugins, patch_collections_abc("Iterable") ): - warnings.warn( - DeprecationWarning( - "The `plugins` keyword will be removed from Dash init in Dash 3.0 " - "and replaced by a new hook system." - ) - ) for plugin in plugins: plugin.plug(self) From 90017065e409fc3d0d4c91a89edd0c52aed595ff Mon Sep 17 00:00:00 2001 From: philippe Date: Wed, 16 Oct 2024 09:16:19 -0400 Subject: [PATCH 2/2] add missing changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6971b056b9..cf2acf11d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - [#3025](https://github.com/plotly/dash/pull/3025) Fix no output callback with error handler setting the response to NoUpdate and triggering an error. - [#3034](https://github.com/plotly/dash/pull/3034) Remove whitespace from `metadata.json` files to reduce package size. - [#3009](https://github.com/plotly/dash/pull/3009) Performance improvement on (pattern-matching) callbacks. +- [3028](https://github.com/plotly/dash/pull/3028) Fix jupyterlab v4 support. ## [2.18.1] - 2024-09-12