Skip to content

Commit 811ff3b

Browse files
authored
Merge pull request #3092 from swcurran/1.0.0rc4
1.0.0rc4
2 parents 22fed03 + 9fdde91 commit 811ff3b

24 files changed

+305
-122
lines changed

CHANGELOG.md

Lines changed: 153 additions & 0 deletions
Large diffs are not rendered by default.

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"typing_extensions",
6060
"unflatten",
6161
"yaml",
62+
"uuid_utils",
6263
]
6364

6465
# "aries_cloudagent.tests.test_conductor",

docs/features/SupportedRFCs.md

Lines changed: 4 additions & 4 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-05-01, Release 0.12.1
11+
**Last Update**: 2024-07-08, Release 1.0.0rc4
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.
@@ -22,7 +22,7 @@ ACA-Py and other Aries Frameworks and Agents.
2222
| AIP Version | Supported | Notes |
2323
| - | :-------: | -------- |
2424
| AIP 1.0 | :white_check_mark: | Fully supported. |
25-
| AIP 2.0 | :white_check_mark: | Fully supported, with a couple of very minor exceptions noted [below](#aip-20). |
25+
| AIP 2.0 | :white_check_mark: | Fully supported. |
2626

2727
A summary of the Aries Interop Profiles and Aries RFCs supported in ACA-Py can be found [later in this document](#supported-rfcs).
2828

@@ -77,9 +77,9 @@ 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) | :warning: Deprecated | **To be removed in the next Major/Minor release of ACA-Py** Full support for the features of the "indy-wallet" secure storage capabilities found in the Indy SDK. |
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** |
8181

82-
> New installations of ACA-Py should **NOT** use the [Indy SDK]. Existing deployments using the [Indy SDK] should transition to [Aries Askar] and related components as soon as possible.
82+
> 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
8484
[Aries Askar]: https://github.com/hyperledger/aries-askar
8585
[Indy SDK]: https://github.com/hyperledger/indy-sdk/tree/master/docs/design/003-wallet-storage

docs/generated/aries_cloudagent.admin.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ aries\_cloudagent.admin.request\_context module
3333
:undoc-members:
3434
:show-inheritance:
3535

36+
aries\_cloudagent.admin.routes module
37+
-------------------------------------
38+
39+
.. automodule:: aries_cloudagent.admin.routes
40+
:members:
41+
:undoc-members:
42+
:show-inheritance:
43+
3644
aries\_cloudagent.admin.server module
3745
-------------------------------------
3846

docs/generated/aries_cloudagent.anoncreds.default.legacy_indy.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ aries\_cloudagent.anoncreds.default.legacy\_indy.author module
1717
:undoc-members:
1818
:show-inheritance:
1919

20+
aries\_cloudagent.anoncreds.default.legacy\_indy.recover module
21+
---------------------------------------------------------------
22+
23+
.. automodule:: aries_cloudagent.anoncreds.default.legacy_indy.recover
24+
:members:
25+
:undoc-members:
26+
:show-inheritance:
27+
2028
aries\_cloudagent.anoncreds.default.legacy\_indy.registry module
2129
----------------------------------------------------------------
2230

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
aries\_cloudagent.didcomm\_v2 package
2+
=====================================
3+
4+
.. automodule:: aries_cloudagent.didcomm_v2
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
8+
9+
Submodules
10+
----------
11+
12+
aries\_cloudagent.didcomm\_v2.adapters module
13+
---------------------------------------------
14+
15+
.. automodule:: aries_cloudagent.didcomm_v2.adapters
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:

docs/generated/aries_cloudagent.indy.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Subpackages
1414

1515
aries_cloudagent.indy.credx
1616
aries_cloudagent.indy.models
17-
aries_cloudagent.indy.sdk
1817

1918
Submodules
2019
----------

docs/generated/aries_cloudagent.indy.sdk.rst

Lines changed: 0 additions & 74 deletions
This file was deleted.

docs/generated/aries_cloudagent.ledger.multiple_ledger.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ aries\_cloudagent.ledger.multiple\_ledger.base\_manager module
1717
:undoc-members:
1818
:show-inheritance:
1919

20-
aries\_cloudagent.ledger.multiple\_ledger.indy\_manager module
21-
--------------------------------------------------------------
22-
23-
.. automodule:: aries_cloudagent.ledger.multiple_ledger.indy_manager
24-
:members:
25-
:undoc-members:
26-
:show-inheritance:
27-
2820
aries\_cloudagent.ledger.multiple\_ledger.indy\_vdr\_manager module
2921
-------------------------------------------------------------------
3022

docs/generated/aries_cloudagent.ledger.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@ aries\_cloudagent.ledger.error module
4242
:undoc-members:
4343
:show-inheritance:
4444

45-
aries\_cloudagent.ledger.indy module
46-
------------------------------------
47-
48-
.. automodule:: aries_cloudagent.ledger.indy
49-
:members:
50-
:undoc-members:
51-
:show-inheritance:
52-
5345
aries\_cloudagent.ledger.indy\_vdr module
5446
-----------------------------------------
5547

docs/generated/aries_cloudagent.messaging.models.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,11 @@ aries\_cloudagent.messaging.models.openapi module
3232
:members:
3333
:undoc-members:
3434
:show-inheritance:
35+
36+
aries\_cloudagent.messaging.models.paginated\_query module
37+
----------------------------------------------------------
38+
39+
.. automodule:: aries_cloudagent.messaging.models.paginated_query
40+
:members:
41+
:undoc-members:
42+
:show-inheritance:

docs/generated/aries_cloudagent.messaging.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,14 @@ aries\_cloudagent.messaging.util module
8585
:undoc-members:
8686
:show-inheritance:
8787

88+
aries\_cloudagent.messaging.v2\_agent\_message module
89+
-----------------------------------------------------
90+
91+
.. automodule:: aries_cloudagent.messaging.v2_agent_message
92+
:members:
93+
:undoc-members:
94+
:show-inheritance:
95+
8896
aries\_cloudagent.messaging.valid module
8997
----------------------------------------
9098

docs/generated/aries_cloudagent.protocols.issue_credential.v2_0.formats.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Subpackages
1515
aries_cloudagent.protocols.issue_credential.v2_0.formats.anoncreds
1616
aries_cloudagent.protocols.issue_credential.v2_0.formats.indy
1717
aries_cloudagent.protocols.issue_credential.v2_0.formats.ld_proof
18+
aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di
1819

1920
Submodules
2021
----------
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di.models package
2+
=================================================================================
3+
4+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.models
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
8+
9+
Submodules
10+
----------
11+
12+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di.models.cred module
13+
-------------------------------------------------------------------------------------
14+
15+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.models.cred
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:
19+
20+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di.models.cred\_offer module
21+
--------------------------------------------------------------------------------------------
22+
23+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.models.cred_offer
24+
:members:
25+
:undoc-members:
26+
:show-inheritance:
27+
28+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di.models.cred\_request module
29+
----------------------------------------------------------------------------------------------
30+
31+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.models.cred_request
32+
:members:
33+
:undoc-members:
34+
:show-inheritance:
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di package
2+
==========================================================================
3+
4+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
8+
9+
Subpackages
10+
-----------
11+
12+
.. toctree::
13+
:maxdepth: 4
14+
15+
aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.models
16+
17+
Submodules
18+
----------
19+
20+
aries\_cloudagent.protocols.issue\_credential.v2\_0.formats.vc\_di.handler module
21+
---------------------------------------------------------------------------------
22+
23+
.. automodule:: aries_cloudagent.protocols.issue_credential.v2_0.formats.vc_di.handler
24+
:members:
25+
:undoc-members:
26+
:show-inheritance:

docs/generated/aries_cloudagent.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Subpackages
2121
aries_cloudagent.connections
2222
aries_cloudagent.core
2323
aries_cloudagent.did
24+
aries_cloudagent.didcomm_v2
2425
aries_cloudagent.holder
2526
aries_cloudagent.indy
2627
aries_cloudagent.ledger

docs/generated/aries_cloudagent.storage.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,6 @@ aries\_cloudagent.storage.in\_memory module
4949
:undoc-members:
5050
:show-inheritance:
5151

52-
aries\_cloudagent.storage.indy module
53-
-------------------------------------
54-
55-
.. automodule:: aries_cloudagent.storage.indy
56-
:members:
57-
:undoc-members:
58-
:show-inheritance:
59-
6052
aries\_cloudagent.storage.record module
6153
---------------------------------------
6254

docs/generated/aries_cloudagent.storage.vc_holder.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@ aries\_cloudagent.storage.vc\_holder.in\_memory module
3333
:undoc-members:
3434
:show-inheritance:
3535

36-
aries\_cloudagent.storage.vc\_holder.indy module
37-
------------------------------------------------
38-
39-
.. automodule:: aries_cloudagent.storage.vc_holder.indy
40-
:members:
41-
:undoc-members:
42-
:show-inheritance:
43-
4436
aries\_cloudagent.storage.vc\_holder.vc\_record module
4537
------------------------------------------------------
4638

docs/generated/aries_cloudagent.transport.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ aries\_cloudagent.transport.stats module
4343
:undoc-members:
4444
:show-inheritance:
4545

46+
aries\_cloudagent.transport.v2\_pack\_format module
47+
---------------------------------------------------
48+
49+
.. automodule:: aries_cloudagent.transport.v2_pack_format
50+
:members:
51+
:undoc-members:
52+
:show-inheritance:
53+
4654
aries\_cloudagent.transport.wire\_format module
4755
-----------------------------------------------
4856

docs/generated/aries_cloudagent.utils.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ aries\_cloudagent.utils.env module
4949
:undoc-members:
5050
:show-inheritance:
5151

52+
aries\_cloudagent.utils.general module
53+
--------------------------------------
54+
55+
.. automodule:: aries_cloudagent.utils.general
56+
:members:
57+
:undoc-members:
58+
:show-inheritance:
59+
5260
aries\_cloudagent.utils.http module
5361
-----------------------------------
5462

0 commit comments

Comments
 (0)