Skip to content

Commit 7991ee6

Browse files
committed
Merge branch 'dev' into v4
2 parents 7261852 + acfc8e4 commit 7991ee6

10 files changed

Lines changed: 5111 additions & 11302 deletions

File tree

CHANGELOG.md

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

42-
## [UNRELEASED]
42+
## [3.3.0] - 2025-11-12
4343

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

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

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

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)