diff --git a/pom.xml b/pom.xml index 797e480f..efd2d9a2 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 1.0.0.BUILD-SNAPSHOT Spring Data R2DBC - Spring Data module for R2DBC. + Spring Data module for R2DBC https://projects.spring.io/spring-data-r2dbc diff --git a/src/main/asciidoc/new-features.adoc b/src/main/asciidoc/new-features.adoc index b47c2ee7..d630c525 100644 --- a/src/main/asciidoc/new-features.adoc +++ b/src/main/asciidoc/new-features.adoc @@ -1,6 +1,16 @@ [[new-features]] = New & Noteworthy +[[new-features.1-0-0-RC1]] +== What's New in Spring Data R2DBC 1.0.0 RC1 + +* `ConnectionFactory` routing through `AbstractRoutingConnectionFactory`. +* Utilities for schema initialization through `ResourceDatabasePopulator` and `ScriptUtils`. +* Propagation and reset of Auto-Commit and Isolation Level control through `TransactionDefinition`. +* Support for Entity-level converters. +* Kotlin extensions for reified generics and <>. +* Add pluggable mechanism to register dialects. + [[new-features.1-0-0-M2]] == What's New in Spring Data R2DBC 1.0.0 M2 diff --git a/src/main/asciidoc/reference/mapping.adoc b/src/main/asciidoc/reference/mapping.adoc index 434ccfdc..80379693 100644 --- a/src/main/asciidoc/reference/mapping.adoc +++ b/src/main/asciidoc/reference/mapping.adoc @@ -8,6 +8,8 @@ The `MappingR2dbcConverter` also lets you map objects to rows without providing This section describes the features of the `MappingR2dbcConverter`, including how to use conventions for mapping objects to rows and how to override those conventions with annotation-based mapping metadata. +include::../{spring-data-commons-docs}/object-mapping.adoc[leveloffset=+1] + [[mapping.conventions]] == Convention-based Mapping