aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatiana Borisova <tatiana.borisova@qt.io>2026-05-05 20:53:31 +0200
committerTatiana Borisova <tatiana.borisova@qt.io>2026-05-08 04:20:10 +0000
commit564ea220a3cd7afdba14d2a7834d66e6a2823265 (patch)
treefe6bdeeab668032d04fada853ebadf79473fa0ff
parent17cca35258186992f2d6d9eeb53c160d747a687b (diff)
Update The OpenAPI generator version to 7.18.0 on WindowsHEADdev
- the 7.18.0 has generation updates, that affect the code generation. We already moved to 7.18.0 on Linux and MacOS CIs, but forgot to update on Windows. See: e5871fa6e6ee9ff5a9f0615bf8b4e6ac87ce9aaf Noticed the problem during the work on a 'nullable' feature, that is not supported by 7.15.0. Pick-to: 6.11 Change-Id: I9be758218831aae47d7cc9cb1d2dbf60795e6d27 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
-rw-r--r--coin/provisioning/common/windows/install-openapi.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/coin/provisioning/common/windows/install-openapi.ps1 b/coin/provisioning/common/windows/install-openapi.ps1
index bb77a4824..f1e74f2f8 100644
--- a/coin/provisioning/common/windows/install-openapi.ps1
+++ b/coin/provisioning/common/windows/install-openapi.ps1
@@ -5,14 +5,14 @@
. "$PSScriptRoot\helpers.ps1"
-$version = "7.15.0"
+$version = "7.18.0"
$temp = "$env:tmp"
Write-Host "Fetching openapi generator ver. $version..."
$url_cache = "http://ci-files01-hki.ci.qt.io/input/qtopenapi/openapi_client_generators/openapi-generator-cli-$version.jar"
$url_official = "https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/$version/openapi-generator-cli-$version.jar"
$target_file = "openapi-generator-cli.jar"
-$sha1 = "bb58e257f724fb46b7f2b309a9fa98e63fd7199f"
+$sha1 = "8bd615a50b15ebf5be30e612af112526a6e81ac4"
Download $url_official $url_cache "$temp\$target_file"
Verify-Checksum "$temp\$target_file" $sha1