Mark Paluch
Mark Paluch
This change concerns: * Derived Queries (JPQL) * Querydsl * `QueryByExamplePredicateBuilder` * `SimpleJpaRepository` for Sorting and predicates
Not quite sure what you're asking for. The general issue is that various databases may have support for null precedence in ordering while others don't support null precedence. Also, JPA...
Hey @ivamly. There's quite a bit more attached to this task. JSpecify annotations relate to the type level while Spring's `@Nullable` is targeting parameters, fields, and methods. Also, we're looking...
I don't think there's a compatibility matrix beyond the Spring Boot and Spring Cloud combinations.
Right now, you're the first one who asked. Spring Vault comes with an extensible model so for the time being, feel free to implement your own `ClientAuthentication` based on GitHub...
I appreciate your suggestion. What is missing in the existing session manager to meet your requirements? We would rather want to reuse existing infrastructure (also for the reactive side) to...
> If I'm understanding correctly, the current LifecycleAwareSessionManager which gets autoconfigured can only renew (if the token can be renewed), but not regenerate the token. Session managers obtain a new...
That sounds straight-forward. We have a few utilities to calculate a point in time when the token is expected to expire with an additional threshold that can drop the token...
Our API doesn't cover all Vault API calls that would be possible. Have you looked into `VaultTemplate.read(…)` and `VaultTemplate.write(…)` methods to invoke Vault API that isn't associated with a Java...
We do not support the implicit `$and` form using our Criteria API, however, we should explore how to enable querying the same field multiple times through our query derivation mechanism....