Skip to content

Commit c816310

Browse files
authored
⬆️ Upgrade to 0.12.1 (#175)
* ⬆️ Upgrade `black` to latest * ⬆️ Upgrade `pytest` to latest * ✨ set version to 0.12.1 * 🎨 fixes name of `PublishRevocationsSchemaAnoncreds` model * ✨ `ServiceDecorator` no longer requires optional fields, since #2242 in hyperledger/aries-cloudagent-python * Update openapi specs to 0.12.1
1 parent 369d858 commit c816310

File tree

393 files changed

+11799
-15382
lines changed

Some content is hidden

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

393 files changed

+11799
-15382
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python -m pip install --upgrade pip
3838
pip install \
3939
isort~=5.13.2 \
40-
black~=24.4.0
40+
black~=24.4.2
4141
- name: Check import style with isort
4242
run: |
4343
isort . --check --profile black --diff

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python -m pip install --upgrade pip
4040
pip install \
4141
isort~=5.13.2 \
42-
black~=24.4.0
42+
black~=24.4.2
4343
- name: Check import style with isort
4444
run: |
4545
isort . --check --profile black --diff

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ For legacy versions, please review our release history to found the version comp
4747
Aries CloudController Python provides a robust client for interacting with Aries Cloud Agents (ACA-Py).
4848

4949
- **Fully Typed**: Offers a strongly-typed wrapper around the Aries Cloud Agent Python, enhancing developer experience and reducing errors.
50-
- **Up-to-Date Support**: Compatible with the latest ACA-Py version (0.12.0), ensuring access to the most recent features and improvements.
50+
- **Up-to-Date Support**: Compatible with the latest ACA-Py version (0.12.1), ensuring access to the most recent features and improvements.
5151
- **Auto-Generated Client**: Utilizes OpenAPI definitions for automatic generation, ensuring timely updates in line with new ACA-Py releases.
5252
- **Multi-Tenancy and Authentication Support**: Facilitates working with multi-tenant APIs and integrates various authentication mechanisms.
5353
- **Asynchronous API**: Supports asynchronous operations, enabling efficient handling of I/O-bound tasks.

aries_cloudcontroller/__init__.py

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

1616

17-
__version__ = "0.12.0"
17+
__version__ = "0.12.1"
1818

1919
from aries_cloudcontroller.acapy_client import AcaPyClient
2020

@@ -260,7 +260,7 @@
260260
ProvePresentationResponse,
261261
PublishRevocations,
262262
PublishRevocationsOptions,
263-
PublishRevocationsResult,
263+
PublishRevocationsResultSchemaAnoncreds,
264264
PublishRevocationsSchemaAnoncreds,
265265
PurposeResult,
266266
Queries,

aries_cloudcontroller/api/action_menu_api.py

Lines changed: 1 addition & 1 deletion
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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_credential_definitions_api.py

Lines changed: 1 addition & 1 deletion
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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_revocation_api.py

Lines changed: 5 additions & 5 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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -26,8 +26,8 @@
2626
from aries_cloudcontroller.models.cred_rev_record_result_schema_anoncreds import (
2727
CredRevRecordResultSchemaAnoncreds,
2828
)
29-
from aries_cloudcontroller.models.publish_revocations_result import (
30-
PublishRevocationsResult,
29+
from aries_cloudcontroller.models.publish_revocations_result_schema_anoncreds import (
30+
PublishRevocationsResultSchemaAnoncreds,
3131
)
3232
from aries_cloudcontroller.models.publish_revocations_schema_anoncreds import (
3333
PublishRevocationsSchemaAnoncreds,
@@ -1109,7 +1109,7 @@ async def publish_revocations(
11091109
_content_type: Optional[StrictStr] = None,
11101110
_headers: Optional[Dict[StrictStr, Any]] = None,
11111111
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1112-
) -> PublishRevocationsResult:
1112+
) -> PublishRevocationsResultSchemaAnoncreds:
11131113
"""Publish pending revocations to ledger
11141114
11151115
@@ -1127,7 +1127,7 @@ async def publish_revocations(
11271127
)
11281128

11291129
_response_types_map: Dict[str, Optional[str]] = {
1130-
"200": "PublishRevocationsResult",
1130+
"200": "PublishRevocationsResultSchemaAnoncreds",
11311131
}
11321132
response_data = await self.api_client.call_api(
11331133
*_param, _request_timeout=_request_timeout

aries_cloudcontroller/api/anoncreds_schemas_api.py

Lines changed: 1 addition & 1 deletion
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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/basicmessage_api.py

Lines changed: 1 addition & 1 deletion
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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/connection_api.py

Lines changed: 1 addition & 1 deletion
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: v0.12.0
8+
The version of the OpenAPI document: v0.12.1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)