From 340ae4f76fa72b7e6ca057d2ac5e565b3092d0b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 20:47:56 +0000 Subject: [PATCH] maint(deps): update werkzeug requirement in /examples/hello-world-flask Updates the requirements on [werkzeug](https://github.com/pallets/werkzeug) to permit the latest version. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/werkzeug/compare/2.2.2...2.3.8) --- updated-dependencies: - dependency-name: werkzeug dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/hello-world-flask/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world-flask/pyproject.toml b/examples/hello-world-flask/pyproject.toml index d3bd756..5591f5c 100644 --- a/examples/hello-world-flask/pyproject.toml +++ b/examples/hello-world-flask/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.10" flask = "2.2.5" -Werkzeug = "2.2.2" +Werkzeug = "2.3.8" honeycomb-opentelemetry = {path = "../../", develop = true} opentelemetry-api = "1.22.0" opentelemetry-instrumentation-flask = "0.43b0"