Skip to content

Commit 3541ee4

Browse files
authored
Merge pull request #3172 from plotly/dash-3.0.0rc2
Dash version 3.0.0rc2
2 parents acd2a2a + e1f1a5e commit 3541ee4

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

CHANGELOG.md

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

5-
## [3.0.0-rc2] - UNRELEASED
5+
## [3.0.0-rc2] - 2025-02-18
66

77
## Added
88

99
- [#3152](https://github.com/plotly/dash/pull/3152) Custom Python prop typing for component library.
1010
- Added `-t`, `--custom-typing-module` argument to `dash-generate-components` CLI, default to `dash_prop_typing` and can contains definitions in variables:
1111
- `custom_imports: dict[ComponentName, list[str]]` import statement to be copied at the top of the component class definition.
1212
- `custom_props: dict[ComponentName, dict[PropName, function]]` for custom props. The function signature is: `def generate_type(type_info, component_name, prop_name) -> str`
13+
- [#3170](https://github.com/plotly/dash/pull/3170) Add `window.dash_component_api.ExternalWrapper` to render Dash components that are not part of the layout tree.
1314

1415
## Fixed
1516

1617
- [#3142](https://github.com/plotly/dash/pull/3142) Fix typing generation for id and dates props.
18+
- [#3164](https://github.com/plotly/dash/pull/3164) Fix typing on progress and cancel background callback.
19+
- [#3157](https://github.com/plotly/dash/pull/3157) Fix hook priority.
1720

1821
## [3.0.0-rc1] - 2025-01-28
1922

components/dash-core-components/package-lock.json

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

components/dash-core-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

dash/_dash_renderer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.0.1"
44

55
_available_react_versions = {"18.3.1", "18.2.0", "16.14.0"}
66
_available_reactdom_versions = {"18.3.1", "18.2.0", "16.14.0"}
@@ -64,7 +64,7 @@ def _set_react_version(v_react, v_reactdom=None):
6464
{
6565
"relative_package_path": "dash-renderer/build/dash_renderer.min.js",
6666
"dev_package_path": "dash-renderer/build/dash_renderer.dev.js",
67-
"external_url": "https://unpkg.com/[email protected].0"
67+
"external_url": "https://unpkg.com/[email protected].1"
6868
"/build/dash_renderer.min.js",
6969
"namespace": "dash",
7070
},

dash/dash-renderer/package-lock.json

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

dash/dash-renderer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "render dash components in react",
55
"main": "build/dash_renderer.min.js",
66
"scripts": {
@@ -13,7 +13,7 @@
1313
"build:dev": "webpack",
1414
"build:local": "renderer build local",
1515
"build": "renderer build && npm run prepublishOnly",
16-
"postbuild": "es-check es2015 ../deps/*.js build/*.js",
16+
"postbuild": "es-check es2018 ../deps/*.js build/*.js",
1717
"test": "karma start karma.conf.js --single-run",
1818
"format": "run-s private::format.*",
1919
"lint": "run-s private::lint.* --continue-on-error"
@@ -88,6 +88,6 @@
8888
],
8989
"prettier": "@plotly/prettier-config-dash",
9090
"browserslist": [
91-
"last 9 years and not dead"
91+
"last 10 years and not dead"
9292
]
9393
}

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.0rc1"
1+
__version__ = "3.0.0rc2"

0 commit comments

Comments
 (0)