Skip to content

Commit 89715d5

Browse files
authored
Merge pull request #3577 from plotly/master-3.4.0
Master 3.4.0
2 parents 68d598f + 484039a commit 89715d5

File tree

226 files changed

+7929
-7194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+7929
-7194
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: PR Issue Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, labeled, unlabeled]
6+
7+
permissions:
8+
pull-requests: write
9+
issues: read
10+
11+
jobs:
12+
check-linked-issue:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: plotly/pr-issue-checker@v1
16+
with:
17+
github-token: ${{ secrets.GITHUB_TOKEN }}
18+
exempt-labels: "no-issue-needed"
19+
request-issue-message: "Could you please link an issue to this PR? This helps us track the context and purpose of changes. If an issue doesn't exist yet, create one before linking it."
20+
thank-you-message: "Thank you for your contribution to Dash! 🎉"
21+
issue-added-message: ""

@plotly/dash-generator-test-component-typescript/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [UNRELEASED]
6+
7+
## Added
8+
9+
- [#3568]((https://github.com/plotly/dash/pull/3568) Added `children` and `copied_children` props to `dcc.Clipboard` to customize the button contents before and after copying.
10+
- [#3534]((https://github.com/plotly/dash/pull/3534) Adds `playsInline` prop to `html.Video`. Based on [#2338]((https://github.com/plotly/dash/pull/2338)
11+
- [#3541](https://github.com/plotly/dash/pull/3541) Add `attributes` dictionary to be be formatted on script/link (_js_dist/_css_dist) tags of the index, allows for `type="module"` or `type="importmap"`. [#3538](https://github.com/plotly/dash/issues/3538)
12+
- [#3542](https://github.com/plotly/dash/pull/3542) Add hidden=True to dash pages callback.
13+
- [#3564](https://github.com/plotly/dash/pull/3564) Add new parameter `hide_all_callbacks` to `run()`. Closes [#3493](https://github.com/plotly/dash/issues/3493)
14+
- [#3563](https://github.com/plotly/dash/pull/3563) Add hidden to clientside callbacks as configurable parameter
15+
16+
## Fixed
17+
- [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`.
18+
- [#3548](https://github.com/plotly/dash/pull/3548) Fix devtools overflowing it's container on version update. Fix [#3535](https://github.com/plotly/dash/issues/3535).
19+
- [#3545](https://github.com/plotly/dash/pull/3545) Replace deprecated asyncio.iscoroutinefunction() call with inspect.iscoroutinefunction()
20+
21+
# Changed
22+
- [#3540](https://github.com/plotly/dash/pull/3540) Expose more types for better static typing options.
23+
- [#3520](https://github.com/plotly/dash/pull/3520). Set `pointer-events` to `auto` on `Tooltip` to make it possible to interact with tooltip content when `targetable=True`
24+
525
## [3.3.0] - 2025-11-12
626

727
## Added
@@ -21,6 +41,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
2141
- [#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)
2242
- [#3416](https://github.com/plotly/dash/issues/3416) Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module
2343
- [#3488](https://github.com/plotly/dash/pull/3488) Fix pkgutil.find_loader removal in Python 3.14
44+
- [#3496](https://github.com/plotly/dash/pull/3496) Fix dcc.Graph infinite resize loop
2445

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

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)