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
This is closely related to #2104, which states that extensions in the OpenAPI object no longer work.
This was fixed for extensions at the top level, but extension in sub-parts of OpenAPI are also no longer working. One of these sub-objects is the Info object which can also have extensions. I believe there are extensions in other sub-parts that are probably also not working.
I've verified that the extensions of Info are not working in v1.6.8, 1.16.15, and 1.7.0.
The text was updated successfully, but these errors were encountered:
Hi, this change appears to have caused a regression: see #1655 .
I've encountered a similar problem to the linked github issue, in that I'm trying to serialise a JsonNullable<T>. I configure the ObjectMapperProvider to use new JsonNullableModule(), but that module is ignored because the OpenAPIService uses new ObjectMapper.
As a consequence, when I try to create POJO examples programmatically, e.g.
Foo example = new Foo(JsonNullable.of("bar"), JsonNullable.of(null));
.addExamples("foo", new Example()
.description("fooBar")
.summary("fooBarBaz")
.value(example1))
This is closely related to #2104, which states that extensions in the OpenAPI object no longer work.
This was fixed for extensions at the top level, but extension in sub-parts of OpenAPI are also no longer working. One of these sub-objects is the Info object which can also have extensions. I believe there are extensions in other sub-parts that are probably also not working.
I've verified that the extensions of Info are not working in v1.6.8, 1.16.15, and 1.7.0.
The text was updated successfully, but these errors were encountered: