Commit e63f0969 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

build: fix CVEs

parent f8160452
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
# This file is automatically @generated by Poetry 2.3.2 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.4.1 and should not be changed by hand.

[[package]]
name = "annotated-doc"
@@ -151,14 +151,14 @@ files = [

[[package]]
name = "idna"
version = "3.13"
version = "3.17"
description = "Internationalized Domain Names in Applications (IDNA)"
optional = false
python-versions = ">=3.8"
python-versions = ">=3.9"
groups = ["main"]
files = [
    {file = "idna-3.13-py3-none-any.whl", hash = "sha256:892ea0cde124a99ce773decba204c5552b69c3c67ffd5f232eb7696135bc8bb3"},
    {file = "idna-3.13.tar.gz", hash = "sha256:585ea8fe5d69b9181ec1afba340451fba6ba764af97026f92a91d4eef164a242"},
    {file = "idna-3.17-py3-none-any.whl", hash = "sha256:466e48829084efe2548012b855df21540b96f2e20e51bd124c851536556a592c"},
    {file = "idna-3.17.tar.gz", hash = "sha256:5eb0cb53bc467c12eadcf6de83163ad8527cec9416f44b9b61b19caedad2b87f"},
]

[package.extras]
@@ -547,14 +547,14 @@ typing-extensions = ">=4.12.0"

[[package]]
name = "urllib3"
version = "2.6.3"
version = "2.7.0"
description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false
python-versions = ">=3.9"
python-versions = ">=3.10"
groups = ["main"]
files = [
    {file = "urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4"},
    {file = "urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed"},
    {file = "urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897"},
    {file = "urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c"},
]

[package.extras]
@@ -585,4 +585,4 @@ standard = ["colorama (>=0.4) ; sys_platform == \"win32\"", "httptools (>=0.6.3)
[metadata]
lock-version = "2.1"
python-versions = ">=3.12"
content-hash = "f53ebc437315cdd1dfae604554eddb466930cea2db17356846721fb8f75e5ebd"
content-hash = "2d7ea31844bd9c5bc7c58ed474d63b42cd50460f329e87f6960f12f88aea1036"
+11 −1
Original line number Diff line number Diff line
@@ -9,7 +9,17 @@ description = ""
authors = [ ]
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["fastapi (>=0.116.0,<1.0.0)", "starlette (>=1.0.0,<1.1.0)", "uvicorn (>=0.36.0,<1.0.0)", "boto3 (>=1.40.35,<2.0.0)", "urllib3 (>=2.6.3,<3.0.0)", "h11 (>=0.16.0,<1.0.0)", "idna (>=3.10,<4.0)", "pydantic-core (>=2.39.0,<3.0.0)", "pyyaml (>=6.0,<7.0)"]
dependencies = [
    "fastapi (>=0.116.0,<1.0.0)", 
    "starlette (>=1.0.0,<1.1.0)", 
    "uvicorn (>=0.36.0,<1.0.0)", 
    "boto3 (>=1.40.35,<2.0.0)", 
    "urllib3 (>=2.7.0,<3.0.0)", 
    "h11 (>=0.16.0,<1.0.0)", 
    "idna (>=3.15,<4.0)", 
    "pydantic-core (>=2.39.0,<3.0.0)", 
    "pyyaml (>=6.0,<7.0)",
]

[project.scripts]
aws-auth-provider = "aws_auth_provider:run"