Skip to content

Commit

Permalink
🔖 Release 4.3.0 (#1334)
Browse files Browse the repository at this point in the history
* 🔖 Release 4.3.0

* 🧪 Add short sleep to allow alice's records to update (make test more consistent)
  • Loading branch information
ff137 authored Feb 17, 2025
1 parent b9dc4be commit b07db08
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acapy-cloud-app"
version = "4.2.0"
version = "4.3.0"
description = "Main app submodule for acapy-cloud"
authors = [
"Mourits de Beer <[email protected]>",
Expand Down
3 changes: 3 additions & 0 deletions app/tests/e2e/test_connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ async def test_delete_connection(
await bob_member_client.get(f"{CONNECTIONS_BASE_PATH}/{bob_connection_id}")
assert exc.value.status_code == 404

# Short sleep to allow alice's records to update
await asyncio.sleep(0.5)

# Check that the connection is deleted for alice as well
with pytest.raises(HTTPException) as exc:
await alice_member_client.get(f"{CONNECTIONS_BASE_PATH}/{alice_connection_id}")
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi/tenant-admin-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "CloudAPI Multitenant Admin",
"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",
"version": "4.2.0"
"version": "4.3.0"
},
"paths": {
"/v1/tenants": {
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi/tenant-admin-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
https://www.didx.co.za/acapy-cloud/index.html
'
version: 4.2.0
version: 4.3.0
paths:
/v1/tenants:
post:
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi/tenant-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "CloudAPI Tenant",
"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",
"version": "4.2.0"
"version": "4.3.0"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi/tenant-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
https://www.didx.co.za/acapy-cloud/index.html
'
version: 4.2.0
version: 4.3.0
servers:
- url: /tenant
paths:
Expand Down
2 changes: 1 addition & 1 deletion endorser/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acapy-cloud-endorser"
version = "4.2.0"
version = "4.3.0"
description = "Endorser submodule for acapy-cloud"
authors = [
"Mourits de Beer <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion shared/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# pylint: disable=invalid-name

PROJECT_VERSION = os.getenv("PROJECT_VERSION", "4.2.0")
PROJECT_VERSION = os.getenv("PROJECT_VERSION", "4.3.0")

# the ACAPY_LABEL field with which the governance agent is initialised
GOVERNANCE_LABEL = os.getenv("GOVERNANCE_ACAPY_LABEL", "Governance")
Expand Down
2 changes: 1 addition & 1 deletion trustregistry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acapy-cloud-trust-registry"
version = "4.2.0"
version = "4.3.0"
description = "Trust Registry submodule for acapy-cloud"
authors = [
"Mourits de Beer <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion waypoint/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acapy-cloud-waypoint"
version = "4.2.0"
version = "4.3.0"
description = "Webhook state signalling service for acapy-cloud"
authors = [
"Mourits de Beer <[email protected]>",
Expand Down

0 comments on commit b07db08

Please sign in to comment.