Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ACA-Py 1.0.1 update #1398

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions plugins/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0 AS base
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1 AS base

# Install and Configure Poetry
USER root
Expand All @@ -24,16 +24,16 @@ RUN poetry install --only main
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages


FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1
COPY --from=base --chown=aries:aries /home/aries/.venv /home/aries/.venv
ENV PATH="/home/aries/.venv/bin:$PATH"

COPY --chown=aries:aries docker/default.yml ./
COPY --chown=aries:aries traction_innkeeper/traction_innkeeper traction_plugins/traction_innkeeper
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.0#subdirectory=basicmessage_storage
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.0#subdirectory=connection_update
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.0#subdirectory=multitenant_provider
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.0#subdirectory=rpc
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.1#subdirectory=basicmessage_storage
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.1#subdirectory=connection_update
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.1#subdirectory=multitenant_provider
RUN pip install git+https://github.com/hyperledger/aries-acapy-plugins@1.0.1#subdirectory=rpc


ENTRYPOINT ["/bin/bash", "-c", "aca-py \"$@\"", "--"]
Expand Down
4 changes: 2 additions & 2 deletions plugins/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
aries-cloudagent = { version = "1.0.0" }
aries-cloudagent = { version = "1.0.1" }
python-dateutil = "^2.8.2"
typing-extensions = "4.8.0"
traction-innkeeper = {path = "./traction_innkeeper", develop = true}
Expand All @@ -22,7 +22,7 @@ ursa-bbs-signatures = { version = "~1.0.1" }
python3-indy = { version = "^1.11.1" }

[tool.poetry.dev-dependencies]
ruff = "^0.5.7"
ruff = "^0.6.9"

[build-system]
requires = ["setuptools", "poetry-core>=1.2"]
Expand Down
1,266 changes: 697 additions & 569 deletions plugins/traction_innkeeper/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions plugins/traction_innkeeper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ packages = [{include = "traction_innkeeper"}]

[tool.poetry.dependencies]
python = "^3.12"
aries-cloudagent = { version = "1.0.0" }
aries-cloudagent = { version = "1.0.1" }
python-dateutil = "^2.8.2"
bcrypt = "^4.2.0"
mergedeep = "^1.3.4"
typing-extensions = "4.8.0"
anoncreds = "^0.2.0"
multitenant-provider = {git = "https://github.com/hyperledger/aries-acapy-plugins", rev = "1.0.0", subdirectory = "multitenant_provider"}
multitenant-provider = {git = "https://github.com/hyperledger/aries-acapy-plugins", rev = "1.0.1", subdirectory = "multitenant_provider"}

[tool.poetry.dev-dependencies]
black = "^24.8.0"
black = "^24.10.0"
flake8 = "^7.1.1"

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ services:
- host.docker.internal:host-gateway

endorser-agent:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1
depends_on:
endorser-db:
condition: service_healthy
Expand Down Expand Up @@ -205,7 +205,7 @@ services:
- host.docker.internal:host-gateway

endorser-agent-1:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1
depends_on:
endorser-db:
condition: service_healthy
Expand Down
Loading
Loading