Skip to content

Commit 82385d8

Browse files
committed
0.11.0-rc1
Signed-off-by: Stephen Curran <swcurran@gmail.com>
1 parent f7eff5d commit 82385d8

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aries Cloud Agent Python Changelog
22

3-
## 0.11.0-rc0
3+
## 0.11.0-rc1
44

55
### October 30, 2023
66

@@ -10,6 +10,8 @@ to using the [AnonCreds Rust](https://github.com/hyperledger/anoncreds-rs)
1010
in a release that is expected to bring some Admin/Controller API changes. We plan
1111
to do patches to 0.11.0 while the transition is made to the next breaking release.
1212

13+
*Release 0.11.0-rc0 failed to publish because of a reference to a dependency via its GitHub repository rather than to its published artifact.*
14+
1315
A significant addition to ACA-Py is support for signing and verifying
1416
[SD-JWT] verifiable credentials. We expect this to be the first of the changes
1517
to extend ACA-Py to support [OpenID4VC protocols].
@@ -38,15 +40,16 @@ expect to include at least those [ACA-Py PRs labelled "0.11.0"] in the release.
3840

3941
In addition to the impacts of the change for developers in switching from `pip`
4042
to Poetry, the only significant breaking change is the (overdue) transition of
41-
ACA-Py to use the new DIDComm message type prefix that changes the DID Message
42-
prefix from the old hardcoded `did:sov:BzCbsNYhMrjHiqZDTUASHg;spec` to the new
43-
hardcoded `https://didcomm.org` value. and using the new DIDComm MIME type. The
44-
vast majority (all?) Aries deployments have long since been updated to accept
45-
both values, so this change just forces the use of the newer value in sending
46-
messages. In updating this, we retained the old configuration parameters most
47-
(all?) deployments were using (`--emit-new-didcomm-prefix` and
48-
`--emit-new-didcomm-mime-type`) but updated the code to set the configuration
49-
parameters to `true` even if the parameters were not set. See [PR \#2517]
43+
ACA-Py to always use the new DIDComm message type prefix, changing the DID
44+
Message prefix from the old hardcoded `did:sov:BzCbsNYhMrjHiqZDTUASHg;spec` to
45+
the new hardcoded `https://didcomm.org` value, and using the new DIDComm MIME
46+
type in place of the old. The vast majority (all?) Aries deployments have long
47+
since been updated to accept both values, so this change just forces the use of
48+
the newer value in sending messages. In updating this, we retained the old
49+
configuration parameters most deployments were using
50+
(`--emit-new-didcomm-prefix` and `--emit-new-didcomm-mime-type`) but updated the
51+
code to set the configuration parameters to `true` even if the parameters were
52+
not set. See [PR \#2517]
5053

5154
[PR \#2517]: https://github.com/hyperledger/aries-cloudagent-python/pull/2517
5255

@@ -73,6 +76,7 @@ parameters to `true` even if the parameters were not set. See [PR \#2517]
7376
- 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)
7477
- Issue #2419 InvalidClientTaaAcceptanceError time too precise error if container timezone is not UTC [\#2420](https://github.com/hyperledger/aries-cloudagent-python/pull/2420) [Ennovate-com](https://github.com/Ennovate-com)
7578
- OpenID4VC / SD-JWT Updates
79+
- chore: point to official sd-jwt lib release [\#2573](https://github.com/hyperledger/aries-cloudagent-python/pull/2573) [dbluhm](https://github.com/dbluhm)
7680
- Feat/sd jwt implementation [\#2487](https://github.com/hyperledger/aries-cloudagent-python/pull/2487) [cjhowland](https://github.com/cjhowland)
7781
- JSON-LD Verifiable Credential format updates
7882
- Issue #2488 KeyError raised when Subject ID is not a URI [\#2490](https://github.com/hyperledger/aries-cloudagent-python/pull/2490) [Ennovate-com](https://github.com/Ennovate-com)
@@ -109,6 +113,7 @@ parameters to `true` even if the parameters were not set. See [PR \#2517]
109113
- Swap out flake8 in favor of Ruff [\#2438](https://github.com/hyperledger/aries-cloudagent-python/pull/2438) [dbluhm](https://github.com/dbluhm)
110114
- #2289 Migrate to Poetry [\#2436](https://github.com/hyperledger/aries-cloudagent-python/pull/2436) [Gavinok](https://github.com/Gavinok)
111115
- Release management pull requests
116+
- 0.11.0-rc1 [\#2576](https://github.com/hyperledger/aries-cloudagent-python/pull/2576) [swcurran](https://github.com/swcurran)
112117
- 0.11.0-rc0 [\#2575](https://github.com/hyperledger/aries-cloudagent-python/pull/2575) [swcurran](https://github.com/swcurran)
113118

114119
## 0.10.1

open-api/openapi.json

Lines changed: 1 addition & 1 deletion
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.11.0-rc0"
5+
"version" : "v0.11.0-rc1"
66
},
77
"servers" : [ {
88
"url" : "/"

open-api/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v0.11.0-rc0",
4+
"version" : "v0.11.0-rc1",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aries_cloudagent"
3-
version = "0.11.0-rc0"
3+
version = "0.11.0-rc1"
44
description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. "
55
authors = ["Hyperledger Aries <aries@lists.hyperledger.org>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)