Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.10.2 #2509

Merged
merged 1 commit into from
Sep 22, 2023
Merged

0.10.2 #2509

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 0.10.2-rc0
# 0.10.2

## September 7, 2023
## September 22, 2023

Release 0.10.2 is a patch release for 0.10.1 that addresses two specific regressions found
Release 0.10.2 is a patch release for 0.10.1 that addresses three 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
Expand All @@ -13,20 +13,27 @@ 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]).
- The version of the [PyDID] library we were using did not handle some
unexpected DID resolution use cases encountered with mediators. The PyDID
library version dependency was updated in [PR \#2500].

[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
[PyDID]: https://github.com/sicpa-dlab/pydid
[PR \#2500]: https://github.com/hyperledger/aries-cloudagent-python/pull/2500

### 0.10.0 Categorized List of Pull Requests
### 0.10.2 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)
- fix: update pydid [\#2500](https://github.com/hyperledger/aries-cloudagent-python/pull/2500) [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 [\#2509](https://github.com/hyperledger/aries-cloudagent-python/pull/2509) [swcurran](https://github.com/swcurran)
- 0.10.2-rc0 [\#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
Expand Down Expand Up @@ -91,7 +98,7 @@ deleted from ACA-Py storage.

[\#2352]: https://github.com/hyperledger/aries-cloudagent-python/pull/2352

### 0.10.0 Categorized List of Pull Requests
### 0.10.1 Categorized List of Pull Requests

- DIDComm Messaging Improvements/Fixes
- fix: outbound send status missing on path [\#2393](https://github.com/hyperledger/aries-cloudagent-python/pull/2393) [dbluhm](https://github.com/dbluhm)
Expand Down Expand Up @@ -143,7 +150,7 @@ deleted from ACA-Py storage.

## August 29, 2023

Release 0.10.1 has the same contents as 0.10.0. An error on PyPi prevented the
Release 0.10.0 has the same contents as 0.10.1. An error on PyPi prevented the
0.10.0 release from being properly uploaded because of an existing file of the
same name. We immediately released 0.10.1 as a replacement.

Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Library version information."""

__version__ = "0.10.2-rc0"
__version__ = "0.10.2"
RECORD_TYPE_ACAPY_VERSION = "acapy_version"
2 changes: 1 addition & 1 deletion open-api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi" : "3.0.1",
"info" : {
"title" : "Aries Cloud Agent",
"version" : "v0.10.2-rc0"
"version" : "v0.10.2"
},
"servers" : [ {
"url" : "/"
Expand Down
2 changes: 1 addition & 1 deletion open-api/swagger.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger" : "2.0",
"info" : {
"version" : "v0.10.2-rc0",
"version" : "v0.10.2",
"title" : "Aries Cloud Agent"
},
"tags" : [ {
Expand Down