Skip to content

Commit 5fd9a14

Browse files
authored
Merge pull request #2506 from plotly/version-2.9.3
Version 2.9.3
2 parents 151e05e + 1a1a3f3 commit 5fd9a14

File tree

8 files changed

+18
-25
lines changed

8 files changed

+18
-25
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+
## [2.9.3] - 2023-04-13
66

77
## Fixed
88

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

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

components/dash-html-components/scripts/data/attributes.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@
331331
"hrefLang": {
332332
"elements": [
333333
"a",
334-
"area",
335334
"link"
336335
],
337336
"description": "Specifies the language of the linked resource."
@@ -850,7 +849,6 @@
850849
"coords",
851850
"download",
852851
"href",
853-
"hrefLang",
854852
"media",
855853
"referrerPolicy",
856854
"rel",

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.2"
1+
__version__ = "2.9.3"

tests/integration/clientside/test_clientside_restarts.py

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@ def create_app():
1212

1313
app = Dash(__name__)
1414

15-
app.layout = html.Div([
16-
html.Button("Click", id="click"),
17-
html.Div(id="output"),
18-
html.Div(reloads, id="reload")
19-
])
15+
app.layout = html.Div(
16+
[
17+
html.Button("Click", id="click"),
18+
html.Div(id="output"),
19+
html.Div(reloads, id="reload"),
20+
]
21+
)
2022

2123
app.clientside_callback(
2224
"(n_clicks) => `clicked ${n_clicks}`",
2325
Output("output", "children"),
2426
Input("click", "n_clicks"),
25-
prevent_initial_call=True
27+
prevent_initial_call=True,
2628
)
2729
reloads += 1
2830
return app
@@ -35,20 +37,13 @@ def create_app():
3537
dev_tools_hot_reload_max_retry=100,
3638
)
3739

38-
dash_duo_mp.start_server(
39-
create_app(),
40-
**hot_reload_settings
41-
)
40+
dash_duo_mp.start_server(create_app(), **hot_reload_settings)
4241
dash_duo_mp.find_element("#click").click()
4342
dash_duo_mp.wait_for_text_to_equal("#output", "clicked 1")
4443

4544
dash_duo_mp.server.stop()
4645

47-
dash_duo_mp.start_server(
48-
create_app(),
49-
navigate=False,
50-
**hot_reload_settings
51-
)
46+
dash_duo_mp.start_server(create_app(), navigate=False, **hot_reload_settings)
5247
dash_duo_mp.wait_for_text_to_equal("#reload", "1")
5348
dash_duo_mp.find_element("#click").click()
5449
# reloaded so 1 again.

0 commit comments

Comments
 (0)