From f32a7e9c34919563510e64e3028b7b980a842d0a Mon Sep 17 00:00:00 2001 From: philippe Date: Fri, 28 Apr 2023 14:14:36 -0400 Subject: [PATCH 1/2] Lock flask version --- requires-install.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/requires-install.txt b/requires-install.txt index edcb71441b..e16b6739a4 100644 --- a/requires-install.txt +++ b/requires-install.txt @@ -1,4 +1,7 @@ -Flask>=1.0.4 +Flask==2.2.2;python_version>="3.7" +Werkzeug==2.2.2;python_version>="3.7" +Flask==2.0.3;python_version<"3.7" +Werkzeug==2.0.3;python_version<"3.7" plotly>=5.0.0 dash_html_components==2.0.0 dash_core_components==2.0.0 From 2ef3e312058b9822d69ab7c8ea6315445b8e3c15 Mon Sep 17 00:00:00 2001 From: philippe Date: Fri, 28 Apr 2023 14:55:21 -0400 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac8ca9c53..4e019062be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning](https://semver.org/). - [#2508](https://github.com/plotly/dash/pull/2508) Fix error message, when callback output has different length than spec - [#2207](https://github.com/plotly/dash/pull/2207) Fix object of components support. +## Changed + +- [#2516](https://github.com/plotly/dash/pull/2516) Lock Flask/Werkzeug version to 2.2.2 for Python>=3.7 and 2.0.3 for Python < 3.7. + ## [2.9.3] - 2023-04-13 ## Fixed