From 3dfa627c19dcc43af5139bf5091fbbd186c25728 Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Fri, 23 Jan 2026 16:00:06 +0100 Subject: [PATCH 1/2] Revert "chore(deps): update dependency openapitools/openapi-generator to v7.19.0 (#221)" This reverts commit cc0b8bacdae1962479c91c24ac5395ff6016236a. --- languages/python/templates/api.mustache | 3 --- scripts/generate-sdk/generate-sdk.sh | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/languages/python/templates/api.mustache b/languages/python/templates/api.mustache index a2dfaa1..e8c7097 100644 --- a/languages/python/templates/api.mustache +++ b/languages/python/templates/api.mustache @@ -35,7 +35,6 @@ class {{classname}}: @validate_call {{#asyncio}}async {{/asyncio}}def {{operationId}}{{>partial_api_args}} -> {{{returnType}}}{{^returnType}}None{{/returnType}}: {{>partial_api}} - response_data = {{#asyncio}}await {{/asyncio}}self.api_client.call_api( *_param, _request_timeout=_request_timeout @@ -50,7 +49,6 @@ class {{classname}}: @validate_call {{#asyncio}}async {{/asyncio}}def {{operationId}}_with_http_info{{>partial_api_args}} -> ApiResponse[{{{returnType}}}{{^returnType}}None{{/returnType}}]: {{>partial_api}} - response_data = {{#asyncio}}await {{/asyncio}}self.api_client.call_api( *_param, _request_timeout=_request_timeout @@ -65,7 +63,6 @@ class {{classname}}: @validate_call {{#asyncio}}async {{/asyncio}}def {{operationId}}_without_preload_content{{>partial_api_args}} -> RESTResponseType: {{>partial_api}} - response_data = {{#asyncio}}await {{/asyncio}}self.api_client.call_api( *_param, _request_timeout=_request_timeout diff --git a/scripts/generate-sdk/generate-sdk.sh b/scripts/generate-sdk/generate-sdk.sh index b65c1be..96d579c 100755 --- a/scripts/generate-sdk/generate-sdk.sh +++ b/scripts/generate-sdk/generate-sdk.sh @@ -60,12 +60,12 @@ go) python) # When the GENERATOR_VERSION changes, migrate also the templates in templates/python # Renovate: datasource=github-tags depName=OpenAPITools/openapi-generator versioning=semver - GENERATOR_VERSION="v7.19.0" + GENERATOR_VERSION="v7.14.0" ;; java) # When the GENERATOR_VERSION changes, migrate also the templates in templates/java # Renovate: datasource=github-tags depName=OpenAPITools/openapi-generator versioning=semver - GENERATOR_VERSION="v7.19.0" + GENERATOR_VERSION="v7.15.0" ;; *) echo "SDK language not supported." From 4427c3cf47fff6f84023c947af3b91e152bf78f4 Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Fri, 23 Jan 2026 16:12:27 +0100 Subject: [PATCH 2/2] chore(ci) match JDK version matrix with the one in sdk-java --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc4174d..73458f0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -130,7 +130,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java-version: ["11", "17", "21"] + java-version: ["17", "21", "25"] steps: - name: Install SSH Key uses: shimataro/ssh-key-action@v2