Skip to content

Commit 31807a1

Browse files
authored
Merge pull request #3447 from plotly/release/v4.0.0rc1
v4.0.0rc1
2 parents 8cd1946 + 574d550 commit 31807a1

File tree

10 files changed

+15
-12
lines changed

10 files changed

+15
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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]
5+
## [4.0.0rc1] - 2025-09-22
66

77
## Added
88
- [#3440](https://github.com/plotly/dash/pull/3440) Modernize dcc.Dropdown

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": "4.0.0-rc0",
3+
"version": "4.0.0-rc1",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

components/dash-core-components/tests/integration/misc/test_persistence.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import json
3+
from time import sleep
34
from selenium.webdriver.common.keys import Keys
45

56
from dash import Dash, Input, Output, dcc, html
@@ -133,12 +134,14 @@ def make_output(*args):
133134
dash_dcc.find_element("#dropdownsingle .dash-dropdown-search").send_keys(
134135
"one" + Keys.ENTER
135136
)
137+
sleep(0.2)
136138
dash_dcc.find_element("#dropdownsingle .dash-dropdown-option").click()
137139

138140
dash_dcc.find_element("#dropdownmulti").click()
139141
dash_dcc.find_element("#dropdownmulti .dash-dropdown-search").send_keys(
140142
"six" + Keys.ENTER
141143
)
144+
sleep(0.2)
142145
dash_dcc.find_element("#dropdownmulti .dash-dropdown-option").click()
143146

144147
dash_dcc.find_element("#input").send_keys(" maybe")

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": "4.0.0-rc0",
3+
"version": "4.0.0-rc1",
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": "7.0.0-rc0",
3+
"version": "7.0.0-rc1",
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": "3.0.0-rc0",
3+
"version": "3.0.0-rc1",
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__ = "4.0.0rc0"
1+
__version__ = "4.0.0rc1"

0 commit comments

Comments
 (0)