Brian Clozel
Brian Clozel
With the new Micrometer 1.10 Observation API, we need to move the existing metrics instrumentation from Spring Boot to this project and use the `Observation` API instead. This needs to...
Once #29205 is applied, several tests will start failing as Framework consistently uses `ReflectionUtils#findMethod` on registered beans for various reasons (finding init/detroy methods by name, looking for annotations). The existing...
As of Spring Framework 6.0, we've introduced Observability support in various Spring web components. We're likely to add more support for Observabiity in other areas. We need to document this...
As seen in FasterXML/jackson-databind#3665, the approach taken in our `ConcurrentLruCache` implementation can result in an increase of memory heap consumption because of how the read operations queue is structured. We've...
[As discussed on gitter](https://gitter.im/spring-projects/spring-boot?at=638a87a61bcd2b70786e83f7) with @jnizet : > Hi team. I was just experimenting with native image support with a small application I have, and I think I found a...
Right now Spring Boot is using an ad hoc format for error responses. Often, applications are configured to support JSON/XML formats and the error map is serialized with such message...
As discussed in spring-projects/spring-graphql#526, Spring for GraphQL did not adopt a "code first" approach (generating the GraphQL schema from Java method signatures), but rather a "schema first" approach (manually crafting...
When an application uses config first bootstrap (by configuring `spring.config.use-legacy-processing=true` or using the `spring-cloud-starter-bootstrap` dependency), [AOT processing is not supported](https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_aot_and_native_image_support_2). While this limitation is documented, an application that transitively depends...
GraphQL Java 22 is [scheduled for the end of April](https://github.com/graphql-java/graphql-java/milestone/51) and we should upgrade and adapt to all breaking changes for this release. In the meantime, we can upgrade to...
GraphQL Java 22 is [scheduled for the end of April](https://github.com/graphql-java/graphql-java/milestone/51) and we should upgrade and adapt to all breaking changes for this release.