|
| 1 | +# 1.0.0-rc0 |
| 2 | + |
| 3 | +## August 18, 2022 |
| 4 | + |
| 5 | +1.0.0 is a breaking update to ACA-Py whose version is intended to indicate the |
| 6 | +maturity of the implementation. The final 1.0.0 release will be Aries Interop |
| 7 | +Profile 2.0-complete, and based on Python 3.7 or higher. The initial (rc0) |
| 8 | +release candidate is for early adopters to provide feedback. |
| 9 | + |
| 10 | +### Breaking Changes |
| 11 | + |
| 12 | +As of rc0, there are no breaking updates in the release from the previous v0.7.4. |
| 13 | +However, we know that there are some pending updates that will be breaking, hence |
| 14 | +the bumps to the major/minor version elements. |
| 15 | + |
| 16 | +### Categorized List of Pull Requests |
| 17 | + |
| 18 | +In rc0, there are not a lot of new features, as the focus is on cleanup and |
| 19 | +optimization. The biggest is the inclusion with ACA-Py of a universal resolver |
| 20 | +interface, allowing an instance to have both local resolvers for some DID |
| 21 | +Methods and a call out to an external universal resolver for other DID Methods. |
| 22 | +While some work has been done on moving the default Python version beyond 3.6, |
| 23 | +more work is still to be done on that before the final v1.0.0 release. |
| 24 | + |
| 25 | +### Categorized List of Pull Requests |
| 26 | + |
| 27 | +- Verifiable credential and revocation handling updates |
| 28 | + - Refactor ledger correction code and insert into revocation error handling [\#1892](https://github.com/hyperledger/aries-cloudagent-python/pull/1892) ([ianco](https://github.com/ianco)) |
| 29 | + - Indy ledger fixes and cleanups [\#1870](https://github.com/hyperledger/aries-cloudagent-python/pull/1870) ([andrewwhitehead](https://github.com/andrewwhitehead)) |
| 30 | + - Refactoring of revocation registry creation [\#1813](https://github.com/hyperledger/aries-cloudagent-python/pull/1813) ([andrewwhitehead](https://github.com/andrewwhitehead)) |
| 31 | + |
| 32 | +- DID Registration and Resolution related updates |
| 33 | + - feat: add universal resolver [\#1866](https://github.com/hyperledger/aries-cloudagent-python/pull/1866) ([dbluhm](https://github.com/dbluhm)) |
| 34 | + - fix: resolve dids following new endpoint rules [\#1863](https://github.com/hyperledger/aries-cloudagent-python/pull/1863) ([dbluhm](https://github.com/dbluhm)) |
| 35 | + - fix: didx request cannot be accepted [\#1881](https://github.com/hyperledger/aries-cloudagent-python/pull/1881) ([rmnre](https://github.com/rmnre)) |
| 36 | + |
| 37 | +- Internal Aries framework data handling updates |
| 38 | + - fix: update RouteManager methods use to pass profile as parameter [\#1902](https://github.com/hyperledger/aries-cloudagent-python/pull/1902) ([chumbert](https://github.com/chumbert)) |
| 39 | + - Allow fully qualified class names for profile managers [\#1880](https://github.com/hyperledger/aries-cloudagent-python/pull/1880) ([chumbert](https://github.com/chumbert)) |
| 40 | + - fix: unable to use askar with in memory db [\#1878](https://github.com/hyperledger/aries-cloudagent-python/pull/1878) ([dbluhm](https://github.com/dbluhm)) |
| 41 | + - Enable manually triggering keylist updates during connection [\#1851](https://github.com/hyperledger/aries-cloudagent-python/pull/1851) ([dbluhm](https://github.com/dbluhm)) |
| 42 | + - feat: make base wallet route access configurable [\#1836](https://github.com/hyperledger/aries-cloudagent-python/pull/1836) ([dbluhm](https://github.com/dbluhm)) |
| 43 | + - feat: event and webhook on keylist update stored [\#1769](https://github.com/hyperledger/aries-cloudagent-python/pull/1769) ([dbluhm](https://github.com/dbluhm)) |
| 44 | + |
| 45 | +- Unit, Integration and Aries Agent Test Harness Test updates |
| 46 | + - Fixes a few AATH failures [\#1897](https://github.com/hyperledger/aries-cloudagent-python/pull/1897) ([ianco](https://github.com/ianco)) |
| 47 | + - fix: warnings in tests from IndySdkProfile [\#1865](https://github.com/hyperledger/aries-cloudagent-python/pull/1865) ([dbluhm](https://github.com/dbluhm)) |
| 48 | + - Unit test fixes for python 3.9 [\#1858](https://github.com/hyperledger/aries-cloudagent-python/pull/1858) ([andrewwhitehead](https://github.com/andrewwhitehead)) |
| 49 | + |
| 50 | +- Release management pull requests |
| 51 | + - Release 1.0.0-rc0 [\#1904](https://github.com/hyperledger/aries-cloudagent-python/pull/1904) ([swcurran](https://github.com/swcurran)) |
| 52 | + |
1 | 53 | # 0.7.4 |
2 | 54 |
|
3 | 55 | ## June 30, 2022 |
4 | 56 |
|
| 57 | +> :warning: **Existing multitenant JWTs invalidated when a new JWT is |
| 58 | +generated**: If you have a pre-existing implementation with existing Admin API |
| 59 | +authorization JWTs, invoking the endpoint to get a JWT now invalidates the |
| 60 | +existing JWT. Previously an identical JWT would be created. Please see this |
| 61 | +[comment on PR \#1725](https://github.com/hyperledger/aries-cloudagent-python/pull/1725#issuecomment-1096172144) |
| 62 | +for more details. |
| 63 | + |
5 | 64 | 0.7.4 is a significant release focused on stability and production deployments. |
6 | 65 | As the "patch" release number indicates, there were no breaking changes in the |
7 | 66 | Admin API, but a huge volume of updates and improvements. Highlights of this |
|
0 commit comments