Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- [#3415](https://github.com/plotly/dash/pull/3415) Fix the error triggered when only a single no_update is returned for client-side callback functions with multiple Outputs. Fix [#3366](https://github.com/plotly/dash/issues/3366)
- [#3416](https://github.com/plotly/dash/issues/3416) Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module

## Deprecated
- [#3482](https://github.com/plotly/dash/pull/3482) Deprecate dash_table.DataTable with replacement from `dash[ag-grid]` extra requirement.

## [3.2.0] - 2025-07-31

## Added
Expand Down
10 changes: 9 additions & 1 deletion dash/development/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@
eg: html.A(href=os.getenv('DASH_LOGOUT_URL'))
"""
)
}
},
"dash_table": {
"DataTable": textwrap.dedent(
"""
The dash_table.DataTable will be removed from the builtin dash components in Dash 4.0
Copy link
Member

Choose a reason for hiding this comment

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

This should be Dash 5.0 now?

Copy link
Collaborator

Choose a reason for hiding this comment

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

I hope so - not much of a notice period if Dash 4 is released soon.

Copy link
Member

Choose a reason for hiding this comment

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

Yes, it should be Dash 5.0.

We recommend using dash-ag-grid as a replacement. Install with `pip install dash[ag-grid]`.
"""
)
},
}


Expand Down
1 change: 1 addition & 0 deletions requirements/ag-grid.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dash-ag-grid
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def read_req_file(req_type):
"diskcache": read_req_file("diskcache"),
"compress": read_req_file("compress"),
"cloud": read_req_file("cloud"),
"ag-grid": read_req_file("ag-grid")
},
entry_points={
"console_scripts": [
Expand Down
Loading