Skip to content

Commit cdb2afd

Browse files
authored
🔖 Release 1.3.2rc0-20250822 (#264)
* 🎨 Bump version * ✨ New did/import endpoint * ✨ New endpoint: /wallet/cheqd/set-did-endpoint * 📝 Update specs * ✨ Update Service model * 🛂 Remove some field validators Any field validators that may impact cheqd dids, schemas, rev reg ids, etc, are removed for the time being, in order to simplify migration from sov to cheqd. didx-xyz/acapy-cloud#1552 * 🔖 1.3.2rc0-20250822 * ⬆️ Upgrade dev requirements * 🎨 Use ruff format * 👷 Switch to ruff * ➖ Replace black and isort with ruff
1 parent f1827e4 commit cdb2afd

File tree

430 files changed

+1214
-2153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+1214
-2153
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,12 @@ jobs:
3636
run: |
3737
python -m pip install --upgrade pip
3838
pip install \
39-
isort~=6.0.0 \
40-
black~=25.1.0
41-
- name: Check import style with isort
42-
run: |
43-
isort . --check --profile black --diff
44-
- name: Check code style with Black
45-
run: |
46-
black . --check --diff
39+
ruff~=0.12.10
40+
- name: Check code style with Ruff
41+
run: ruff format --check
42+
- name: Check code lint rules with Ruff
43+
run: ruff check
44+
4745
deploy:
4846
# if: ${{ startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/main' }}
4947
runs-on: ubuntu-latest

.github/workflows/python-test-publish.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,11 @@ jobs:
3838
run: |
3939
python -m pip install --upgrade pip
4040
pip install \
41-
isort~=6.0.0 \
42-
black~=25.1.0
43-
- name: Check import style with isort
44-
run: |
45-
isort . --check --profile black --diff
46-
- name: Check code style with Black
47-
run: |
48-
black . --check --diff
41+
ruff~=0.12.10
42+
- name: Check code style with Ruff
43+
run: ruff format --check
44+
- name: Check code lint rules with Ruff
45+
run: ruff check
4946

5047
deploy:
5148
runs-on: ubuntu-latest

aries_cloudcontroller/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
99
10-
The version of the OpenAPI document: v1.3.0.post20250507
10+
The version of the OpenAPI document: v1.3.2rc0.post20250822
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
1414
""" # noqa: E501
1515

16-
17-
__version__ = "1.3.0rc1-20250417"
16+
__version__ = "1.3.2rc0-20250822"
1817

1918
from aries_cloudcontroller.acapy_client import AcaPyClient
2019

@@ -150,6 +149,7 @@
150149
CredRevRecordDetailsResultSchemaAnonCreds,
151150
CredRevRecordResult,
152151
CredRevRecordResultSchemaAnonCreds,
152+
CustomDIDEndpointWithType,
153153
DataIntegrityProofOptions,
154154
DeactivateCheqdDIDRequest,
155155
DeactivateCheqdDIDResponse,
@@ -158,6 +158,8 @@
158158
DIDDocument,
159159
DIDEndpoint,
160160
DIDEndpointWithType,
161+
DIDImport,
162+
DIDImportResponse,
161163
DIDList,
162164
DIDResult,
163165
DIDRotateRequestJSON,

aries_cloudcontroller/api/action_menu_api.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v1.3.0.post20250507
8+
The version of the OpenAPI document: v1.3.2rc0.post20250822
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -86,7 +86,6 @@ def _close_active_menu_serialize(
8686
_headers,
8787
_host_index,
8888
) -> RequestSerialized:
89-
9089
_host = None
9190

9291
_collection_formats: Dict[str, str] = {}
@@ -184,7 +183,6 @@ def _fetch_active_menu_serialize(
184183
_headers,
185184
_host_index,
186185
) -> RequestSerialized:
187-
188186
_host = None
189187

190188
_collection_formats: Dict[str, str] = {}
@@ -287,7 +285,6 @@ def _perform_action_serialize(
287285
_headers,
288286
_host_index,
289287
) -> RequestSerialized:
290-
291288
_host = None
292289

293290
_collection_formats: Dict[str, str] = {}
@@ -397,7 +394,6 @@ def _request_active_menu_serialize(
397394
_headers,
398395
_host_index,
399396
) -> RequestSerialized:
400-
401397
_host = None
402398

403399
_collection_formats: Dict[str, str] = {}
@@ -500,7 +496,6 @@ def _send_menu_serialize(
500496
_headers,
501497
_host_index,
502498
) -> RequestSerialized:
503-
504499
_host = None
505500

506501
_collection_formats: Dict[str, str] = {}

aries_cloudcontroller/api/anon_creds_credential_definitions_api.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v1.3.0.post20250507
8+
The version of the OpenAPI document: v1.3.2rc0.post20250822
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -87,7 +87,6 @@ def _create_credential_definition_serialize(
8787
_headers,
8888
_host_index,
8989
) -> RequestSerialized:
90-
9190
_host = None
9291

9392
_collection_formats: Dict[str, str] = {}
@@ -197,7 +196,6 @@ def _get_credential_definition_serialize(
197196
_headers,
198197
_host_index,
199198
) -> RequestSerialized:
200-
201199
_host = None
202200

203201
_collection_formats: Dict[str, str] = {}
@@ -319,7 +317,6 @@ def _get_credential_definitions_serialize(
319317
_headers,
320318
_host_index,
321319
) -> RequestSerialized:
322-
323320
_host = None
324321

325322
_collection_formats: Dict[str, str] = {}
@@ -336,19 +333,15 @@ def _get_credential_definitions_serialize(
336333
# process the path parameters
337334
# process the query parameters
338335
if issuer_id is not None:
339-
340336
_query_params.append(("issuer_id", issuer_id))
341337

342338
if schema_id is not None:
343-
344339
_query_params.append(("schema_id", schema_id))
345340

346341
if schema_name is not None:
347-
348342
_query_params.append(("schema_name", schema_name))
349343

350344
if schema_version is not None:
351-
352345
_query_params.append(("schema_version", schema_version))
353346

354347
# process the header parameters

aries_cloudcontroller/api/anon_creds_revocation_api.py

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v1.3.0.post20250507
8+
The version of the OpenAPI document: v1.3.2rc0.post20250822
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -119,7 +119,6 @@ def _create_rev_reg_definition_serialize(
119119
_headers,
120120
_host_index,
121121
) -> RequestSerialized:
122-
123122
_host = None
124123

125124
_collection_formats: Dict[str, str] = {}
@@ -229,7 +228,6 @@ def _get_active_revocation_registry_serialize(
229228
_headers,
230229
_host_index,
231230
) -> RequestSerialized:
232-
233231
_host = None
234232

235233
_collection_formats: Dict[str, str] = {}
@@ -346,7 +344,6 @@ def _get_cred_rev_record_serialize(
346344
_headers,
347345
_host_index,
348346
) -> RequestSerialized:
349-
350347
_host = None
351348

352349
_collection_formats: Dict[str, str] = {}
@@ -363,15 +360,12 @@ def _get_cred_rev_record_serialize(
363360
# process the path parameters
364361
# process the query parameters
365362
if cred_ex_id is not None:
366-
367363
_query_params.append(("cred_ex_id", cred_ex_id))
368364

369365
if cred_rev_id is not None:
370-
371366
_query_params.append(("cred_rev_id", cred_rev_id))
372367

373368
if rev_reg_id is not None:
374-
375369
_query_params.append(("rev_reg_id", rev_reg_id))
376370

377371
# process the header parameters
@@ -456,7 +450,6 @@ def _get_rev_reg_issued_count_serialize(
456450
_headers,
457451
_host_index,
458452
) -> RequestSerialized:
459-
460453
_host = None
461454

462455
_collection_formats: Dict[str, str] = {}
@@ -556,7 +549,6 @@ def _get_rev_reg_issued_details_serialize(
556549
_headers,
557550
_host_index,
558551
) -> RequestSerialized:
559-
560552
_host = None
561553

562554
_collection_formats: Dict[str, str] = {}
@@ -656,7 +648,6 @@ def _get_rev_reg_issued_indy_recs_serialize(
656648
_headers,
657649
_host_index,
658650
) -> RequestSerialized:
659-
660651
_host = None
661652

662653
_collection_formats: Dict[str, str] = {}
@@ -764,7 +755,6 @@ def _get_revocation_registries_serialize(
764755
_headers,
765756
_host_index,
766757
) -> RequestSerialized:
767-
768758
_host = None
769759

770760
_collection_formats: Dict[str, str] = {}
@@ -781,11 +771,9 @@ def _get_revocation_registries_serialize(
781771
# process the path parameters
782772
# process the query parameters
783773
if cred_def_id is not None:
784-
785774
_query_params.append(("cred_def_id", cred_def_id))
786775

787776
if state is not None:
788-
789777
_query_params.append(("state", state))
790778

791779
# process the header parameters
@@ -870,7 +858,6 @@ def _get_revocation_registry_serialize(
870858
_headers,
871859
_host_index,
872860
) -> RequestSerialized:
873-
874861
_host = None
875862

876863
_collection_formats: Dict[str, str] = {}
@@ -970,7 +957,6 @@ def _get_tails_file_serialize(
970957
_headers,
971958
_host_index,
972959
) -> RequestSerialized:
973-
974960
_host = None
975961

976962
_collection_formats: Dict[str, str] = {}
@@ -1068,7 +1054,6 @@ def _post_revocation_list_serialize(
10681054
_headers,
10691055
_host_index,
10701056
) -> RequestSerialized:
1071-
10721057
_host = None
10731058

10741059
_collection_formats: Dict[str, str] = {}
@@ -1176,7 +1161,6 @@ def _publish_revocations_serialize(
11761161
_headers,
11771162
_host_index,
11781163
) -> RequestSerialized:
1179-
11801164
_host = None
11811165

11821166
_collection_formats: Dict[str, str] = {}
@@ -1284,7 +1268,6 @@ def _revoke_serialize(
12841268
_headers,
12851269
_host_index,
12861270
) -> RequestSerialized:
1287-
12881271
_host = None
12891272

12901273
_collection_formats: Dict[str, str] = {}
@@ -1394,7 +1377,6 @@ def _rotate_active_revocation_registry_serialize(
13941377
_headers,
13951378
_host_index,
13961379
) -> RequestSerialized:
1397-
13981380
_host = None
13991381

14001382
_collection_formats: Dict[str, str] = {}
@@ -1494,7 +1476,6 @@ def _set_active_registry_serialize(
14941476
_headers,
14951477
_host_index,
14961478
) -> RequestSerialized:
1497-
14981479
_host = None
14991480

15001481
_collection_formats: Dict[str, str] = {}
@@ -1601,7 +1582,6 @@ def _set_rev_reg_state_serialize(
16011582
_headers,
16021583
_host_index,
16031584
) -> RequestSerialized:
1604-
16051585
_host = None
16061586

16071587
_collection_formats: Dict[str, str] = {}
@@ -1620,7 +1600,6 @@ def _set_rev_reg_state_serialize(
16201600
_path_params["rev_reg_id"] = rev_reg_id
16211601
# process the query parameters
16221602
if state is not None:
1623-
16241603
_query_params.append(("state", state))
16251604

16261605
# process the header parameters
@@ -1713,7 +1692,6 @@ def _update_rev_reg_revoked_state_serialize(
17131692
_headers,
17141693
_host_index,
17151694
) -> RequestSerialized:
1716-
17171695
_host = None
17181696

17191697
_collection_formats: Dict[str, str] = {}
@@ -1732,7 +1710,6 @@ def _update_rev_reg_revoked_state_serialize(
17321710
_path_params["rev_reg_id"] = rev_reg_id
17331711
# process the query parameters
17341712
if apply_ledger_update is not None:
1735-
17361713
_query_params.append(("apply_ledger_update", apply_ledger_update))
17371714

17381715
# process the header parameters
@@ -1817,7 +1794,6 @@ def _upload_tails_file_serialize(
18171794
_headers,
18181795
_host_index,
18191796
) -> RequestSerialized:
1820-
18211797
_host = None
18221798

18231799
_collection_formats: Dict[str, str] = {}

0 commit comments

Comments
 (0)