Dear community,

It is my pleasure to announce that R2DBC has released it’s third service release, Arabba-SR3 from Maven Central!

R2DBC enables the Java platform with a reactive, non-blocking way to access relational databases via SQL.

This service release includes:

This is a maintenance release with patches and fixes, but nothing breaking. Feel free to check the ticket logs above for the module you’re interested in.

A few resources with details about this release:

We recommend version management by using R2DBC BOM as individual modules follow their own version number schedule.

Release artifacts

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-SR3</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>io.r2dbc</groupId>
    <artifactId>r2dbc-postgresql</artifactId>
  </dependency>

  <dependency>
    <groupId>io.r2dbc</groupId>
    <artifactId>r2dbc-pool</artifactId>
  </dependency>
</dependencies>

Next Steps

R2DBC 0.8 is the first release of the open standard. We’re expecting maintenance releases shipping minor revisions of the specification and drivers over the course of the next months. We’re looking towards a 0.9 revision of R2DBC: Stored procedures, extensions to transaction definitions, and a specification for database events are only a few topics planned for the next iteration. Join the community to get involved and to follow development closely.

Cheers,

Greg