Georg Echterling
Georg Echterling
https://hibernate.atlassian.net/browse/HHH-17133
- [x] I have read the [guidelines for submitting issues](https://jmfayard.github.io/refreshVersions/contributing/submitting-issues/) ## 🐛 Describe the bug Running `./gradlew refreshVersionsMigrate` with an up-to-date version of Gradle results in this message: ``` The...
## What? Fixes #673. Adds "CR" as a possible stability modifier for release candidates. ## Why? Hibernate uses "CR" ("Candidate Release") instead of "RC" to indicate release candidate versions. Previously,...
- [x] I have read the [guidelines for submitting issues](https://jmfayard.github.io/refreshVersions/contributing/submitting-issues/) ## 🐛 Describe the bug Hibernate uses [CR](https://github.com/hibernate/hibernate-orm/wiki/Huge-Project,-Small-Team#versioning-scheme) as their marker for release candidates. RefreshVersions only recognizes `RC` as `StabilityLevel.ReleaseCandidate`....
## Expected Behavior Setting the Spring property `db-scheduler.always-persist-timestamp-in-utc=true` should create an `AutodetectJdbcCustomization` with `persistTimestampInUTC = true`. ## Current Behavior Setting `db-scheduler.always-persist-timestamp-in-utc=true` has no effect on the created `AutodetectJdbcCustomization`. The `JdbcCustomization`...
## Brief, plain english overview of your changes here I've changed the Spring Boot auto-configuration to ensure that the `jdbcCustomization` default does not override the configured `alwaysPersistTimestampInUTC` default. The previous...
## Expected Behavior The unresolved execution detection should delete unresolved tasks once they have been *due* for the duration configured in `deleteUnresolvedAfter`. (Default: 14 days) ## Current Behavior The unresolved...
Related: #3904 I have these classes: ```java @Schema(name = "Color", type = "string", pattern = Color.REGEXP, description = "A CSS color hex code.") public record Color( @JsonValue @Pattern(regexp = REGEXP)...
When calling `ClientResponseField.toEntity(someClass)` on a field that cannot be deserialized into the given type, the method will throw an `HttpMessageNotReadableException`. Spring MVC's `ResponseEntityExceptionHandler` will unfortunately convert this into a `400...
**Describe the problem to be solved** I would like to use JSON Schema's [`propertyNames`](https://json-schema.org/draft/2020-12/json-schema-core#section-10.3.2.4) key to restrict the names of an object type's `additionalProperties`: ```yaml steps: type: object propertyNames: enum:...