Skip to content

Commit b4072ff

Browse files
authored
Merge pull request #2484 from hyperledger/swcurran-0.10.2
0.10.2
2 parents 635d25e + 9a30926 commit b4072ff

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# 0.10.2-rc0
2+
3+
## September 7, 2023
4+
5+
Release 0.10.2 is a patch release for 0.10.1 that addresses two specific regressions found
6+
in deploying Release 0.10.1. The regressions are to fix:
7+
8+
- An ACA-Py instance upgraded to 0.10.1 that had an existing connection to another Aries agent
9+
where the connection has both an `http` and `ws` (websocket) service endpoint with the same ID cannot
10+
message that agent. A scenario is an ACA-Py issuer connecting to an Endorser with both `http` and
11+
`ws` service endpoints. The updates made in 0.10.1 to improve ACA-Py DID resolution did not account
12+
for this scenario and needed a tweak to work ([Issue \#2474], [PR \#2475]).
13+
- The "fix revocation registry" endpoint used to fix scenarios an Issuer's local revocation registry
14+
state is out of sync with the ledger was broken by some code being added to support a single
15+
ACA-Py instance writing to different ledgers ([Issue \#2477], [PR \#2480]).
16+
17+
[Issue \#2474]: https://github.com/hyperledger/aries-cloudagent-python/issue/2474
18+
[PR \#2475]: https://github.com/hyperledger/aries-cloudagent-python/pull/2476
19+
[Issue \#2477]: https://github.com/hyperledger/aries-cloudagent-python/issue/2477
20+
[PR \#2480]: https://github.com/hyperledger/aries-cloudagent-python/pull/2480
21+
22+
### 0.10.0 Categorized List of Pull Requests
23+
24+
- DID Handling and Connection Establishment Updates/Fixes
25+
- LegacyPeerDIDResolver: erroneously assigning same ID to multiple services [\#2475](https://github.com/hyperledger/aries-cloudagent-python/pull/2475) [dbluhm](https://github.com/dbluhm)
26+
- Credential Exchange (Issue, Present) Updates
27+
- 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)
28+
- Release management pull requests
29+
- 0.10.2 [\#2484](https://github.com/hyperledger/aries-cloudagent-python/pull/2484) [swcurran](https://github.com/swcurran)
30+
- 0.10.2 Patch Release - fix issue #2475, #2477 [\#2482](https://github.com/hyperledger/aries-cloudagent-python/pull/2480) [shaangill025](https://github.com/shaangill025)
31+
132
# 0.10.1
233

334
## August 29, 2023

aries_cloudagent/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Library version information."""
22

3-
__version__ = "0.10.1"
3+
__version__ = "0.10.2-rc0"
44
RECORD_TYPE_ACAPY_VERSION = "acapy_version"

open-api/openapi.json

Lines changed: 2 additions & 2 deletions
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.10.1"
5+
"version" : "v0.10.2-rc0"
66
},
77
"servers" : [ {
88
"url" : "/"
@@ -13715,4 +13715,4 @@
1371513715
}
1371613716
},
1371713717
"x-original-swagger-version" : "2.0"
13718-
}
13718+
}

open-api/swagger.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v0.10.1",
4+
"version" : "v0.10.2-rc0",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {
@@ -12312,4 +12312,4 @@
1231212312
"description" : "Signed document"
1231312313
}
1231412314
}
12315-
}
12315+
}

0 commit comments

Comments
 (0)