Skip to content

Commit 89a1ca5

Browse files
committed
version 3.1.0
1 parent df3810c commit 89a1ca5

File tree

11 files changed

+21
-16
lines changed

11 files changed

+21
-16
lines changed

CHANGELOG.md

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

55

6-
## [UNRELEASED]
6+
## [3.1.0] - 2025-06-27
77

88
## Fixed
99
- [#3341](https://github.com/plotly/dash/pull/3341) Fixed query string parsing regression introduced in 2.18.2 where values containing unencoded `&` characters were being truncated. [#3106](https://github.com/plotly/dash/issues/3106)
@@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1414
- [#3108](https://github.com/plotly/dash/pull/3108) Fix layout as list for pages.
1515
- [#1906](https://github.com/plotly/dash/pull/1906) Make graph height more responsive.
1616
- [#2927](https://github.com/plotly/dash/pull/2927) Fix unexpected behaviour of the cursor in dcc.Input
17+
- [#3344](https://github.com/plotly/dash/pull/3344) Fix dcc.Loading target_components with * prop.
1718

1819
## Added
1920
- [#3294](https://github.com/plotly/dash/pull/3294) Added the ability to pass `allow_optional` to Input and State to allow callbacks to work even if these components are not in the dash layout.
@@ -26,6 +27,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
2627
- [#3304](https://github.com/plotly/dash/pull/3304) Speed up function _operation by 80%
2728
- [#3323](https://github.com/plotly/dash/pull/3323) Make Dash instances WSGI compliant, can now call gunicorn on the dash app itself.
2829

30+
## Updated
31+
32+
- [#3333](https://github.com/plotly/dash/pull/3333) Update flask max version to <3.2
33+
2934
## [3.0.4] - 2025-04-24
3035

3136
## Fixed

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.6",
3+
"version": "3.1.0",
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": "3.0.2",
3+
"version": "3.0.3",
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.2",
3+
"version": "6.0.3",
44
"description": "Dash table",
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.8"
3+
__version__ = "2.1.0"
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/dash-renderer@2.0.8"
67+
"external_url": "https://unpkg.com/dash-renderer@2.1.0"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "2.0.8",
3+
"version": "2.1.0",
44
"description": "render dash components in react",
55
"main": "build/dash_renderer.min.js",
66
"scripts": {

0 commit comments

Comments
 (0)