Philzen
Philzen
### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how...
This came up in #12804. This also occurs in the quarkus library. _Originally posted by @KnechtRootrecht in https://github.com/OpenAPITools/openapi-generator/issues/12804#issuecomment-1639804266_
The default behavior for JsonParser.Feature.INCLUDE_SOURCE_IN_LOCATION was changed from `true` to `false` in Jackson 2.16: https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.16#streaming-jackson-core As swagger / OAI specs pretty much by definition are open and thus should never...
Using the https://en.wikipedia.org/wiki/Initialization-on-demand_holder_idiom here for thread safety.
Interestingly enough, swagger-core 1.5.x uses a newer Jackson version than 2.x … this leads to version conflicts within swagger-parser: ```terminal [INFO] +- io.swagger.parser.v3:swagger-parser:jar:2.1.22:compile [INFO] | +- io.swagger.parser.v3:swagger-parser-v2-converter:jar:2.1.22:compile [INFO] | |...
Analogous to https://github.com/swagger-api/swagger-parser/pull/2103
Fixes "raw use of parameterized class Schema" warnings where applied, and helps working with the fluent getters in consuming code that uses a parameterized `Schema` variable.
This happens on OpenRewrite 8.28.1 `rewriteRun`-tests on a recipe that rewrites `J.MethodInvocation` arguments of type `Map` throw ```shell java.lang.IllegalStateException: LST contains missing or invalid type information MethodInvocation->Block->MethodDeclaration->Block->ClassDeclaration->CompilationUnit /*~~(MethodInvocation type is...
This happens on OpenRewrite 8.28.1 A JavaTemplate string such as `#{arg:any(java.util.Map)}` will not match the argument `Map.of("key", new Object[] {1,2,3})` for example. ### Workaround Changing the template string to a...
I developing a recipe with OpenRewrite v8.27.1 and have this test: ```java @Test void isMigratedToMethods_whenFullyQualified() { // language=java rewriteRun(java( """ package de.foo.bar; @org.testng.annotations.Test public class BazTest { public void shouldDoStuff()...