Skip to content

Commit 95334db

Browse files
committed
Fix version of werkzeug
Fixes #1979
1 parent dc97ad2 commit 95334db

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### Fixed
11+
12+
- Fix version of `werkzeug`
13+
([#1980](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1980))
14+
1015
## Version 1.20.0/0.41b0 (2023-09-01)
1116

1217
### Fixed

Diff for: instrumentation/opentelemetry-instrumentation-flask/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ dependencies = [
3636
[project.optional-dependencies]
3737
instruments = [
3838
"flask >= 1.0, < 3.0",
39+
"werkzeug < 3.0.0"
3940
]
4041
test = [
4142
"opentelemetry-instrumentation-flask[instruments]",

Diff for: opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap_gen.py

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@
8484
"library": "flask >= 1.0, < 3.0",
8585
"instrumentation": "opentelemetry-instrumentation-flask==0.42b0.dev",
8686
},
87+
"werkzeug": {
88+
"library": "werkzeug < 3.0.0",
89+
"instrumentation": "opentelemetry-instrumentation-flask==0.42b0.dev",
90+
},
8791
"grpcio": {
8892
"library": "grpcio ~= 1.27",
8993
"instrumentation": "opentelemetry-instrumentation-grpc==0.42b0.dev",

0 commit comments

Comments
 (0)