You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you provided a full/minimal spec to reproduce the issue?
[N/A] Have you validated the input using an OpenAPI validator?
Have you tested with the latest master to confirm the issue still exists?
Have you searched for related issues/PRs?
What's the actual output vs expected output?
[Optional] Sponsorship to speed up the bug fix or feature request
Description
The v7.16.0 release contains outdated dependencies in the JAR file despite PR #21980 being merged and mentioned in the release notes. This causes security vulnerabilities to persist in the released artifact even though they were fixed in the source code.
Security scanners (grype, syft) detect the following vulnerabilities in openapi-generator-cli-7.16.0.jar:
This is NOT a regression - it appears to be a build/release process issue where the dependency updates from PR #21980 (merged September 16, 2025) were not properly included in the JAR artifact.
OpenAPI declaration file content or url
N/A - This is not related to any specific OpenAPI spec. The issue is with the JAR artifact itself.
Generation Details
# Using openapi-generator-cli via Dart pub
dart pub global activate openapi_generator_cli
# The JAR is automatically downloaded from Maven Central:# https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.16.0/openapi-generator-cli-7.16.0.jar
Bug Report Checklist
Description
The v7.16.0 release contains outdated dependencies in the JAR file despite PR #21980 being merged and mentioned in the release notes. This causes security vulnerabilities to persist in the released artifact even though they were fixed in the source code.
Security scanners (grype, syft) detect the following vulnerabilities in
openapi-generator-cli-7.16.0.jar:commons-lang3 3.12.0- GHSA-j288-q9x7-2f5v (Medium)logback-core 1.2.13- GHSA-pr98-23f8-jwxv (Medium), GHSA-6v67-2wr5-gvf4 (Low)openapi-generator version
v7.16.0 (released September 28, 2025)
This is NOT a regression - it appears to be a build/release process issue where the dependency updates from PR #21980 (merged September 16, 2025) were not properly included in the JAR artifact.
OpenAPI declaration file content or url
N/A - This is not related to any specific OpenAPI spec. The issue is with the JAR artifact itself.
Generation Details
Steps to reproduce
unzip -p openapi-generator-cli-7.16.0.jar \ META-INF/maven/org.apache.commons/commons-lang3/pom.properties | grep versionExpected output:
Actual output:
Output shows vulnerabilities:
Related issues/PRs
PR Update commons related dependencies to newer versions #21980: "Update commons related dependencies to newer versions"
commons-lang3from 3.12.0 to 3.18.0,commons-clifrom 1.5.0 to 1.10.0,commons-iofrom 2.16.1 to 2.20.0Release v7.16.0:
Suggest a fix
The issue appears to be in the Maven build/release process. Possible causes:
Suggested solutions:
Verification command for future releases: