Skip to content

Commit 650b4b7

Browse files
committed
v0.9.0
1 parent 05513c3 commit 650b4b7

File tree

10 files changed

+18
-21
lines changed

10 files changed

+18
-21
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# lc-spring-data-r2dbc
22

33
[![Maven Central](https://img.shields.io/maven-central/v/net.lecousin.reactive-data-relational/core.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin.reactive-data-relational%22%20AND%20a%3A%22core%22)
4-
[![Javadoc](https://img.shields.io/badge/javadoc-0.8.1-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.8.1)
4+
[![Javadoc](https://img.shields.io/badge/javadoc-0.9.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.9.0)
55
![Build status](https://github.com/lecousin/lc-spring-data-r2dbc/actions/workflows/maven.yml/badge.svg?branch=master)
66

77
[![Codecov](https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master/graph/badge.svg)](https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master)
@@ -33,6 +33,7 @@ this library aims at providing the most useful features that are really missing
3333
- Sequence
3434
- Insert multiple rows in a single INSERT request (except for MySql)
3535
- Schema generation, with indexes, foreign key constraints, sequences
36+
- Array columns (only with Postgresql)
3637

3738
Features are detailed with examples in the [wiki section](https://github.com/lecousin/lc-spring-data-r2dbc/wiki)
3839

@@ -44,7 +45,7 @@ Features are detailed with examples in the [wiki section](https://github.com/lec
4445

4546
## Dependencies
4647

47-
- Spring Boot (org.springframework.boot:spring-boot-starter-data-r2dbc) version 2.6.5, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.springframework.boot/spring-boot-starter-data-r2dbc.svg)
48+
- Spring Boot (org.springframework.boot:spring-boot-starter-data-r2dbc) version 2.6.6, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.springframework.boot/spring-boot-starter-data-r2dbc.svg)
4849
- commons-lang3 version 3.12.0, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-lang3.svg)
4950
- javassist version 3.28.0-GA, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.javassist/javassist.svg)
5051

@@ -65,13 +66,13 @@ Maven
6566
<dependency>
6667
<groupId>net.lecousin.reactive-data-relational</groupId>
6768
<artifactId>h2</artifactId>
68-
<version>0.8.1</version>
69+
<version>0.9.0</version>
6970
</dependency>
7071
```
7172

7273
Gradle
7374
```groovy
74-
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.8.1'
75+
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.9.0'
7576
```
7677

7778
### Postgres
@@ -81,13 +82,13 @@ Maven
8182
<dependency>
8283
<groupId>net.lecousin.reactive-data-relational</groupId>
8384
<artifactId>postgres</artifactId>
84-
<version>0.8.1</version>
85+
<version>0.9.0</version>
8586
</dependency>
8687
```
8788

8889
Gradle
8990
```groovy
90-
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.8.1'
91+
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.9.0'
9192
```
9293

9394
### MySql
@@ -97,13 +98,13 @@ Maven
9798
<dependency>
9899
<groupId>net.lecousin.reactive-data-relational</groupId>
99100
<artifactId>mysql</artifactId>
100-
<version>0.8.1</version>
101+
<version>0.9.0</version>
101102
</dependency>
102103
```
103104

104105
Gradle
105106
```groovy
106-
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.8.1'
107+
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.9.0'
107108
```
108109

109110
## Spring Boot configuration
@@ -249,7 +250,7 @@ In order to make sure the initializer is launched before any test class is loade
249250
<dependency>
250251
<groupId>net.lecousin.reactive-data-relational</groupId>
251252
<artifactId>test-junit-5</artifactId>
252-
<version>0.8.1</version>
253+
<version>0.9.0</version>
253254
<scope>test</scope>
254255
</dependency>
255256
```

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>core</artifactId>
99

core/src/main/java/net/lecousin/reactive/data/relational/model/metadata/EntityInstance.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ public EntityInstance(@NonNull T instance, @NonNull EntityState state) {
7777
return meta;
7878
}
7979

80-
public Object getValue(String propertyName) {
81-
return getValue(meta.getRequiredProperty(propertyName));
82-
}
83-
8480
public Object getValue(PropertyMetadata property) {
8581
if (property.isPersistent())
8682
return getPropertyAccessor().getProperty(property.getRequiredSpringProperty());

h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>h2</artifactId>
99

jacoco-report-aggregate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>jacoco-report-aggregate</artifactId>
99
<packaging>pom</packaging>

mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>mysql</artifactId>
99

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>net.lecousin.reactive-data-relational</groupId>
44
<artifactId>parent</artifactId>
5-
<version>0.8.1</version>
5+
<version>0.9.0</version>
66
<packaging>pom</packaging>
77

88
<name>net.lecousin.reactive-data-relational aka lc-spring-data-r2dbc</name>

postgres/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>postgres</artifactId>
99

test-junit-5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>test-junit-5</artifactId>
99

test-spring-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.8.1</version>
6+
<version>0.9.0</version>
77
</parent>
88
<artifactId>test-spring-boot</artifactId>
99

0 commit comments

Comments
 (0)