#391 - Assert compatibility with Lovelace RC1.
Upgrade from Lovelace M3 to Lovelace RC1 for examples requiring Lovelace. Upgrade to latest stable MongoDB drivers. Adapt to API changes. Un-pin examples that were previously bound to Spring Data Kay.
This commit is contained in:
@@ -11,10 +11,6 @@
|
||||
<artifactId>spring-data-jpa-jpa21</artifactId>
|
||||
<name>Spring Data JPA - JPA 2.1 specific features</name>
|
||||
|
||||
<properties>
|
||||
<spring-data-releasetrain.version>Kay-BUILD-SNAPSHOT</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
|
||||
<artifactId>spring-data-jpa-vavr</artifactId>
|
||||
<name>Spring Data JPA - Vavr integration</name>
|
||||
|
||||
|
||||
<properties>
|
||||
<spring-data-releasetrain.version>Lovelace-BUILD-SNAPSHOT</spring-data-releasetrain.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC1</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
<name>Spring Data MongoDB - Change Streams</name>
|
||||
|
||||
<properties>
|
||||
<mongodb.version>3.8.0-beta2</mongodb.version>
|
||||
<mongo-driver-reactivestreams.version>1.9.0-beta1</mongo-driver-reactivestreams.version>
|
||||
<spring-data-releasetrain.version>Lovelace-M3</spring-data-releasetrain.version>
|
||||
<mongodb.version>3.8.0</mongodb.version>
|
||||
<mongo-driver-reactivestreams.version>1.9.0</mongo-driver-reactivestreams.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC1</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
@@ -24,7 +24,7 @@
|
||||
<profile>
|
||||
<id>spring-data-next</id>
|
||||
<properties>
|
||||
<spring-data-releasetrain.version>Lovelace-M3</spring-data-releasetrain.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC1</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
|
||||
@@ -189,9 +189,9 @@ public class ChangeStreamsTests {
|
||||
@Test
|
||||
public void reactiveChangeEvents() {
|
||||
|
||||
Flux<ChangeStreamEvent<Person>> changeStream = reactiveTemplate.changeStream(
|
||||
newAggregation(match(where("operationType").is("insert"))), Person.class, ChangeStreamOptions.empty(),
|
||||
"person");
|
||||
Flux<ChangeStreamEvent<Person>> changeStream = reactiveTemplate.changeStream("person",
|
||||
ChangeStreamOptions.builder().filter(newAggregation(match(where("operationType").is("insert")))).build(),
|
||||
Person.class);
|
||||
|
||||
StepVerifier.create(changeStream) //
|
||||
.expectSubscription() //
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
<name>Spring Data MongoDB - Transactions</name>
|
||||
|
||||
<properties>
|
||||
<mongodb.version>3.8.0-beta2</mongodb.version>
|
||||
<mongo-driver-reactivestreams.version>1.9.0-beta1</mongo-driver-reactivestreams.version>
|
||||
<spring-data-releasetrain.version>Lovelace-M3</spring-data-releasetrain.version>
|
||||
<mongodb.version>3.8.0</mongodb.version>
|
||||
<mongo-driver-reactivestreams.version>1.9.0</mongo-driver-reactivestreams.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC1</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
@@ -24,7 +24,7 @@
|
||||
<profile>
|
||||
<id>spring-data-next</id>
|
||||
<properties>
|
||||
<spring-data-releasetrain.version>Lovelace-M3</spring-data-releasetrain.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC1</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user