Skip to content

Commit

Permalink
Added patch to limit Werkzeug version under 3
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Oct 2, 2023
1 parent f8055b6 commit 4e7e3af
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.7.3](https://github.com/airbus-cyber/iris-httpsend-module/compare/0.7.2...0.7.3)
### Bug Fixes
* patch to update users' groups from ldap does not fail when login a user with no groups declared in ldap
* added patch to limit Werkzeug version under 3


## [0.7.2](https://github.com/airbus-cyber/iris-httpsend-module/compare/0.7.1...0.7.2)
Expand Down
13 changes: 13 additions & 0 deletions patches/werkzeug_version.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/source/requirements.txt b/source/requirements.txt
index 780582d7..669c34ca 100644
--- a/source/requirements.txt
+++ b/source/requirements.txt
@@ -19,7 +19,7 @@ SQLAlchemy==1.4.31
SQLAlchemy-ImageAttach==1.1.0
SQLAlchemy-Utils==0.38.2
urllib3==1.26.5
-Werkzeug>=2.2.3
+Werkzeug>=2.2.3,<3.0.0
WTForms==2.2.1
flask-socketio==5.1.1
eventlet==0.30.2

0 comments on commit 4e7e3af

Please sign in to comment.