R2DBC Arabba-SR11 released
On behalf of the community and everyone who contributed, we’re pleased to announce availability of R2DBC Arabba-SR11
available from Maven Central!
This service release ships the following modules:
- R2DBC Specification - 0.8.6.RELEASE (
io.r2dbc:r2dbc-spi
) - Google Cloud Spanner Driver - 0.6.0 (
com.google.cloud:cloud-spanner-r2dbc
) - MariaDB connector - 1.0.2 (
org.mariadb:r2dbc-mariadb
) - PostgreSQL driver - 0.8.10.RELEASE (
io.r2dbc:r2dbc-postgresql
) - SQL Server driver - 0.8.7.RELEASE (
io.r2dbc:r2dbc-postgresql
) - R2DBC Proxy - 0.8.8.RELEASE (
io.r2dbc:r2dbc-proxy
)
This is a maintenance release shipping with mostly bugfixes fixes, selected enhancements, and dependency upgrades. Check out the changelogs associated with each component.
We recommend version management by using R2DBC BOM as individual modules follow their own version number schedule.
If you use Maven, you can add the following lines to your pom.xml
:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-bom</artifactId>
<version>Arabba-SR11</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mariadb</groupId>
<artifactId>r2dbc-mariadb</artifactId>
</dependency>
</dependencies>