Skip to content

Commit 3469f65

Browse files
authored
Merge pull request #3827 from swcurran/0.12.7rc2
0.12.7rc2
2 parents 73553a6 + adfded5 commit 3469f65

7 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Aries Cloud Agent Python Changelog
22

3-
## 0.12.7rc1
3+
## 0.12.7rc2
44

5-
### July 14, 2025
5+
### July 16, 2025
66

77
This patch release adds a GitHub Action to publish an LTS container image with the tag `0.12-lts` when a release is published from the ACA-Py 0.12.lts branch. This is a convenience for those who want to use the latest LTS version of ACA-Py in their deployments, and is not intended to be used as a replacement for the latest release of ACA-Py or when a specific release is required.
88

@@ -12,7 +12,7 @@ The release includes the following PRs from the `main` branch cherry-picked into
1212
- fix: multiuse invite derived conns should have msg id [\#3692](https://github.com/openwallet-foundation/acapy/pull/3692)
1313
- Fix unchanged endpoint being rewritten to ledger [\#3608](https://github.com/openwallet-foundation/acapy/pull/3608)
1414

15-
As well, a dependency update was applied, updating the `poetry.lock` file to use the latest minor versions of the dependencies.
15+
As well, a dependency update was applied, updating the `poetry.lock` file to use the latest minor versions of the dependencies, including an update to the version of Rust being used in the indy-build container artifact.
1616

1717
A reminder that the **0.12 LTS branch will reach end-of-life in October, 2025**. Anyone still using this branch should plan to upgrade to the 1.2 LTS or (better) latest release of ACA-Py as soon as possible.
1818

@@ -23,11 +23,13 @@ There are no breaking changes in this release.
2323
#### 0.12.7 Categorized List of Pull Requests
2424

2525
- LTS Container image Publishing
26+
- Upgrade rust version for indy-build to 1.56 [\#3826](https://github.com/openwallet-foundation/acapy/pull/3826) [jamshale](https://github.com/jamshale)
2627
- 0.12.lts.patch [\#3817](https://github.com/openwallet-foundation/acapy/pull/3817) [jamshale](https://github.com/jamshale)
2728
- Don't run workflow for release candidates [\#3796](https://github.com/openwallet-foundation/acapy/pull/3796) [jamshale](https://github.com/jamshale)
2829
- Add recreate lts workflow to 0.12.lts branch [\#3771](https://github.com/openwallet-foundation/acapy/pull/3771) [jamshale](https://github.com/jamshale)
2930

3031
- Release management pull requests:
32+
- 0.12.7rc2 [\#3827](https://github.com/openwallet-foundation/acapy/pull/3827) [swcurran](https://github.com/swcurran)
3133
- 0.12.7rc1 [\#3820](https://github.com/openwallet-foundation/acapy/pull/3820) [swcurran](https://github.com/swcurran)
3234
- 0.12.7rc0 [\#3794](https://github.com/openwallet-foundation/acapy/pull/3794) [swcurran](https://github.com/swcurran)
3335

PUBLISHING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Once ready to do a release, create a local branch that includes the following up
2323
appropriate. `docker run -it --rm -v "$(pwd)":/usr/local/src/your-app
2424
githubchangeloggenerator/github-changelog-generator --user hyperledger
2525
--project aries-cloudagent-python --output 0.11.0rc2.md --since-tag 0.10.4
26-
--future-release 0.12.7rc1 --release-branch main --token <your-token>`
26+
--future-release 0.12.7rc2 --release-branch main --token <your-token>`
2727
- In the generated file, use only the PR list -- we don't include the list of
2828
closed issues in the Change Log.
2929

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/hyperledger/aries-cloudagent-python:py3.9-0.12.7rc1
179+
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.12.7rc2
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"]

docs/features/SupportedRFCs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ACA-Py or the repository `main` branch. Reminders (and PRs!) to update this page
88
welcome! If you have any questions, please contact us on the #aries channel on
99
[Hyperledger Discord](https://discord.gg/hyperledger) or through an issue in this repo.
1010

11-
**Last Update**: 2025-07-14, Release 0.12.7rc1
11+
**Last Update**: 2025-07-16, Release 0.12.7rc2
1212

1313
> The checklist version of this document was created as a joint effort
1414
> between [Northern Block](https://northernblock.io/), [Animo Solutions](https://animo.id/) and the Ontario government, on behalf of the Ontario government.

open-api/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi" : "3.0.1",
33
"info" : {
44
"title" : "Aries Cloud Agent",
5-
"version" : "v0.12.7rc1"
5+
"version" : "v0.12.7rc2"
66
},
77
"servers" : [ {
88
"url" : "/"

open-api/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v0.12.7rc1",
4+
"version" : "v0.12.7rc2",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aries_cloudagent"
3-
version = "0.12.7rc1"
3+
version = "0.12.7rc2"
44
description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. "
55
authors = ["Hyperledger Aries <aries@lists.hyperledger.org>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)