diff --git a/CHANGELOG.md b/CHANGELOG.md index b74112b0ea..1dcfc5d97f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# 0.10.2-rc0 + +## September 7, 2023 + +Release 0.10.2 is a patch release for 0.10.1 that addresses two specific regressions found +in deploying Release 0.10.1. The regressions are to fix: + +- An ACA-Py instance upgraded to 0.10.1 that had an existing connection to another Aries agent +where the connection has both an `http` and `ws` (websocket) service endpoint with the same ID cannot +message that agent. A scenario is an ACA-Py issuer connecting to an Endorser with both `http` and +`ws` service endpoints. The updates made in 0.10.1 to improve ACA-Py DID resolution did not account +for this scenario and needed a tweak to work ([Issue \#2474], [PR \#2475]). +- The "fix revocation registry" endpoint used to fix scenarios an Issuer's local revocation registry +state is out of sync with the ledger was broken by some code being added to support a single +ACA-Py instance writing to different ledgers ([Issue \#2477], [PR \#2480]). + +[Issue \#2474]: https://github.com/hyperledger/aries-cloudagent-python/issue/2474 +[PR \#2475]: https://github.com/hyperledger/aries-cloudagent-python/pull/2476 +[Issue \#2477]: https://github.com/hyperledger/aries-cloudagent-python/issue/2477 +[PR \#2480]: https://github.com/hyperledger/aries-cloudagent-python/pull/2480 + +### 0.10.0 Categorized List of Pull Requests + +- DID Handling and Connection Establishment Updates/Fixes + - LegacyPeerDIDResolver: erroneously assigning same ID to multiple services [\#2475](https://github.com/hyperledger/aries-cloudagent-python/pull/2475) [dbluhm](https://github.com/dbluhm) +- Credential Exchange (Issue, Present) Updates + - Bugfix: Issue with write ledger pool when performing Accumulator sync [\#2480](https://github.com/hyperledger/aries-cloudagent-python/pull/2480) [shaangill025](https://github.com/shaangill025) +- Release management pull requests + - 0.10.2 [\#2484](https://github.com/hyperledger/aries-cloudagent-python/pull/2484) [swcurran](https://github.com/swcurran) + - 0.10.2 Patch Release - fix issue #2475, #2477 [\#2482](https://github.com/hyperledger/aries-cloudagent-python/pull/2480) [shaangill025](https://github.com/shaangill025) + # 0.10.1 ## August 29, 2023 diff --git a/aries_cloudagent/version.py b/aries_cloudagent/version.py index 3f6ddad918..bba0b7934f 100644 --- a/aries_cloudagent/version.py +++ b/aries_cloudagent/version.py @@ -1,4 +1,4 @@ """Library version information.""" -__version__ = "0.10.1" +__version__ = "0.10.2-rc0" RECORD_TYPE_ACAPY_VERSION = "acapy_version" diff --git a/open-api/openapi.json b/open-api/openapi.json index 8615a980a2..c02fa2f205 100644 --- a/open-api/openapi.json +++ b/open-api/openapi.json @@ -2,7 +2,7 @@ "openapi" : "3.0.1", "info" : { "title" : "Aries Cloud Agent", - "version" : "v0.10.1" + "version" : "v0.10.2-rc0" }, "servers" : [ { "url" : "/" @@ -13715,4 +13715,4 @@ } }, "x-original-swagger-version" : "2.0" -} \ No newline at end of file +} diff --git a/open-api/swagger.json b/open-api/swagger.json index 931e1453e9..e37366c6ab 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.10.1", + "version" : "v0.10.2-rc0", "title" : "Aries Cloud Agent" }, "tags" : [ { @@ -12312,4 +12312,4 @@ "description" : "Signed document" } } -} \ No newline at end of file +}