This repository was archived by the owner on Mar 16, 2025. It is now read-only.
2021.6
#81
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
openapi-processor/openapi-processor-spring#133, improved error reporting
Sometimes parsing errors of the OpenAPI description were not be properly reported (e.g. by the maven plugin). Parsing/validation errors are now handled and reported at the processor level and reporting no longer depends on the plugin that calls the processor (gradle/maven).
openapi-processor/openapi-processor-spring#134, nested oneOf & anyOf
if an
oneOf
/anyOf
was used in a schema property the processor generated code that used a non-existing class as java type for the property.For example given the following OpenAPI description
the processor generated the pojo as:
where
FooNestedOneOfFoo
did not exist.It is now using
Object
as type of ' foo` and generates:dependency updates
updated swagger parser to 2.0.28 (was 2.0.27)
This discussion was created from the release 2021.6.
Beta Was this translation helpful? Give feedback.
All reactions