-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ Upgrade ACA-Py and ✨ add NATS reconnect logic (#1183)
* ⬆️ Upgrade to latest ACA-Py * ⬆️ Update lock files * 🐛 Nats reconnect logic (#1161) * rework nats init * 🎨 * remove broken test for now * remove while loop * reduce nats fetch timeout * 🎨 * remove import * re-add test * ⬆️ Upgrade to 1.1.1b3 ACA-Py image + plugins * ⬆️ Upgrade cloudcontroller to 1.1.1b3 release * ⬆️ Update lock files * ✨ Update to use new limit/offset params, instead of count/start * ⬆️ Update version for next release * test 1.1.1b4 * ⬆️ Upgrade protobuf version * ✨ Use stable releases of acapy agent and plugins * ⬆️ Upgrade aiohttp and update lock files * 🎨 Correct acapy-wallet-groups-plugin version tag * 🚧 test 1.1.1-20241115 * ✨ Enhance RichAsyncClient to retry on 502 errors as well * 🎨 Parameterise the retry wait duration * ⬆️ Upgrade plugins to next release --------- Co-authored-by: cl0ete <[email protected]>
- Loading branch information
Showing
19 changed files
with
612 additions
and
624 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
name = "cloudapi-app" | ||
version = "4.0.0" | ||
version = "4.1.0" | ||
description = "Main app submodule for cloudapi" | ||
authors = ["Mourits de Beer <[email protected]>"] | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
|
||
aiohttp = "~3.10.5" | ||
aries-cloudcontroller = "==1.1.1b1" | ||
aiohttp = "~3.11.0" | ||
aries-cloudcontroller = "==1.1.1b3" | ||
base58 = "~2.1.1" | ||
fastapi = "~0.115.0" | ||
httpx = "~0.27.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/didx-xyz/acapy-agent-bbs:py3.12-1.1.1b3 | ||
FROM ghcr.io/didx-xyz/acapy-agent-bbs:py3.12-1.1.1-20241115 | ||
|
||
COPY configuration ./configuration | ||
COPY scripts ./scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.