Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Platform Engineering Bot <[email protected]>
  • Loading branch information
platform-engineering-bot committed May 6, 2024
1 parent f1b1a03 commit 63bbb92
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG package=arcaflow_plugin_elasticsearch
# STAGE 1 -- Build module dependencies and run tests
# The 'poetry' and 'coverage' modules are installed and verson-controlled in the
# quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase image to limit drift
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.3.1@sha256:9767207e2de6597c4d6bd2345d137ac03661326734d4e6824840d270d3415e12 as build
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.4.0@sha256:26f5d506f0750e0cad636afbe7ddd8cade09937eb5abae784096e46a1d4ae030 as build
ARG package

COPY poetry.lock /app/
Expand All @@ -26,7 +26,7 @@ RUN python -m coverage run tests/unit/test_${package}.py \


# STAGE 2 -- Build final plugin image
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.3.1@sha256:0e9384416ad5dd8810c410a87c283ca29a368fc85592378b85261fce5f9ecbeb
FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.4.0@sha256:6674b5d2aa5de565b1d39a9c1694ad7ca15b57d06f33529bc3a6f4d6e76b100e
ARG package

COPY --from=build /app/requirements.txt /app/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.2@sha256:81b3bbd42d4d5e238e7ee31b7e99acab0bac1fca4eb2fa88415bad5482e52b88
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.3@sha256:55cf51620ffd4a27b661ad9d091dc06446f7aeaf4045744d4e7ef6480d390596
container_name: elasticsearch
environment:
- discovery.type=single-node
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
elasticsearch-integration:
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.2@sha256:81b3bbd42d4d5e238e7ee31b7e99acab0bac1fca4eb2fa88415bad5482e52b88
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.3@sha256:55cf51620ffd4a27b661ad9d091dc06446f7aeaf4045744d4e7ef6480d390596
container_name: elasticsearch.integration
environment:
- discovery.type=single-node
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.9"
arcaflow-plugin-sdk = "0.13.0"
arcaflow-plugin-sdk = "0.14.0"
elasticsearch = "^8.4.3"

[tool.poetry.dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
arcaflow-plugin-sdk==0.13.0; python_version >= "3.9"
arcaflow-plugin-sdk==0.14.0; python_version >= "3.9"
attrs==23.2.0; python_full_version >= "3.7.1" and python_version >= "3.9"
automat==22.10.0; python_full_version >= "3.7.1" and python_version >= "3.9"
cbor2==5.6.3; python_version >= "3.9"
certifi==2024.2.2; python_version >= "3.6" and python_version < "4"
constantly==23.10.4; python_full_version >= "3.7.1" and python_version >= "3.9"
elastic-transport==8.12.0; python_version >= "3.6" and python_version < "4"
elasticsearch==8.12.1; python_version >= "3.6" and python_version < "4"
elastic-transport==8.13.0; python_version >= "3.6" and python_version < "4"
elasticsearch==8.13.1; python_version >= "3.6" and python_version < "4"
hyperlink==21.0.0; python_full_version >= "3.7.1" and python_version >= "3.9"
idna==3.6; python_full_version >= "3.7.1" and python_version >= "3.9"
idna==3.7; python_full_version >= "3.7.1" and python_version >= "3.9"
incremental==22.10.0; python_full_version >= "3.7.1" and python_version >= "3.9"
pyyaml==6.0.1; python_version >= "3.9"
six==1.16.0; python_full_version >= "3.7.1" and python_version >= "3.9"
twisted-iocpsupport==1.0.4; python_full_version >= "3.7.1" and python_version >= "3.9" and platform_system == "Windows"
twisted==24.3.0; python_full_version >= "3.7.1" and python_version >= "3.9"
typing-extensions==4.10.0; python_full_version >= "3.7.1" and python_version >= "3.9"
typing-extensions==4.11.0; python_full_version >= "3.7.1" and python_version >= "3.9"
urllib3==2.2.1; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.6"
zope.interface==6.2; python_full_version >= "3.7.1" and python_version >= "3.9"
zope.interface==6.3; python_full_version >= "3.7.1" and python_version >= "3.9"

0 comments on commit 63bbb92

Please sign in to comment.