Skip to content

Commit 7a040ba

Browse files
authored
Grouped upgrades - Week 7, 2025 (openwallet-foundation#3508)
Signed-off-by: jamshale <[email protected]>
1 parent bb8abb4 commit 7a040ba

File tree

8 files changed

+247
-120
lines changed

8 files changed

+247
-120
lines changed

demo/docker-agent/Dockerfile.acapy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
1+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
22

33
USER root
44

demo/multi-demo/Dockerfile.acapy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
1+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
22

33
USER root
44

demo/playground/Dockerfile.acapy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
1+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
22

33
USER root
44

demo/playground/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ These configuration files are provided to the ACA-Py start command via the `AGEN
2626

2727
### Dockerfile and start.sh
2828

29-
[`Dockerfile.acapy`](./Dockerfile.acapy) assembles the image to run. Currently based on [ACA-Py 1.2.0](ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1), we need [jq](https://stedolan.github.io/jq/) to setup (or not) the ngrok tunnel and execute the Aca-py start command - see [`start.sh`](./start.sh). You may note that the start command is very sparse, additional configuration is done via environment variables in the [docker compose file](./docker-compose.yml).
29+
[`Dockerfile.acapy`](./Dockerfile.acapy) assembles the image to run. Currently based on [ACA-Py 1.2.0](ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2), we need [jq](https://stedolan.github.io/jq/) to setup (or not) the ngrok tunnel and execute the Aca-py start command - see [`start.sh`](./start.sh). You may note that the start command is very sparse, additional configuration is done via environment variables in the [docker compose file](./docker-compose.yml).
3030

3131
### ngrok
3232

docker/Dockerfile.demo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG from_image=ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
1+
ARG from_image=ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
22
FROM ${from_image}
33

44
ENV ENABLE_PTVSD 0

docs/features/DIDResolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ plugin:
176176
The following is a fully functional Dockerfile encapsulating this setup:
177177
178178
```dockerfile=
179-
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
179+
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
180180
RUN pip3 install git+https://github.com/dbluhm/acapy-resolver-github
181181

182182
CMD ["aca-py", "start", "-it", "http", "0.0.0.0", "3000", "-ot", "http", "-e", "http://localhost:3000", "--admin", "0.0.0.0", "3001", "--admin-insecure-mode", "--no-ledger", "--plugin", "acapy_resolver_github"]

poetry.lock

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

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repository = "https://github.com/openwallet-foundation/acapy"
1616

1717
[tool.poetry.dependencies]
1818
python = "^3.12"
19-
aiohttp = "~3.11.11"
19+
aiohttp = "~3.11.12"
2020
aiohttp-apispec-acapy = "~3.0.3"
2121
aiohttp-cors = "~0.7.0"
2222
apispec = "^6.6.0"
@@ -27,7 +27,7 @@ ecdsa = "~0.19.0"
2727
jsonpath-ng = "^1.7.0"
2828
Markdown = "~3.7"
2929
markupsafe = "^3.0.2"
30-
marshmallow = "~3.26.0"
30+
marshmallow = "~3.26.1"
3131
nest_asyncio = "~1.6.0"
3232
packaging = "^24.2"
3333
portalocker = "^3.1.1"
@@ -41,7 +41,7 @@ python-json-logger = "^3.2.1"
4141
pyyaml = "~6.0.2"
4242
qrcode = { version = "^8.0", extras = ["pil"] }
4343
requests = "~2.32.3"
44-
rlp = "^4.0.1"
44+
rlp = "^4.1.0"
4545
unflatten = "~0.2"
4646
sd-jwt = "^0.10.3"
4747
uuid_utils = "^0.10.0"
@@ -70,7 +70,7 @@ canonicaljson = "^2.0.0"
7070

7171
[tool.poetry.group.dev.dependencies]
7272
# Sync with version in .pre-commit-config.yaml and .github/workflows/format.yml
73-
ruff = "~0.9.3"
73+
ruff = "~0.9.6"
7474

7575
pre-commit = "~4.1.0"
7676

0 commit comments

Comments
 (0)