Upgrade to Spring Boot 2.6.0-RC1

This commit upgrades the experimental starter to Spring Boot 2.6.0-RC1
and aligns all dependency versions to the Spring Boot dependency
management in 2.6.

This commit also removes temporary workarounds in the testing support or
in declared dependencies now that we've moved to 2.6.

While we're now using Spring Boot 2.6 as a reference version for this
project, the baseline didn't change and this commit documents the
requirements for this project; the Spring Data version, for our QueryDSL
support, is a specific example of that.

Fixes gh-181
This commit is contained in:
Brian Clozel
2021-11-09 09:39:14 +01:00
parent 98f3d4f6ed
commit 02089a8542
10 changed files with 25 additions and 82 deletions

View File

@@ -1,7 +1,8 @@
[[boot-graphql]]
= Boot Starter
This projects builds on Boot 2.5.x, but it should be compatible with the latest Boot 2.4.x.
This projects builds on Boot 2.6.x, but it should be compatible with the latest Boot 2.4.x.
For QueryDSL-related features, Spring Data 2021.1.0 or later is required.

View File

@@ -22,6 +22,16 @@ problem, discuss a design issue, or request a feature.
To get started, please see the <<boot-graphql>> and the <<samples>> sections.
[[requirements]]
== Requirements
Spring GraphQL requires the following as a baseline:
* JDK8
* Spring Framework 5.3
* GraphQL Java 17
* Spring Data 2021.1.0 or later for QueryDSL features
[[web-transports]]