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 0.11.0 upgrade #929

Merged
merged 3 commits into from
Dec 1, 2023
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
2 changes: 1 addition & 1 deletion plugins/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"context": "..",
"args": {
"VARIANT": "3.9-bullseye",
"POETRY_VERSION": "1.4.2"
"POETRY_VERSION": "1.6.1"
}
},
"customizations": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/basicmessage_storage/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
# Install and configure poetry
USER root

ENV POETRY_VERSION=1.4.2
ENV POETRY_VERSION=1.6.1
ENV POETRY_HOME=/opt/poetry
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN curl -sSL https://install.python-poetry.org | python -
Expand Down
954 changes: 459 additions & 495 deletions plugins/basicmessage_storage/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/basicmessage_storage/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Jason Sherman <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.10.3" }
aries-cloudagent = { version = "0.11.0" }

[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
Expand Down
2 changes: 1 addition & 1 deletion plugins/connection_update/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
# Install and configure poetry
USER root

ENV POETRY_VERSION=1.4.2
ENV POETRY_VERSION=1.6.1
ENV POETRY_HOME=/opt/poetry
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN curl -sSL https://install.python-poetry.org | python -
Expand Down
954 changes: 459 additions & 495 deletions plugins/connection_update/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/connection_update/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = [{include = "connection_update"}]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.10.3" }
aries-cloudagent = { version = "0.11.0" }

[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
Expand Down
6 changes: 3 additions & 3 deletions plugins/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.3 as base
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.11.0 as base

# Install and Configure Poetry
USER root
ENV POETRY_VERSION=1.4.2
ENV POETRY_VERSION=1.6.1
ENV POETRY_HOME=/opt/poetry
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN curl -sSL https://install.python-poetry.org | python -
Expand All @@ -27,7 +27,7 @@ RUN poetry install --no-dev
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages


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

Expand Down
2 changes: 1 addition & 1 deletion plugins/multitenant_provider/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
# Install and configure poetry
USER root

ENV POETRY_VERSION=1.4.2
ENV POETRY_VERSION=1.6.1
ENV POETRY_HOME=/opt/poetry
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN curl -sSL https://install.python-poetry.org | python -
Expand Down
988 changes: 474 additions & 514 deletions plugins/multitenant_provider/poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions plugins/multitenant_provider/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ packages = [{include = "multitenant_provider"}]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.10.3" }
aries-cloudagent = { version = "0.11.0" }
python-dateutil = "^2.8.2"
bcrypt = "^4.0.1"
mergedeep = "^1.3.4"
aries-askar = "^0.2.9"
typing-extensions = "4.5.0"
indy-vdr = "^0.3.4"
indy-credx = "^1.0.0"
aries-askar = "^0.3.0"
typing-extensions = "4.8.0"
indy-vdr = "^0.4.0"
indy-credx = "^1.1.1"

[tool.poetry.dev-dependencies]
black = "^22.6.0"
Expand Down
4 changes: 2 additions & 2 deletions plugins/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.10.3" }
aries-cloudagent = { version = "0.11.0" }
python-dateutil = "^2.8.2"
typing-extensions = "4.5.0"
typing-extensions = "4.8.0"
basicmessage_storage = {path = "./basicmessage_storage", develop = true}
connection_update = {path = "./connection_update", develop = true}
multitenant-provider = {path = "./multitenant_provider", develop = true}
Expand Down
2 changes: 1 addition & 1 deletion plugins/traction_innkeeper/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
# Install and configure poetry
USER root

ENV POETRY_VERSION=1.4.2
ENV POETRY_VERSION=1.6.1
ENV POETRY_HOME=/opt/poetry
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN curl -sSL https://install.python-poetry.org | python -
Expand Down
Loading
Loading