From bbc6bea971e5d08c1c505c4c832f259ac9512eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Such=C3=A1nek?= Date: Tue, 28 Jan 2025 15:20:53 +0100 Subject: [PATCH] deps: Update dependencies --- packages/dsw-command-queue/requirements.txt | 6 ++-- packages/dsw-config/requirements.txt | 2 +- packages/dsw-data-seeder/Dockerfile | 4 +-- packages/dsw-data-seeder/requirements.txt | 8 ++--- .../dsw-database/dsw/database/database.py | 2 +- packages/dsw-database/requirements.txt | 6 ++-- packages/dsw-document-worker/Dockerfile | 4 +-- .../dsw-document-worker/lambda.Dockerfile | 4 +-- packages/dsw-document-worker/requirements.txt | 22 ++++++------ packages/dsw-mailer/Dockerfile | 4 +-- packages/dsw-mailer/requirements.txt | 14 ++++---- packages/dsw-storage/requirements.txt | 4 +-- packages/dsw-tdk/requirements.txt | 4 +-- requirements.txt | 36 +++++++++---------- 14 files changed, 60 insertions(+), 60 deletions(-) diff --git a/packages/dsw-command-queue/requirements.txt b/packages/dsw-command-queue/requirements.txt index 92ef31b..9e723d4 100644 --- a/packages/dsw-command-queue/requirements.txt +++ b/packages/dsw-command-queue/requirements.txt @@ -1,7 +1,7 @@ func_timeout==4.3.5 -psycopg==3.2.3 -psycopg-binary==3.2.3 +psycopg==3.2.4 +psycopg-binary==3.2.4 PyYAML==6.0.2 tenacity==9.0.0 typing_extensions==4.12.2 -tzdata==2024.2 +tzdata==2025.1 diff --git a/packages/dsw-config/requirements.txt b/packages/dsw-config/requirements.txt index 94d9cdf..2ef7c46 100644 --- a/packages/dsw-config/requirements.txt +++ b/packages/dsw-config/requirements.txt @@ -1,4 +1,4 @@ certifi==2024.12.14 PyYAML==6.0.2 -sentry-sdk==2.19.2 +sentry-sdk==2.20.0 urllib3==2.3.0 diff --git a/packages/dsw-data-seeder/Dockerfile b/packages/dsw-data-seeder/Dockerfile index 4236f1a..abe9e5e 100644 --- a/packages/dsw-data-seeder/Dockerfile +++ b/packages/dsw-data-seeder/Dockerfile @@ -1,4 +1,4 @@ -FROM datastewardshipwizard/python-base:4.14.0-basic AS builder +FROM datastewardshipwizard/python-base:4.15.0-basic AS builder WORKDIR /app @@ -15,7 +15,7 @@ RUN python -m pip wheel --no-cache-dir --wheel-dir=/app/wheels -r /app/packages/ && python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-data-seeder -FROM datastewardshipwizard/python-base:4.14.0-basic +FROM datastewardshipwizard/python-base:4.15.0-basic ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \ WORKDIR_PATH=/home/user/data \ diff --git a/packages/dsw-data-seeder/requirements.txt b/packages/dsw-data-seeder/requirements.txt index 488fefc..60eecf4 100644 --- a/packages/dsw-data-seeder/requirements.txt +++ b/packages/dsw-data-seeder/requirements.txt @@ -4,14 +4,14 @@ certifi==2024.12.14 cffi==1.17.1 click==8.1.8 func_timeout==4.3.5 -minio==7.2.13 -psycopg==3.2.3 -psycopg-binary==3.2.3 +minio==7.2.15 +psycopg==3.2.4 +psycopg-binary==3.2.4 pycparser==2.22 pycryptodome==3.21.0 python-dateutil==2.9.0.post0 PyYAML==6.0.2 -sentry-sdk==2.19.2 +sentry-sdk==2.20.0 six==1.17.0 tenacity==9.0.0 typing_extensions==4.12.2 diff --git a/packages/dsw-database/dsw/database/database.py b/packages/dsw-database/dsw/database/database.py index 16f7844..f519811 100644 --- a/packages/dsw-database/dsw/database/database.py +++ b/packages/dsw-database/dsw/database/database.py @@ -537,7 +537,7 @@ def connect(self): self._connect_db() @property - def connection(self): + def connection(self) -> psycopg.Connection: self.connect() return self._connection diff --git a/packages/dsw-database/requirements.txt b/packages/dsw-database/requirements.txt index 48604ee..6de4aec 100644 --- a/packages/dsw-database/requirements.txt +++ b/packages/dsw-database/requirements.txt @@ -1,8 +1,8 @@ certifi==2024.12.14 -psycopg==3.2.3 -psycopg-binary==3.2.3 +psycopg==3.2.4 +psycopg-binary==3.2.4 PyYAML==6.0.2 -sentry-sdk==2.19.2 +sentry-sdk==2.20.0 tenacity==9.0.0 typing_extensions==4.12.2 urllib3==2.3.0 diff --git a/packages/dsw-document-worker/Dockerfile b/packages/dsw-document-worker/Dockerfile index a62522c..48614fa 100644 --- a/packages/dsw-document-worker/Dockerfile +++ b/packages/dsw-document-worker/Dockerfile @@ -1,4 +1,4 @@ -FROM datastewardshipwizard/python-base:4.14.0-docworker AS builder +FROM datastewardshipwizard/python-base:4.15.0-docworker AS builder ARG TARGETARCH @@ -17,7 +17,7 @@ RUN python -m pip wheel --wheel-dir=/app/wheels -r /app/packages/dsw-document-wo && python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker/addons/* \ && python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker -FROM datastewardshipwizard/python-base:4.14.0-docworker +FROM datastewardshipwizard/python-base:4.15.0-docworker ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \ WORKDIR_PATH=/tmp/docworker \ diff --git a/packages/dsw-document-worker/lambda.Dockerfile b/packages/dsw-document-worker/lambda.Dockerfile index 2f50d84..5578cef 100644 --- a/packages/dsw-document-worker/lambda.Dockerfile +++ b/packages/dsw-document-worker/lambda.Dockerfile @@ -1,4 +1,4 @@ -FROM datastewardshipwizard/python-base:4.14.0-docworker-lambda AS builder +FROM datastewardshipwizard/python-base:4.15.0-docworker-lambda AS builder COPY . /app @@ -11,7 +11,7 @@ RUN python -m pip wheel --wheel-dir=/app/wheels -r /app/packages/dsw-document-wo && python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker/addons/* \ && python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker -FROM datastewardshipwizard/python-base:4.14.0-docworker-lambda +FROM datastewardshipwizard/python-base:4.15.0-docworker-lambda ARG LAMBDA_TASK_ROOT diff --git a/packages/dsw-document-worker/requirements.txt b/packages/dsw-document-worker/requirements.txt index 816902f..0206b7f 100644 --- a/packages/dsw-document-worker/requirements.txt +++ b/packages/dsw-document-worker/requirements.txt @@ -6,32 +6,32 @@ cffi==1.17.1 charset-normalizer==3.4.1 click==8.1.8 cssselect2==0.7.0 -fonttools==4.55.3 +fonttools==4.55.7 func_timeout==4.3.5 html5lib==1.1 idna==3.10 Jinja2==3.1.5 Markdown==3.7 MarkupSafe==3.0.2 -minio==7.2.13 +minio==7.2.15 panflute==2.3.1 -pathvalidate==3.2.1 -pillow==11.0.0 +pathvalidate==3.2.3 +pillow==11.1.0 pluggy==1.5.0 -psycopg==3.2.3 -psycopg-binary==3.2.3 +psycopg==3.2.4 +psycopg-binary==3.2.4 pycparser==2.22 pycryptodome==3.21.0 pydyf==0.10.0 -pyparsing==3.2.0 -pyphen==0.17.0 +pyparsing==3.2.1 +pyphen==0.17.2 python-dateutil==2.9.0.post0 python-slugify==8.0.4 PyYAML==6.0.2 -rdflib==7.1.1 +rdflib==7.1.3 rdflib-jsonld==0.6.2 requests==2.32.3 -sentry-sdk==2.19.2 +sentry-sdk==2.20.0 six==1.17.0 tenacity==9.0.0 text-unidecode==1.3 @@ -40,5 +40,5 @@ typing_extensions==4.12.2 urllib3==2.3.0 weasyprint==60.2 webencodings==0.5.1 -XlsxWriter==3.2.0 +XlsxWriter==3.2.1 zopfli==0.2.3.post1 diff --git a/packages/dsw-mailer/Dockerfile b/packages/dsw-mailer/Dockerfile index d93ed98..340e0e3 100644 --- a/packages/dsw-mailer/Dockerfile +++ b/packages/dsw-mailer/Dockerfile @@ -1,4 +1,4 @@ -FROM datastewardshipwizard/python-base:4.14.0-basic AS builder +FROM datastewardshipwizard/python-base:4.15.0-basic AS builder WORKDIR /app @@ -10,7 +10,7 @@ RUN python -m pip wheel --no-cache-dir --wheel-dir=/app/wheels -r /app/packages/ && python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-database \ && python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-mailer -FROM datastewardshipwizard/python-base:4.14.0-basic +FROM datastewardshipwizard/python-base:4.15.0-basic ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \ WORKDIR_PATH=/home/user/templates \ diff --git a/packages/dsw-mailer/requirements.txt b/packages/dsw-mailer/requirements.txt index 0f6b072..65d6217 100644 --- a/packages/dsw-mailer/requirements.txt +++ b/packages/dsw-mailer/requirements.txt @@ -1,5 +1,5 @@ -boto3==1.35.87 -botocore==1.35.87 +boto3==1.36.7 +botocore==1.36.7 certifi==2024.12.14 click==8.1.8 dkimpy==1.1.8 @@ -9,13 +9,13 @@ Jinja2==3.1.5 jmespath==1.0.1 Markdown==3.7 MarkupSafe==3.0.2 -pathvalidate==3.2.1 -psycopg==3.2.3 -psycopg-binary==3.2.3 +pathvalidate==3.2.3 +psycopg==3.2.4 +psycopg-binary==3.2.4 python-dateutil==2.9.0.post0 PyYAML==6.0.2 -s3transfer==0.10.4 -sentry-sdk==2.19.2 +s3transfer==0.11.2 +sentry-sdk==2.20.0 six==1.17.0 tenacity==9.0.0 typing_extensions==4.12.2 diff --git a/packages/dsw-storage/requirements.txt b/packages/dsw-storage/requirements.txt index c041d32..fde1d5f 100644 --- a/packages/dsw-storage/requirements.txt +++ b/packages/dsw-storage/requirements.txt @@ -2,11 +2,11 @@ argon2-cffi==23.1.0 argon2-cffi-bindings==21.2.0 certifi==2024.12.14 cffi==1.17.1 -minio==7.2.13 +minio==7.2.15 pycparser==2.22 pycryptodome==3.21.0 PyYAML==6.0.2 -sentry-sdk==2.19.2 +sentry-sdk==2.20.0 tenacity==9.0.0 typing_extensions==4.12.2 urllib3==2.3.0 diff --git a/packages/dsw-tdk/requirements.txt b/packages/dsw-tdk/requirements.txt index f0ea88d..b46378a 100644 --- a/packages/dsw-tdk/requirements.txt +++ b/packages/dsw-tdk/requirements.txt @@ -2,7 +2,7 @@ aiohappyeyeballs==2.4.4 aiohttp==3.11.11 aiosignal==1.3.2 anyio==4.6.2.post1 -attrs==24.3.0 +attrs==25.1.0 click==8.1.8 colorama==0.4.6 frozenlist==1.5.0 @@ -17,5 +17,5 @@ python-dotenv==1.0.1 python-slugify==8.0.4 sniffio==1.3.1 text-unidecode==1.3 -watchfiles==1.0.3 +watchfiles==1.0.4 yarl==1.18.3 diff --git a/requirements.txt b/requirements.txt index 015b4e9..2a0f5ec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,9 +4,9 @@ aiosignal==1.3.2 anyio==4.6.2.post1 argon2-cffi==23.1.0 argon2-cffi-bindings==21.2.0 -attrs==24.3.0 -boto3==1.35.87 -botocore==1.35.87 +attrs==25.1.0 +boto3==1.36.7 +botocore==1.36.7 Brotli==1.1.0 certifi==2024.12.14 cffi==1.17.1 @@ -16,7 +16,7 @@ colorama==0.4.6 cssselect2==0.7.0 dkimpy==1.1.8 dnspython==2.7.0 -fonttools==4.55.3 +fonttools==4.55.7 frozenlist==1.5.0 func_timeout==4.3.5 html5lib==1.1 @@ -26,43 +26,43 @@ Jinja2==3.1.5 jmespath==1.0.1 Markdown==3.7 MarkupSafe==3.0.2 -minio==7.2.13 +minio==7.2.15 multidict==6.1.0 panflute==2.3.1 pathspec==0.12.1 -pathvalidate==3.2.1 -pillow==11.0.0 +pathvalidate==3.2.3 +pillow==11.1.0 pluggy==1.5.0 propcache==0.2.1 -psycopg==3.2.3 -psycopg-binary==3.2.3 +psycopg==3.2.4 +psycopg-binary==3.2.4 pycparser==2.22 pycryptodome==3.21.0 pydyf==0.10.0 -pyparsing==3.2.0 -pyphen==0.17.0 +pyparsing==3.2.1 +pyphen==0.17.2 python-dateutil==2.9.0.post0 python-dotenv==1.0.1 python-slugify==8.0.4 PyYAML==6.0.2 -rdflib==7.1.1 +rdflib==7.1.3 rdflib-jsonld==0.6.2 requests==2.32.3 -s3transfer==0.10.4 -sentry-sdk==2.19.2 -setuptools==75.6.0 +s3transfer==0.11.2 +sentry-sdk==2.20.0 +setuptools==75.8.0 six==1.17.0 sniffio==1.3.1 tenacity==9.0.0 text-unidecode==1.3 tinycss2==1.4.0 typing_extensions==4.12.2 -tzdata==2024.2 +tzdata==2025.1 urllib3==2.3.0 -watchfiles==1.0.3 +watchfiles==1.0.4 weasyprint==60.2 webencodings==0.5.1 wheel==0.45.1 -XlsxWriter==3.2.0 +XlsxWriter==3.2.1 yarl==1.18.3 zopfli==0.2.3.post1