François Staudt
François Staudt
First analysis points out to these lines: https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBinder.java#L146-L148 I believe following change would fix the issue (to be tested): ``` java if (Validator.class.isAssignableFrom(target.type.getRawClass())) { if (target.getValue() != null) { validators.add((Validator)...
Validate callback also eases aggregation of multiple validation errors in one response for a given properties class.\ The same benefit can be achieved with BeanPropertyBindingResult and BindException with some additional...
Hello @YannCebron , I'm already using plugin verifier for my plugin and it pass for all supported versions (221 -> 231). My issue is not that plugin is not working...
For information, I managed to workaround the issue by enforcing snakeyaml 2.2 in testRuntime dependencies of helm-values-intellij-plugin module:\ https://github.com/fstaudt/helm-values/blob/0.8.1/helm-values-intellij-plugin/build.gradle.kts#L37 Version 2.2 of snakeyaml should already be transitively provided by dependency...
Hello @Joibel , we would also be very interested in this feature. When reading the proposal, I still wonder which aggregation temporality will be used for opentelemetry metrics (sums or...
> Thanks for the pull request and quick action on review. This looks good to me. We'll have to wait to merge until we start 1.15 development on `main`. Thanks...
> What do you think about calling it `delta` instead of `delta_count`? I woud keep delta_count in the logs.\ The internal field is named count, it feels right to keep...
I've noticed a discrepancy in logs for counters between delta_count and throughput when baseUnit is set.\ I've added an extra commit with updated unit tests to fix this.
> Our general policy is that we do not merge enhancements after a release candidate is released. 1.14.0-RC1 was released yesterday, so the next opportunity for enhancements is 1.15.0-M1. OK,...