Skip to content

Commit d50f694

Browse files
authored
Merge branch 'main' into POC-oauth-support
2 parents fc8f217 + 51e0aa4 commit d50f694

24 files changed

Lines changed: 868 additions & 213 deletions

File tree

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
# ACA-Py Changelog
22

3+
## 1.6.1rc0
4+
5+
### July 21, 2026
6+
7+
ACA-Py 1.6.1rc0 includes fixes found from continued production use of the `askar-anoncreds` wallet migration and revocation processes, and a fix to bound the memory usage of record queries and maintenance/upgrade scans, improving stability for larger deployments. The multitenancy subwallet removal endpoint has been updated to use `DELETE` for REST consistency, with the previous `POST .../remove` endpoint now deprecated. Many `dependabot` PRs are included to keep dependencies current and secure.
8+
9+
Several PRs in this release complete the work to make ACA-Py 1.6 an official LTS release, with several fixes to the LTS CI/CD image tagging and publishing process
10+
11+
New governance documentation, including a Technical Charter and an OWF Project Mapping Document, are included.
12+
13+
### 1.6.1 Breaking Changes
14+
15+
There are no breaking changes in this release.
16+
17+
### 1.6.1 Deprecation Notices
18+
19+
The `acapy_agent.revocation_anoncreds` package has been deprecated and relocated to `acapy_agent.anoncreds.revocation` for improved consistency across the codebase. The change should only affect [ACA-Py Plugins] that implement AnonCreds, but other developers should also take note.
20+
21+
The `wallet-type` configuration value `askar` is now deprecated and all deployments still using that wallet type should migrate to either the `askar-anoncreds` or (ideally) `kanon-anoncreds` wallet types.
22+
23+
For REST consistency the `POST /multitenancy/wallet/{wallet_id}/remove` endpoint is deprecated, replaced with the `DELETE /multitenancy/wallet/{wallet_id}` endpoint. Implementers should update plugins and their own code to use the new endpoint. The old endpoint will be removed in a future release.
24+
25+
### 1.6.1 Categorized PR List
26+
27+
- **Core Platform and Multitenancy**
28+
- feat: use DELETE for multitenancy subwallet removal [\#4172](https://github.com/openwallet-foundation/acapy/pull/4172) [esune](https://github.com/esune)
29+
- fix: bound memory usage of record queries and maintenance/upgrade scans [\#4171](https://github.com/openwallet-foundation/acapy/pull/4171) [esune](https://github.com/esune)
30+
- **AnonCreds Revocation and Wallet Migration**
31+
- fix: Check RECORD_TYPE_ACAPY_UPGRADING type for clustered upgrade check [\#4167](https://github.com/openwallet-foundation/acapy/pull/4167) [jamshale](https://github.com/jamshale)
32+
- fix: complete stalled setup when activating a posted revocation registry [\#4164](https://github.com/openwallet-foundation/acapy/pull/4164) [kukgini](https://github.com/kukgini)
33+
- Fix anoncreds upgrade failure in-memory in-progress check [\#4163](https://github.com/openwallet-foundation/acapy/pull/4163) [jamshale](https://github.com/jamshale)
34+
- **Documentation and Governance**
35+
- docs: warn that the subwallet token endpoint invalidates previous tokens [\#4166](https://github.com/openwallet-foundation/acapy/pull/4166) [kukgini](https://github.com/kukgini)
36+
- Update README.md [\#4158](https://github.com/openwallet-foundation/acapy/pull/4158) [SeanBohan](https://github.com/SeanBohan)
37+
- Add ACA-Py OWF Project Mapping Document [\#4147](https://github.com/openwallet-foundation/acapy/pull/4147) [swcurran](https://github.com/swcurran)
38+
- Add Technical Charter plus minor updates to the Readme for the new Adaptive Cloud Agent-Python name [\#4143](https://github.com/openwallet-foundation/acapy/pull/4143) [swcurran](https://github.com/swcurran)
39+
- **LTS Release CI/CD**
40+
- Update LTS Docker image tag to py3.13-1.6-lts [\#4151](https://github.com/openwallet-foundation/acapy/pull/4151) [swcurran](https://github.com/swcurran)
41+
- fix(ci): use correct python version per LTS release when tagging images [\#4150](https://github.com/openwallet-foundation/acapy/pull/4150) [esune](https://github.com/esune)
42+
- Fix/lts release cicd [\#4149](https://github.com/openwallet-foundation/acapy/pull/4149) [esune](https://github.com/esune)
43+
- fix(ci): update python version in LTS image tagging to match publish workflow [\#4142](https://github.com/openwallet-foundation/acapy/pull/4142) [esune](https://github.com/esune)
44+
- Make ACA-Py 1.6 an LTS release [\#4127](https://github.com/openwallet-foundation/acapy/pull/4127) [swcurran](https://github.com/swcurran)
45+
- **Dependabot PRs**
46+
- [Link to list of Dependabot PRs in this release](https://github.com/openwallet-foundation/acapy/pulls?q=is%3Apr+is%3Amerged+merged%3A2026-04-01..2026-07-21+author%3Aapp%2Fdependabot+)
47+
- **Release management pull requests**:
48+
- 1.6.1rc0 [\#4178](https://github.com/openwallet-foundation/acapy/pull/4178) [swcurran](https://github.com/swcurran)
49+
350
## 1.6.0
451

552
### April 1, 2026

Managing-ACA-Py-Doc-Site.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and mkdocs configuration.
2020

2121
When the GitHub Action fires, it runs a container that carries out the following steps:
2222

23-
- Checks out the triggering branch, either `main` or `docs-v<version>` (e.g `docs-v1.6.0`).
23+
- Checks out the triggering branch, either `main` or `docs-v<version>` (e.g `docs-v1.6.1`).
2424
- Runs the script [scripts/prepmkdocs.sh], which moves and updates some of the
2525
markdown files so that they fit into the generated site. See the comments in
2626
the scripts for details about the copying and editing done via the script. In
@@ -97,7 +97,7 @@ To delete the documentation version, do the following:
9797
- Check your `git status` and make sure there are no changes in the branch --
9898
e.g., new files that shouldn't be added to the `gh-pages` branch. If there are
9999
any -- delete the files so they are not added.
100-
- Remove the folder for the RC. For example `rm -rf 1.6.0rc0`
100+
- Remove the folder for the RC. For example `rm -rf 1.6.1rc0`
101101
- Edit the `versions.json` file and remove the reference to the RC release in
102102
the file.
103103
- Push the changes via a PR to the ACA-Py `gh-pages` branch (don't PR them into

PUBLISHING.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ a major, minor or patch release, per [semver](https://semver.org/) rules.
66

77
Once ready to do a release, create a local branch that includes the following updates:
88

9-
1. Create a local PR branch from an updated `main` branch, e.g. "1.6.0".
9+
1. Create a local PR branch from an updated `main` branch, e.g. "1.6.1".
1010

1111
2. See if there are any Document Site `mkdocs` changes needed. Run the script
1212
`./scripts/prepmkdocs.sh; mkdocs`. Watch the log, noting particularly if
@@ -120,7 +120,9 @@ For the build test, the RTD Sphinx theme needs to be added to the docker image,
120120

121121
Command: `cd acapy_agent;../scripts/generate-open-api-spec;cd ..`
122122

123-
Folders may not be cleaned up by the script, so the following can be run, likely with `sudo` -- `rm -rf open-api/.build`. The folder is `.gitignore`d, so there is not a danger they will be pushed, even if they are not deleted.
123+
Folders may not be cleaned up by the script, so the following can be run,
124+
likely with `sudo` -- `rm -rf open-api/.build`. The folder is `.gitignore`d,
125+
so there is not a danger they will be pushed, even if they are not deleted.
124126

125127
9. Double check all of these steps above, and then submit a PR from the branch.
126128
Add this new PR to CHANGELOG.md so that all the PRs are included.
@@ -154,15 +156,15 @@ For the build test, the RTD Sphinx theme needs to be added to the docker image,
154156

155157
Published images are automatically tagged with multiple tags for flexibility:
156158

157-
- **Regular Releases** (e.g., `1.6.0`):
158-
- `py3.12-1.6.0` - Python version specific tag
159-
- `1.6.0` - Semantic version tag
159+
- **Regular Releases** (e.g., `1.6.1`):
160+
- `py3.12-1.6.1` - Python version specific tag
161+
- `1.6.1` - Semantic version tag
160162
- `1.6` - Major.minor tag (moves to latest patch release)
161163
- `latest` - Only assigned if this is the highest semantic version
162164

163-
- **Release Candidates** (e.g., `1.6.0rc0`):
164-
- `py3.12-1.6.0rc0` - Python version specific RC tag
165-
- `1.6.0rc0` - Semantic version RC tag
165+
- **Release Candidates** (e.g., `1.6.1rc0`):
166+
- `py3.12-1.6.1rc0` - Python version specific RC tag
167+
- `1.6.1rc0` - Semantic version RC tag
166168
- **Note**: RC releases do NOT receive major.minor (`1.6`) or `latest` tags
167169

168170
The `latest` tag is explicitly managed by comparing semantic versions across all
@@ -172,7 +174,7 @@ For the build test, the RTD Sphinx theme needs to be added to the docker image,
172174

173175
**LTS (Long Term Support) Releases:**
174176

175-
LTS versions receive additional tags (e.g., `py3.12-0.12-lts`) that move to the
177+
LTS versions receive additional tags (e.g., `py3.12-1.6-lts`) that move to the
176178
latest patch release in that LTS line. LTS versions are configured in
177179
`.github/lts-versions.txt`. See `.github/LTS-README.md` for more details.
178180

@@ -187,7 +189,7 @@ For the build test, the RTD Sphinx theme needs to be added to the docker image,
187189
[publish.yml]: https://github.com/openwallet-foundation/acapy/blob/main/.github/workflows/publish.yml
188190

189191
13. When a new release is tagged, create a new branch at the same commit with
190-
the branch name in the format `docs-v<version>`, for example, `docs-v1.6.0rc0`.
192+
the branch name in the format `docs-v<version>`, for example, `docs-v1.6.1rc0`.
191193
The creation of the branch triggers the execution of the [publish-docs]
192194
GitHub Action which generates the documentation for the new release,
193195
publishing it at [https://aca-py.org]. The GitHub Action also executes when

0 commit comments

Comments
 (0)