Skip to content

Commit 167f701

Browse files
authored
Merge pull request #3118 from swcurran/1.0.0rc5
1.0.0rc5
2 parents e07066c + 47c99aa commit 167f701

File tree

9 files changed

+182
-127
lines changed

9 files changed

+182
-127
lines changed

CHANGELOG.md

Lines changed: 123 additions & 111 deletions
Large diffs are not rendered by default.

PUBLISHING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Once ready to do a release, create a local branch that includes the following up
1313
there are new documentation files that are in the docs folder and not
1414
referenced in the mkdocs navigation. If there is, update the `mkdocs.yml`
1515
file as necessary. On completion of the testing, run the script
16-
`./scripts/prepmkdocs clean` to undo the temporary changes to the docs. Be
16+
`./scripts/prepmkdocs.sh clean` to undo the temporary changes to the docs. Be
1717
sure to do the last `clean` step -- **DO NOT MERGE THE TEMPORARY DOC
1818
CHANGES.**
1919

docs/features/SupportedRFCs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ACA-Py or the repository `main` branch. Reminders (and PRs!) to update this page
88
welcome! If you have any questions, please contact us on the #aries channel on
99
[Hyperledger Discord](https://discord.gg/hyperledger) or through an issue in this repo.
1010

11-
**Last Update**: 2024-07-08, Release 1.0.0rc4
11+
**Last Update**: 2024-07-23, Release 1.0.0rc5
1212

1313
> The checklist version of this document was created as a joint effort
1414
> between [Northern Block](https://northernblock.io/), [Animo Solutions](https://animo.id/) and the Ontario government, on behalf of the Ontario government.
@@ -77,7 +77,7 @@ A summary of the Aries Interop Profiles and Aries RFCs supported in ACA-Py can b
7777
| --- | :--: | -- |
7878
| [Aries Askar] | :white_check_mark: | Recommended - Aries Askar provides equivalent/evolved secure storage and cryptography support to the "indy-wallet" part of the Indy SDK. When using Askar (via the `--wallet-type askar` startup parameter), other functionality is handled by [CredX](https://github.com/hyperledger/indy-shared-rs) (AnonCreds) and [Indy VDR](https://github.com/hyperledger/indy-vdr) (Indy ledger interactions). |
7979
| [Aries Askar]-AnonCreds | :white_check_mark: | Recommended - When using Askar/AnonCreds (via the `--wallet-type askar-anoncreds` startup parameter), other functionality is handled by [AnonCreds RS](https://github.com/hyperledger/anoncreds-rs) (AnonCreds) and [Indy VDR](https://github.com/hyperledger/indy-vdr) (Indy ledger interactions).<br><br>This `wallet-type` will eventually be the same as `askar` when we have fully integrated the AnonCreds RS library into ACA-Py. |
80-
| [Indy SDK](https://github.com/hyperledger/indy-sdk/tree/master/docs/design/003-wallet-storage) | :x: | **Removed in ACA-Py Release 1.0.0rc4** |
80+
| [Indy SDK](https://github.com/hyperledger/indy-sdk/tree/master/docs/design/003-wallet-storage) | :x: | **Removed in ACA-Py Release 1.0.0rc5** |
8181

8282
> Existing deployments using the [Indy SDK] **MUST** transition to [Aries Askar] and related components as soon as possible. See the [Indy SDK to Askar Migration Guide] for guidance.
8383

docs/generated/aries_cloudagent.multitenant.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ Subpackages
1717
Submodules
1818
----------
1919

20-
aries\_cloudagent.multitenant.askar\_profile\_manager module
21-
------------------------------------------------------------
22-
23-
.. automodule:: aries_cloudagent.multitenant.askar_profile_manager
24-
:members:
25-
:undoc-members:
26-
:show-inheritance:
27-
2820
aries\_cloudagent.multitenant.base module
2921
-----------------------------------------
3022

@@ -72,3 +64,11 @@ aries\_cloudagent.multitenant.route\_manager module
7264
:members:
7365
:undoc-members:
7466
:show-inheritance:
67+
68+
aries\_cloudagent.multitenant.single\_wallet\_askar\_manager module
69+
-------------------------------------------------------------------
70+
71+
.. automodule:: aries_cloudagent.multitenant.single_wallet_askar_manager
72+
:members:
73+
:undoc-members:
74+
:show-inheritance:

docs/generated/aries_cloudagent.vc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Subpackages
1313
:maxdepth: 4
1414

1515
aries_cloudagent.vc.ld_proofs
16+
aries_cloudagent.vc.vc_di
1617
aries_cloudagent.vc.vc_ld
1718

1819
Submodules
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
aries\_cloudagent.vc.vc\_di package
2+
===================================
3+
4+
.. automodule:: aries_cloudagent.vc.vc_di
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
8+
9+
Submodules
10+
----------
11+
12+
aries\_cloudagent.vc.vc\_di.manager module
13+
------------------------------------------
14+
15+
.. automodule:: aries_cloudagent.vc.vc_di.manager
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:
19+
20+
aries\_cloudagent.vc.vc\_di.prove module
21+
----------------------------------------
22+
23+
.. automodule:: aries_cloudagent.vc.vc_di.prove
24+
:members:
25+
:undoc-members:
26+
:show-inheritance:
27+
28+
aries\_cloudagent.vc.vc\_di.verify module
29+
-----------------------------------------
30+
31+
.. automodule:: aries_cloudagent.vc.vc_di.verify
32+
:members:
33+
:undoc-members:
34+
:show-inheritance:

open-api/openapi.json

Lines changed: 6 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" : "v1.0.0rc4"
5+
"version" : "v1.0.0rc5"
66
},
77
"servers" : [ {
88
"url" : "/"
@@ -7756,6 +7756,10 @@
77567756
},
77577757
"ClaimFormat" : {
77587758
"properties" : {
7759+
"di_vc" : {
7760+
"properties" : { },
7761+
"type" : "object"
7762+
},
77597763
"jwt" : {
77607764
"properties" : { },
77617765
"type" : "object"
@@ -11616,7 +11620,7 @@
1161611620
"type" : "string"
1161711621
}
1161811622
},
11619-
"required" : [ "created", "proofPurpose", "type", "verificationMethod" ],
11623+
"required" : [ "proofPurpose", "type", "verificationMethod" ],
1162011624
"type" : "object"
1162111625
},
1162211626
"ListCredentialsResponse" : {

open-api/swagger.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v1.0.0rc4",
4+
"version" : "v1.0.0rc5",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {
@@ -6423,6 +6423,10 @@
64236423
"ClaimFormat" : {
64246424
"type" : "object",
64256425
"properties" : {
6426+
"di_vc" : {
6427+
"type" : "object",
6428+
"properties" : { }
6429+
},
64266430
"jwt" : {
64276431
"type" : "object",
64286432
"properties" : { }
@@ -10054,7 +10058,7 @@
1005410058
},
1005510059
"LinkedDataProof" : {
1005610060
"type" : "object",
10057-
"required" : [ "created", "proofPurpose", "type", "verificationMethod" ],
10061+
"required" : [ "proofPurpose", "type", "verificationMethod" ],
1005810062
"properties" : {
1005910063
"challenge" : {
1006010064
"type" : "string",

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 = "1.0.0rc4"
3+
version = "1.0.0rc5"
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)