Skip to content

Commit b3fcf11

Browse files
authored
Merge pull request #1540 from bcgov/chore/acapy124
ACA-Py 1.2.4 update and release bump
2 parents 4a3b218 + f1dbe9b commit b3fcf11

File tree

14 files changed

+466
-424
lines changed

14 files changed

+466
-424
lines changed

charts/traction/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: traction
33
description: The Traction service allows organizations to verify, hold, and issue verifiable credentials. The Traction Tenant UI allows tenants to manage their agent.
44
type: application
5-
version: 0.3.6
6-
appVersion: 1.1.1
5+
version: 0.3.7
6+
appVersion: 1.1.2
77
home: "https://github.com/bcgov/traction"
88
sources: ["https://github.com/bcgov/traction"]
99
icon: "https://github.com/bcgov/traction/raw/main/docs/assets/readme-logo.png"

charts/traction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Traction
22

3-
![version: 0.3.6](https://img.shields.io/badge/Version-0.3.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square)
3+
![version: 0.3.7](https://img.shields.io/badge/Version-0.3.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.2](https://img.shields.io/badge/AppVersion-1.1.2-informational?style=flat-square)
44

55
The Traction service allows organizations to verify, hold, and issue verifiable credentials.
66

plugins/docker/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.3 AS base
1+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.4 AS base
22

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

2626

27-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.3
27+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.4
2828
COPY --from=base --chown=aries:aries /home/aries/.venv /home/aries/.venv
2929
ENV PATH="/home/aries/.venv/bin:$PATH"
3030

3131
COPY --chown=aries:aries docker/default.yml ./
3232
COPY --chown=aries:aries traction_innkeeper/traction_innkeeper traction_plugins/traction_innkeeper
33-
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.3#subdirectory=basicmessage_storage
34-
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.3#subdirectory=connection_update
35-
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.3#subdirectory=multitenant_provider
36-
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.3#subdirectory=rpc
33+
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.4#subdirectory=basicmessage_storage
34+
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.4#subdirectory=connection_update
35+
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.4#subdirectory=multitenant_provider
36+
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.2.4#subdirectory=rpc
3737

3838

3939
ENTRYPOINT ["/bin/bash", "-c", "aca-py \"$@\"", "--"]

plugins/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99

1010
[tool.poetry.dependencies]
1111
python = "^3.12"
12-
acapy-agent = { version = "1.2.3" }
12+
acapy-agent = { version = "1.2.4" }
1313
python-dateutil = "^2.9.0"
1414
typing-extensions = "4.12.2"
1515
traction-innkeeper = {path = "./traction_innkeeper", develop = true}

plugins/traction_innkeeper/poetry.lock

Lines changed: 211 additions & 211 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/traction_innkeeper/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ packages = [{include = "traction_innkeeper"}]
99

1010
[tool.poetry.dependencies]
1111
python = "^3.12"
12-
acapy-agent = { version = "1.2.3" }
12+
acapy-agent = { version = "1.2.4" }
1313
python-dateutil = "^2.9.0"
1414
bcrypt = "^4.2.1"
1515
mergedeep = "^1.3.4"
1616
typing-extensions = "4.12.2"
1717
anoncreds = "^0.2.0"
18-
multitenant-provider = {git = "https://github.com/openwallet-foundation/acapy-plugins", rev = "1.2.3", subdirectory = "multitenant_provider"}
18+
multitenant-provider = {git = "https://github.com/openwallet-foundation/acapy-plugins", rev = "1.2.4", subdirectory = "multitenant_provider"}
1919

2020
[tool.poetry.dev-dependencies]
2121
black = "^25.1.0"

scripts/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ services:
164164
- host.docker.internal:host-gateway
165165

166166
endorser-agent:
167-
image: ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.3
167+
image: ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.4
168168
depends_on:
169169
endorser-db:
170170
condition: service_healthy
@@ -202,7 +202,7 @@ services:
202202
- host.docker.internal:host-gateway
203203

204204
endorser-agent-1:
205-
image: ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.3
205+
image: ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.4
206206
depends_on:
207207
endorser-db:
208208
condition: service_healthy

0 commit comments

Comments
 (0)