Mike Welsh
Mike Welsh
Nothing has a strong reference to the view model - I think if you want it to persist beyond that scope you'll need a strong reference (somewhere). I think it's...
> Is there anything left to do on my side @borsch? I see that the pipeline is failing, but I assume that it is for every PR right? It looks...
@poulad FYI - might be of interest to you
Experiencing the same issue - also happy to contribute
> Is it perhaps a case insensitivity issue? Is the CI machine Linux? My issue was on a mac machine, but I cleared it up by cleaning my cache and...
I disagree with the assessment that `JsonNullable` should be set based on `required`. For the purpose of this discussion, `null` is considered a value. `nullable` indicates that the field _may_...
`openApiNullable` is respected - it's used in both [nullableDataType](https://github.com/OpenAPITools/openapi-generator/blob/b215f67b2ede55289b0c2e897f2375a3010ecbdc/modules/openapi-generator/src/main/resources/JavaSpring/nullableDataType.mustache) as well as [pojo](https://github.com/OpenAPITools/openapi-generator/blob/b215f67b2ede55289b0c2e897f2375a3010ecbdc/modules/openapi-generator/src/main/resources/JavaSpring/pojo.mustache) - and likely should be used in beanValidation as well. I think if the `@NotNull` annotations are...
I think if it's valid for PATCH it's valid for POST as well. Some projects just use POST instead of PATCH - even it it's not "correct"
> > JsonNullable was implemented incorrectly, checking for nullable property instead of required property as originally defined by OpenAPI Spec > > Hi @daberni Could you please point to part...
https://github.com/OpenAPITools/openapi-generator/pull/11572 - this likely needs to be updated and revived to tackle this issue. If anyone wants to create a new pull request based on the content, that would be...