Skip to content

Commit

Permalink
Grouped upgrades - Week 7, 2025 (openwallet-foundation#3508)
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <[email protected]>
  • Loading branch information
jamshale authored Feb 10, 2025
1 parent bb8abb4 commit 7a040ba
Show file tree
Hide file tree
Showing 8 changed files with 247 additions and 120 deletions.
2 changes: 1 addition & 1 deletion demo/docker-agent/Dockerfile.acapy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2

USER root

Expand Down
2 changes: 1 addition & 1 deletion demo/multi-demo/Dockerfile.acapy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2

USER root

Expand Down
2 changes: 1 addition & 1 deletion demo/playground/Dockerfile.acapy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2

USER root

Expand Down
2 changes: 1 addition & 1 deletion demo/playground/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ These configuration files are provided to the ACA-Py start command via the `AGEN

### Dockerfile and start.sh

[`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).
[`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).

### ngrok

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.demo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG from_image=ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
ARG from_image=ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
FROM ${from_image}

ENV ENABLE_PTVSD 0
Expand Down
2 changes: 1 addition & 1 deletion docs/features/DIDResolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ plugin:
The following is a fully functional Dockerfile encapsulating this setup:
```dockerfile=
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.1
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.2.2
RUN pip3 install git+https://github.com/dbluhm/acapy-resolver-github

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"]
Expand Down
347 changes: 237 additions & 110 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repository = "https://github.com/openwallet-foundation/acapy"

[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "~3.11.11"
aiohttp = "~3.11.12"
aiohttp-apispec-acapy = "~3.0.3"
aiohttp-cors = "~0.7.0"
apispec = "^6.6.0"
Expand All @@ -27,7 +27,7 @@ ecdsa = "~0.19.0"
jsonpath-ng = "^1.7.0"
Markdown = "~3.7"
markupsafe = "^3.0.2"
marshmallow = "~3.26.0"
marshmallow = "~3.26.1"
nest_asyncio = "~1.6.0"
packaging = "^24.2"
portalocker = "^3.1.1"
Expand All @@ -41,7 +41,7 @@ python-json-logger = "^3.2.1"
pyyaml = "~6.0.2"
qrcode = { version = "^8.0", extras = ["pil"] }
requests = "~2.32.3"
rlp = "^4.0.1"
rlp = "^4.1.0"
unflatten = "~0.2"
sd-jwt = "^0.10.3"
uuid_utils = "^0.10.0"
Expand Down Expand Up @@ -70,7 +70,7 @@ canonicaljson = "^2.0.0"

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

pre-commit = "~4.1.0"

Expand Down

0 comments on commit 7a040ba

Please sign in to comment.