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

build: fix CVEs

parent 04c87269
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
# This file is automatically @generated by Poetry 2.1.4 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"
@@ -494,18 +494,18 @@ files = [

[[package]]
name = "idna"
version = "3.11"
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.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea"},
    {file = "idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902"},
    {file = "idna-3.17-py3-none-any.whl", hash = "sha256:466e48829084efe2548012b855df21540b96f2e20e51bd124c851536556a592c"},
    {file = "idna-3.17.tar.gz", hash = "sha256:5eb0cb53bc467c12eadcf6de83163ad8527cec9416f44b9b61b19caedad2b87f"},
]

[package.extras]
all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
all = ["mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]

[[package]]
name = "isodate"
@@ -844,14 +844,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]
@@ -882,4 +882,4 @@ standard = ["colorama (>=0.4) ; sys_platform == \"win32\"", "httptools (>=0.6.3)
[metadata]
lock-version = "2.1"
python-versions = "^3.12"
content-hash = "ba6d7b34dda90fd2fa0eb6279993e5cea9a4a464834cecb9e02f63001919ff14"
content-hash = "63136897a1f3548803cd7398314e08bcb618acb2742eb8a0c982d46c346330e0"
+9 −1
Original line number Diff line number Diff line
@@ -10,7 +10,15 @@ authors = []
license = "LGPL"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["azure-identity (>=1.25.3,<2.0.0)", "uvicorn (>=0.42.0,<1.0.0)", "fastapi (>=0.135.3,<1.0.0)", "cryptography (>=48.0.0,<48.1.0)", "azure-mgmt-containerservice (>=41.0.0,<42.0.0)"]
dependencies = [
    "idna (>=3.15,<4.0)",
    "urllib3 (>=2.7.0,<3.0.0)", 
    "azure-identity (>=1.25.3,<2.0.0)", 
    "uvicorn (>=0.42.0,<1.0.0)", 
    "fastapi (>=0.135.3,<1.0.0)", 
    "cryptography (>=48.0.0,<48.1.0)", 
    "azure-mgmt-containerservice (>=41.0.0,<42.0.0)",
]

[tool.poetry.dependencies]
python = "^3.12"