Skip to content

Commit 7c11689

Browse files
committed
Merge branch 'v4' into feature/dcc-refactor-datepicker
2 parents ab88a95 + 7991ee6 commit 7c11689

9 files changed

Lines changed: 4171 additions & 10615 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
4040
- [#3398](https://github.com/plotly/dash/pull/3398) Modernize dcc.Input
4141
- [#3414](https://github.com/plotly/dash/pull/3414) Modernize dcc.Slider
4242

43-
## [UNRELEASED]
43+
## [3.3.0] - 2025-11-12
4444

4545
## Added
4646
- [#3395](https://github.com/plotly/dash/pull/3396) Add position argument to hooks.devtool
@@ -54,10 +54,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).
5454
- [#3465](https://github.com/plotly/dash/pull/3465) Plotly cloud integrations, add devtool API, placeholder plotly cloud CLI & publish button, `dash[cloud]` extra dependencies.
5555

5656
## Fixed
57+
- [#3490](https://github.com/plotly/dash/pull/3490) Fix stack overflow when circular callbacks are displayed on the devtool callback
5758
- [#3395](https://github.com/plotly/dash/pull/3395) Fix Components added through set_props() cannot trigger related callback functions. Fix [#3316](https://github.com/plotly/dash/issues/3316)
5859
- [#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)
5960
- [#3416](https://github.com/plotly/dash/issues/3416) Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module
6061
- [#3488](https://github.com/plotly/dash/pull/3488) Fix pkgutil.find_loader removal in Python 3.14
62+
- [#3496](https://github.com/plotly/dash/pull/3496) Fix dcc.Graph infinite resize loop
63+
64+
## Deprecated
65+
- [#3482](https://github.com/plotly/dash/pull/3482) Deprecate dash_table.DataTable with replacement from `dash[ag-grid]` extra requirement.
6166

6267
## [3.2.0] - 2025-07-31
6368

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ Open a Bash terminal in the `dash` repository, Git Bash terminal for example on
8080

8181
On some Linux/Mac environments, use `.` instead of `source`
8282
```bash
83-
$ python3 -m venv .venv/dev
84-
$ source .venv/dev/bin/activate
83+
$ python3 -m venv venv
84+
$ source venv/bin/activate
8585
```
8686
- Windows:
8787
```bash
88-
$ python -m venv .venv/dev
89-
$ source .venv/dev/scripts/activate
88+
$ python -m venv venv
89+
$ source venv/scripts/activate
9090
```
9191

9292
Install dash and dependencies:

0 commit comments

Comments
 (0)