Skip to content

Commit 35ee19b

Browse files
authored
🔖 5.0.0-rc4 (#1582)
* ⬆️ Use tagged acapy release * ⬆️ Use tagged release of forked nats-py * ⬆️ Use tagged release of cloudcontroller * ⬆️ Upgrade plugins * 🔖 5.0.0-rc4 * ⬆️ Bump aiohttp to 3.12 * 🚧 Trigger rebuild
1 parent b3a954b commit 35ee19b

File tree

8 files changed

+299
-293
lines changed

8 files changed

+299
-293
lines changed

dockerfiles/agents/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
FROM ghcr.io/didx-xyz/acapy-agent:py3.12-lock-function@sha256:01014156aba2ac05427cc42756946f4373d1e17b40cdcdefd4907173fba41cd0
1+
FROM ghcr.io/didx-xyz/acapy-agent:py3.12-1.3.0-20250526@sha256:6d02573554820d3114ea3a74a863386cd9f536583bc77188623d3d10fab38d8a
22

33
USER root
44

55
# Install Google Protobuf and Plugins
66
ARG PROTOBUF_VERSION=5.29.3
7+
RUN echo "Installing Plugins"
78
RUN pip install --no-cache-dir protobuf==${PROTOBUF_VERSION} \
8-
acapy-wallet-groups-plugin==1.3.0.post20250506 \
9-
git+https://github.com/didx-xyz/aries-acapy-plugins@5814bf13#subdirectory=nats_events \
10-
git+https://github.com/didx-xyz/aries-acapy-plugins@5814bf13#subdirectory=cheqd
9+
acapy-wallet-groups-plugin==1.3.0.post20250526 \
10+
git+https://github.com/didx-xyz/aries-acapy-plugins@1.3.0-20250526#subdirectory=nats_events \
11+
git+https://github.com/didx-xyz/aries-acapy-plugins@1.3.0-20250526#subdirectory=cheqd
1112

1213
COPY scripts/startup.sh startup.sh
1314
RUN chmod +x ./startup.sh

docs/openapi/tenant-admin-openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "CloudAPI Multitenant Admin",
55
"description": "\nWelcome to CloudAPI Multitenant Admin!\n\nFor detailed guidance on using the API, please visit our official documentation:\nhttps://www.didx.co.za/acapy-cloud/index.html\n",
6-
"version": "5.0.0-rc2"
6+
"version": "5.0.0-rc4"
77
},
88
"servers": [
99
{

docs/openapi/tenant-admin-openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ info:
1111
https://www.didx.co.za/acapy-cloud/index.html
1212
1313
'
14-
version: 5.0.0-rc2
14+
version: 5.0.0-rc4
1515
servers:
1616
- url: /tenant-admin
1717
paths:

docs/openapi/tenant-openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "CloudAPI Tenant",
55
"description": "\nWelcome to CloudAPI Tenant!\n\nFor detailed guidance on using the API, please visit our official documentation:\nhttps://www.didx.co.za/acapy-cloud/index.html\n",
6-
"version": "5.0.0-rc2"
6+
"version": "5.0.0-rc4"
77
},
88
"servers": [
99
{

docs/openapi/tenant-openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ info:
1111
https://www.didx.co.za/acapy-cloud/index.html
1212
1313
'
14-
version: 5.0.0-rc2
14+
version: 5.0.0-rc4
1515
servers:
1616
- url: /tenant
1717
paths:

poetry.lock

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

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "acapy-cloud"
3-
version = "5.0.0-rc2"
3+
version = "5.0.0-rc4"
44
description = "Main project configuration for acapy-cloud"
55
authors = [
66
{ name = "Mourits de Beer", email = "mourits.debeer@didx.co.za" },
@@ -25,17 +25,17 @@ uvicorn = "~0.34.2"
2525
uvloop = "^0.21.0"
2626

2727
[tool.poetry.group.app.dependencies]
28-
aiohttp = "~3.11.7"
28+
aiohttp = "~3.12.0"
2929
aiocache = "~0.12.0"
30-
aries-cloudcontroller = { git = "https://github.com/didx-xyz/aries-cloudcontroller-python.git", branch = "remove-validators" }
30+
aries-cloudcontroller = "==1.3.0.post20250526"
3131
base58 = "~2.1.1"
3232
pyjwt = "~2.10.0"
3333
uuid_utils = "^0.10.0"
3434

3535
[tool.poetry.group.endorser.dependencies]
36-
aries-cloudcontroller = { git = "https://github.com/didx-xyz/aries-cloudcontroller-python.git", branch = "remove-validators" }
36+
aries-cloudcontroller = "==1.3.0.post20250526"
3737
dependency-injector = "^4.46.0"
38-
nats-py = { git = "https://github.com/ff137/nats.py", branch = "feat-661-uuid", extras = ["nkeys", "orjson", "uuid_utils"] }
38+
nats-py = { git = "https://github.com/ff137/nats.py", tag = "v2.10.0-w-orjson", extras = ["nkeys", "orjson", "uuid_utils"] }
3939
tenacity = "^9.1.0"
4040

4141
[tool.poetry.group.trust-registry.dependencies]
@@ -44,9 +44,9 @@ psycopg2-binary = "~2.9.6"
4444
sqlalchemy = "~2.0.40"
4545

4646
[tool.poetry.group.waypoint.dependencies]
47-
aiohttp = "~3.11.7"
47+
aiohttp = "~3.12.0"
4848
dependency-injector = "^4.46.0"
49-
nats-py = { git = "https://github.com/ff137/nats.py", branch = "feat-661-uuid", extras = ["nkeys", "orjson", "uuid_utils"] }
49+
nats-py = { git = "https://github.com/ff137/nats.py", tag = "v2.10.0-w-orjson", extras = ["nkeys", "orjson", "uuid_utils"] }
5050
sse-starlette = "~2.3.3"
5151
tenacity = "^9.1.0"
5252
uuid_utils = "^0.10.0"

shared/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# pylint: disable=invalid-name
88

9-
PROJECT_VERSION = os.getenv("PROJECT_VERSION", "5.0.0-rc2")
9+
PROJECT_VERSION = os.getenv("PROJECT_VERSION", "5.0.0-rc4")
1010

1111
# the ACAPY_LABEL field with which the governance agent is initialised
1212
GOVERNANCE_LABEL = os.getenv("GOVERNANCE_ACAPY_LABEL", "Governance")

0 commit comments

Comments
 (0)