Add Geometry super-type only as subtypes are considered simple types already. Ensure reflective simple type AOT registration.
Original pull request: #1713
See #1711
We now consider converters for RowDocument. Additionally, we reinstated conversion from R2DBC's Row type into entities as that converter functionality got lost during the converter revision.
Closes#1710
Replace the deprecated `NamingStrategy.getReverseColumnName(PersistentPropertyPathExtension path)` with `getReverseColumnName(RelationalPersistentEntity<?> owner)`
Closes#1693
Using as with an interface that is implemented by the entity, we no longer attempt to instantiate the interface bur use the entity type instead.
Closes#1690
Previously, we instantiated the underlying entity. Now, we either read results directly into the result type or use a Map-backed projection.
Closes#1687
We now derive queries against the domain type and no longer using the result type to ensure query mapping and query creation against the domain type.
Closes#1688
Timeout increased from the default because that cause problems on CI.
Brought SD JDBC now uses `ojdbc11` as R2DBC.
Closes#1665
Original pull request #1668
The latest Oracle JDBC driver properly supports returning of generated ids,
both in batches and for quoted identifiers.
This allows us to now support this feature.
Closes#1666
Original pull request: #1667
Fixes an incorrect URL in the `antora.yml` file that was preventing other pages from linking to the Spring Data Commons documentation.
Original pull request #1674
Since a PersistencePropertyPath does NOT consider it's owner for equality, this is necessary.
to distinguish different AggregatePath instances based on a inherited property.
Closes#1657
Original pull request: #1661
Introduce prefix operator to express queries as Conditions.not(…) as alternative to myCondition.not() (suffix operator) for easier readability.
Reformat code, update copyright years.
See #1653
Original pull request: #1659