Skip to content

Commit 7bf3fdf

Browse files
authored
Merge pull request #3039 from plotly/undeprecate-plugins
Undeprecate plugins
2 parents 0ba3b56 + 9001706 commit 7bf3fdf

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1212
- [#3025](https://github.com/plotly/dash/pull/3025) Fix no output callback with error handler setting the response to NoUpdate and triggering an error.
1313
- [#3034](https://github.com/plotly/dash/pull/3034) Remove whitespace from `metadata.json` files to reduce package size.
1414
- [#3009](https://github.com/plotly/dash/pull/3009) Performance improvement on (pattern-matching) callbacks.
15+
- [3028](https://github.com/plotly/dash/pull/3028) Fix jupyterlab v4 support.
1516

1617
## [2.18.1] - 2024-09-12
1718

dash/dash.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -564,12 +564,6 @@ def __init__( # pylint: disable=too-many-statements
564564
if plugins is not None and isinstance(
565565
plugins, patch_collections_abc("Iterable")
566566
):
567-
warnings.warn(
568-
DeprecationWarning(
569-
"The `plugins` keyword will be removed from Dash init in Dash 3.0 "
570-
"and replaced by a new hook system."
571-
)
572-
)
573567
for plugin in plugins:
574568
plugin.plug(self)
575569

0 commit comments

Comments
 (0)