-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
OpenAPI Extensions no longer work #2104
Comments
I did some more investigating and it looks like the breaking change was introduced here: https://github.com/springdoc/springdoc-openapi/blob/master/springdoc-openapi-common/src/main/java/org/springdoc/core/OpenAPIService.java#L251 Previously it was simply doing It looks like bit of an awkward one as the OpenAPI class comes from another library and it is not Serializable which limits options! |
Unfortunately extensions are broken in deeper components inside OpenAPI as well. Extensions added to |
Using v1.6.15, but I don't see any issue open for this that would have been addressed for a more recent version of SpringDoc. Please re-open this issue or create a new one to address the fact that extensions also don't work for the UPDATE: I opened a new issue for this #2449 |
Describe the bug
It seems that the ability to add Extesntions to the OpenAPI object no longer works.
Previously you could provide
.extensions()
aMap<String, Object>
which would reflect in the OpenAPI JSON.Our application relied heavily on these custom extensions which is how I noticed the issue initially.
After trying several different versions, this functionality appears to have broken starting version
1.6.2
and still appears to be presnt in the latest version2.0.2
.To Reproduce
Steps to reproduce the behavior:
Spring Boot : 2.7.9 (has to be 2.x.x so you can switch between Springdoc 1.6.1 and 1.6.2 easily)
JDK: 17.0.4
OS: Tested on Window 11 + RHEL8
Gradle 7.6.1
Example project to reproduce the bug: https://github.com/kjc14f/springdoc-test
Create a very simple Config class that sets an extremely simple extension(s):
In build.gradle add
implementation 'org.springdoc:springdoc-openapi-ui:1.6.1'
as a dependency.Run the app and view http://localhost:8080/v3/api-docs, you will notice
"TEST": "HELLO"
which is correct.Version 1.6.1 working:
Stop the app, switch the import to
org.springdoc:springdoc-openapi-ui:1.6.2
and restart the app.You will now see the extension
"TEST": "HELLO"
disappear.Version >= 1.6.2 broken:
Expected behavior
OpenAPI JSON should show the extensions set on the OpenAPI object on all versions of Springdoc.
In the above example
"TEST": "HELLO"
The text was updated successfully, but these errors were encountered: