Carlos Tasada

Results 8 issues of Carlos Tasada

o Added support to filter dependencies while doing `display-dependency-updates` Now you can do something like ``` mvn versions:display-dependency-updates -Dincludes=org.springframework.boot ``` Supports both `includes` and `excludes` options. Code is refactored to...

### Describe the bug The https://github.com/asyncapi/spec/blob/master/spec/asyncapi.md#operation-object-example example describes the `security` field as ```json "security": [ { "petstore_auth": [ "write:pets", "read:pets" ] } ], ``` But none of the [Security Schemas](https://www.asyncapi.com/docs/reference/specification/v3.0.0#securitySchemeObject)...

🐞 Bug
stale

Decouple the binding annotations. The annotations to document the bindings were only available via the different springwolf-plugins, and were forcing to import multiple extra dependencies. Those annotations are now published...

**Describe the bug** In an application that uses both `SpringDoc` for OpenApi and `Spring-Wolf` for AsyncAPI, the usage of `spring-wolf.use-fqn` overrides the one used by `springdoc.use-fqn` I just realized after...

bug
waiting for feedback

Springwolf doesn't support the generation of AsyncAPI components when used with Kotlin Example: ``` @Serializable data class Period( @SerialName("start_date") val startDate: String, @SerialName("period_end") val endDate: String, ) ``` The outcome...

enhancement

Fixes issue #563 Now, when a method is annotated with the `@Header` or `@Headers` annotation, the payload marked with `@Payload` will also include the defined headers. Known limitations: * If...

### Describe the bug you found in AsyncAPI Docs. The https://github.com/asyncapi/bindings/blob/master/jms/README.md#examples shows ```yaml servers: production: url: jms://my-activemq-broker:61616 protocol: jms protocolVersion: '1.1' description: The production ActiveMQ broker accessed via JMS. ```...

stale
🐞 docs bug

Fabrikt already offers support for `ByteArray`, but when dealing with large files, for example, the usage of `ByteArray` puts too much pressure in memory. This MR provides `BYTEARRAY_AS_INPUTSTREAM`. A new...