Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).


## [UNRELEASED]
## [3.1.0] - 2025-06-27

## Fixed
- [#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)
Expand All @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- [#3108](https://github.com/plotly/dash/pull/3108) Fix layout as list for pages.
- [#1906](https://github.com/plotly/dash/pull/1906) Make graph height more responsive.
- [#2927](https://github.com/plotly/dash/pull/2927) Fix unexpected behaviour of the cursor in dcc.Input
- [#3344](https://github.com/plotly/dash/pull/3344) Fix dcc.Loading target_components with * prop.

## Added
- [#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.
Expand All @@ -26,6 +27,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- [#3304](https://github.com/plotly/dash/pull/3304) Speed up function _operation by 80%
- [#3323](https://github.com/plotly/dash/pull/3323) Make Dash instances WSGI compliant, can now call gunicorn on the dash app itself.

## Updated

- [#3333](https://github.com/plotly/dash/pull/3333) Update flask max version to <3.2

## [3.0.4] - 2025-04-24

## Fixed
Expand Down
2,177 changes: 1,127 additions & 1,050 deletions components/dash-core-components/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions components/dash-core-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "3.0.6",
"version": "3.1.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,12 +63,12 @@
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-loader": "^9.2.1",
Expand All @@ -86,7 +86,7 @@
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"styled-jsx": "^3.4.4",
"webpack": "^5.99.6",
"webpack": "^5.99.9",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
Expand Down
Loading
Loading