Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit 67539f6

Browse files
maint(deps): update otel to 1.22 and 0.43b0 (#168)
## Which problem is this PR solving? - update otel dependencies - Closes #167 ## Short description of the changes - update opentelemetry-api from "1.20.0" to "1.22.0" - update opentelemetry-sdk from "1.20.0" to "1.22.0" - update opentelemetry-exporter-otlp from "1.20.0" to "1.22.0" - update opentelemetry-instrumentation from "0.41b0" to "0.43b0" - update example deps to match, and also opentelemetry-instrumentation-flask = "^0.43b0" - update test for new required field "name" for ReadableSpan - add specific version of Werkzeug to match flask in example app (see [Stack Overflow question here](https://stackoverflow.com/questions/77213053/why-did-flask-start-failing-with-importerror-cannot-import-name-url-quote-fr) tldr; flask specifies >2.2 which now brings in Werkzeug 3)
1 parent ae5e8d3 commit 67539f6

File tree

6 files changed

+107
-48
lines changed

6 files changed

+107
-48
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
**/.git
2+
**/.gitignore
3+
**/.vscode
4+
**/coverage
5+
**/.env
6+
**/.aws
7+
**/.ssh
8+
Dockerfile
9+
README.md
10+
docker-compose.yml
11+
**/.DS_Store
12+
**/venv
13+
**/env

examples/hello-world-flask/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.10"
10-
flask = "^2.2.2"
10+
flask = "2.2.2"
11+
Werkzeug = "2.2.2"
1112
honeycomb-opentelemetry = {path = "../../", develop = true}
12-
opentelemetry-api = "^1.19.0"
13-
opentelemetry-instrumentation-flask = "^0.41b0"
13+
opentelemetry-api = "1.22.0"
14+
opentelemetry-instrumentation-flask = "0.43b0"
1415

1516
[build-system]
1617
requires = ["poetry-core"]

examples/hello-world/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88
[tool.poetry.dependencies]
99
python = "^3.10"
1010
honeycomb-opentelemetry = {path = "../../", develop = true}
11-
opentelemetry-api = "^1.19.0"
11+
opentelemetry-api = "1.22.0"
1212

1313
[build-system]
1414
requires = ["poetry-core"]

0 commit comments

Comments
 (0)