Skip to content

Commit 31c76ff

Browse files
authored
Merge pull request #3834 from swcurran/0.12.8
0.12.8
2 parents 62e23ad + 020be10 commit 31c76ff

7 files changed

Lines changed: 41 additions & 7 deletions

File tree

CHANGELOG.md

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

3+
## 0.12.8
4+
5+
### July 18, 2025
6+
7+
Release 0.12.8 is needed to enable publishing the LTS container image to the Hyperledger Package Repository. The release is otherwise identifical to [0.12.7](#0127).
8+
9+
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.
10+
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.
11+
12+
The release includes the following PRs from the `main` branch cherry-picked into this release:
13+
14+
- 🐛 Fix v2 cred ex and pres ex webhook events to emit after db write [\#3699](https://github.com/openwallet-foundation/acapy/pull/3699)
15+
- fix: multiuse invite derived conns should have msg id [\#3692](https://github.com/openwallet-foundation/acapy/pull/3692)
16+
- Fix unchanged endpoint being rewritten to ledger [\#3608](https://github.com/openwallet-foundation/acapy/pull/3608)
17+
18+
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.
19+
20+
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.
21+
22+
### 0.12.8 Breaking Changes
23+
24+
There are no breaking changes in this release.
25+
26+
#### 0.12.8 Categorized List of Pull Requests
27+
28+
- LTS Container image Publishing
29+
- Upgrade rust version for indy-build to 1.56 [\#3826](https://github.com/openwallet-foundation/acapy/pull/3826) [jamshale](https://github.com/jamshale)
30+
- 0.12.lts.patch [\#3817](https://github.com/openwallet-foundation/acapy/pull/3817) [jamshale](https://github.com/jamshale)
31+
- Don't run workflow for release candidates [\#3796](https://github.com/openwallet-foundation/acapy/pull/3796) [jamshale](https://github.com/jamshale)
32+
- Add recreate lts workflow to 0.12.lts branch [\#3771](https://github.com/openwallet-foundation/acapy/pull/3771) [jamshale](https://github.com/jamshale)
33+
- Release management pull requests:
34+
- 0.12.8 [\#3835](https://github.com/openwallet-foundation/acapy/pull/3835) [swcurran](https://github.com/swcurran)
35+
336
## 0.12.7
437

538
### July 18, 2025
@@ -22,7 +55,8 @@ There are no breaking changes in this release.
2255

2356
#### 0.12.7 Categorized List of Pull Requests
2457

25-
- LTS Container image Publishing
58+
- Enhancements and Updates
59+
- Change ghcr token to hyperledger scoped [\#3832](https://github.com/openwallet-foundation/acapy/pull/3832) [jamshale](https://github.com/jamshale)
2660
- Upgrade rust version for indy-build to 1.56 [\#3826](https://github.com/openwallet-foundation/acapy/pull/3826) [jamshale](https://github.com/jamshale)
2761
- 0.12.lts.patch [\#3817](https://github.com/openwallet-foundation/acapy/pull/3817) [jamshale](https://github.com/jamshale)
2862
- Don't run workflow for release candidates [\#3796](https://github.com/openwallet-foundation/acapy/pull/3796) [jamshale](https://github.com/jamshale)

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.7 --release-branch main --token <your-token>`
26+
--future-release 0.12.8 --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.7
179+
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.12.8
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-18, Release 0.12.7
11+
**Last Update**: 2025-07-18, Release 0.12.8
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.7"
5+
"version" : "v0.12.8"
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.7",
4+
"version" : "v0.12.8",
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.7"
3+
version = "0.12.8"
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)