Skip to content

Commit fdbd6e0

Browse files
authored
Merge pull request #3433 from plotly/v4-rc0
V4 rc0
2 parents 12683b4 + 408c9f3 commit fdbd6e0

File tree

10 files changed

+17
-131
lines changed

10 files changed

+17
-131
lines changed

CHANGELOG.md

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

5+
## [4.0.0rc0] - 2025-09-11
6+
- [#3398](https://github.com/plotly/dash/pull/3398) Modernize dcc.Input
7+
- [#3414](https://github.com/plotly/dash/pull/3414) Modernize dcc.Slider
8+
59
## [UNRELEASED]
610

711
## Added

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

Lines changed: 2 additions & 118 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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "3.2.0",
3+
"version": "4.0.0rc0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",
@@ -53,7 +53,6 @@
5353
"node-polyfill-webpack-plugin": "^2.0.1",
5454
"prop-types": "^15.8.1",
5555
"ramda": "^0.30.1",
56-
"rc-slider": "^9.7.5",
5756
"react-addons-shallow-compare": "^15.6.3",
5857
"react-dates": "^21.8.0",
5958
"react-docgen": "^5.4.3",

components/dash-html-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-html-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-html-components",
3-
"version": "3.0.4",
3+
"version": "4.0.0rc0",
44
"description": "Vanilla HTML components for Dash",
55
"main": "lib/index.js",
66
"repository": {

components/dash-table/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-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "6.0.4",
3+
"version": "7.0.0rc0",
44
"description": "Dash table",
55
"repository": {
66
"type": "git",

dash/dash-renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "2.2.0",
3+
"version": "3.0.0rc0",
44
"description": "render dash components in react",
55
"main": "build/dash_renderer.min.js",
66
"scripts": {

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.2.0"
1+
__version__ = "4.0.0rc0"

tests/async_tests/test_async_callbacks.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,8 @@ async def update_input(value):
102102

103103
assert call_count.value == 1, "called once at initial stage"
104104

105-
pad_input, pad_div = dash_duo.dash_innerhtml_dom.select_one(
106-
"#output > div"
107-
).contents
105+
pad_input = dash_duo.dash_innerhtml_dom.select_one("#output input")
106+
pad_div = dash_duo.dash_innerhtml_dom.select_one("#output #sub-output-1")
108107

109108
assert (
110109
pad_input.attrs["value"] == "sub input initial value"

0 commit comments

Comments
 (0)