Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ama-sdk): fallback open api generator version to 7.9.0 #2671

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .renovaterc.json5
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@
"org.openapitools:openapi-generator"
],
"groupName": "Open API updates",
"groupSlug": "openapi"
"groupSlug": "openapi",
// TODO wait for https://github.com/OpenAPITools/openapi-generator/issues/20135 to be fixed before upgrading to 7.10.0
"enabled": false
},
{
// We don't want to update this dep as we are still targeting a fork
Expand Down
2 changes: 1 addition & 1 deletion packages/@ama-sdk/schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"tsc-watch": "^6.0.4",
"yaml-eslint-parser": "^1.2.2"
},
"openApiSupportedVersion": "~7.10.0",
"openApiSupportedVersion": "~7.9.0",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator</artifactId>
<version>7.10.0</version>
<!-- TODO wait for https://github.com/OpenAPITools/openapi-generator/issues/20135 to be fixed before upgrading to 7.10.0 -->
<!-- Don't forget to enable the custom manager in .renovaterc.json5 -->
<version>7.9.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Loading