Merge pull request #8712 from tdonohue/update_spring_boot

Update Spring & Spring Boot versions
This commit is contained in:
Tim Donohue
2023-05-18 11:49:37 -05:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -6473,7 +6473,7 @@ public class DiscoveryRestControllerIT extends AbstractControllerIntegrationTest
.andExpect(jsonPath("$.facetType", equalTo("authority")))
//There always needs to be a self link available
.andExpect(jsonPath("$._links.self.href",
containsString("api/discover/facets/supervisedBy?prefix=group%2520B&configuration=supervision")))
containsString("api/discover/facets/supervisedBy?prefix=group%20B&configuration=supervision")))
//This is how the page object must look like because it's the default with size 20
.andExpect(jsonPath("$.page",
is(PageMatcher.pageEntry(0, 20))))

View File

@@ -19,9 +19,9 @@
<properties>
<!--=== GENERAL / DSPACE-API DEPENDENCIES ===-->
<java.version>11</java.version>
<spring.version>5.3.20</spring.version>
<spring-boot.version>2.6.8</spring-boot.version>
<spring-security.version>5.6.5</spring-security.version> <!-- sync with version used by spring-boot-->
<spring.version>5.3.27</spring.version>
<spring-boot.version>2.7.11</spring-boot.version>
<spring-security.version>5.7.8</spring-security.version> <!-- sync with version used by spring-boot-->
<hibernate.version>5.6.5.Final</hibernate.version>
<hibernate-validator.version>6.0.23.Final</hibernate-validator.version>
<postgresql.driver.version>42.4.3</postgresql.driver.version>