Skip to content

Commit

Permalink
Start building against Spring Data 2020.0.2 snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Dec 8, 2020
1 parent e0c6ad0 commit 429ffa4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
Expand Up @@ -51,7 +51,7 @@ protected void doHealthCheck(Health.Builder builder) throws Exception {
doHealthCheck(builder, connection);
}
finally {
RedisConnectionUtils.releaseConnection(connection, this.redisConnectionFactory, false);
RedisConnectionUtils.releaseConnection(connection, this.redisConnectionFactory);
}
}

Expand Down
Expand Up @@ -35,8 +35,6 @@
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.data.neo4j.config.Neo4jDefaultCallbacksRegistrar;
import org.springframework.data.neo4j.core.DatabaseSelectionProvider;
import org.springframework.data.neo4j.core.Neo4jClient;
import org.springframework.data.neo4j.core.Neo4jOperations;
Expand Down Expand Up @@ -66,7 +64,6 @@
@ConditionalOnBean(Driver.class)
@AutoConfigureBefore(TransactionAutoConfiguration.class)
@AutoConfigureAfter(Neo4jAutoConfiguration.class)
@Import(Neo4jDefaultCallbacksRegistrar.class)
public class Neo4jDataAutoConfiguration {

@Bean
Expand Down
Expand Up @@ -26,8 +26,6 @@
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.data.neo4j.config.Neo4jDefaultReactiveCallbacksRegistrar;
import org.springframework.data.neo4j.core.ReactiveDatabaseSelectionProvider;
import org.springframework.data.neo4j.core.ReactiveNeo4jClient;
import org.springframework.data.neo4j.core.ReactiveNeo4jOperations;
Expand All @@ -48,7 +46,6 @@
@ConditionalOnClass({ Driver.class, ReactiveNeo4jTemplate.class, ReactiveTransactionManager.class, Flux.class })
@ConditionalOnBean(Driver.class)
@AutoConfigureAfter(Neo4jDataAutoConfiguration.class)
@Import(Neo4jDefaultReactiveCallbacksRegistrar.class)
public class Neo4jReactiveDataAutoConfiguration {

@Bean
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Expand Up @@ -1557,7 +1557,7 @@ bom {
]
}
}
library("Spring Data Bom", "2020.0.1") {
library("Spring Data Bom", "2020.0.2-SNAPSHOT") {
group("org.springframework.data") {
imports = [
"spring-data-bom"
Expand Down

0 comments on commit 429ffa4

Please sign in to comment.