Skip to content

Commit be06deb

Browse files
committed
Merge pull request #1719 from diegomarquezp
* pr/1719: Polish "Update Spring Cloud GCP to 5.11.0 and 6.0.0" Update Spring Cloud GCP to 5.11.0 and 6.0.0 Closes gh-1719
2 parents 054f7fa + 1b2be23 commit be06deb

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

start-site/src/main/resources/application.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ initializr:
113113
additionalBoms: [ spring-cloud ]
114114
mappings:
115115
- compatibilityRange: "[3.3.0,3.4.0-M1)"
116-
version: 5.10.0
116+
version: 5.11.0
117+
- compatibilityRange: "[3.4.0,3.5.0-M1)"
118+
version: 6.0.0
117119
spring-cloud-services:
118120
groupId: io.pivotal.spring.cloud
119121
artifactId: spring-cloud-services-dependencies
@@ -1425,7 +1427,7 @@ initializr:
14251427
description: Azure Storage Sample
14261428
- name: Google Cloud
14271429
bom: spring-cloud-gcp
1428-
compatibilityRange: "[3.3.0,3.4.0-M1)"
1430+
compatibilityRange: "[3.3.0,3.5.0-M1)"
14291431
content:
14301432
- name: Google Cloud Support
14311433
id: cloud-gcp

start-site/src/test/java/io/spring/start/site/extension/dependency/testcontainers/TestcontainersProjectGenerationConfigurationTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -416,21 +416,21 @@ fun contextLoads() {
416416
@Test
417417
void shouldAddHelpSection() {
418418
assertHelpDocument("testcontainers", "data-mongodb", "postgresql").contains(
419-
"https://docs.spring.io/spring-boot/3.3.0/reference/testing/testcontainers.html#testing.testcontainers")
419+
"https://docs.spring.io/spring-boot/3.4.0/reference/testing/testcontainers.html#testing.testcontainers")
420420
.contains(
421-
"https://docs.spring.io/spring-boot/3.3.0/reference/features/dev-services.html#features.dev-services.testcontainers")
421+
"https://docs.spring.io/spring-boot/3.4.0/reference/features/dev-services.html#features.dev-services.testcontainers")
422422
.contains("mongo:latest")
423423
.contains("postgres:latest");
424424
}
425425

426426
private ProjectStructure generateProject(String... dependencies) {
427-
ProjectRequest request = createProjectRequest(SupportedBootVersion.V3_3, dependencies);
427+
ProjectRequest request = createProjectRequest(SupportedBootVersion.latest(), dependencies);
428428
request.setType("maven-build");
429429
return generateProject(request);
430430
}
431431

432432
private TextAssert assertHelpDocument(String... dependencyIds) {
433-
ProjectRequest request = createProjectRequest(SupportedBootVersion.V3_3, dependencyIds);
433+
ProjectRequest request = createProjectRequest(SupportedBootVersion.latest(), dependencyIds);
434434
return assertThat(helpDocument(request));
435435
}
436436

0 commit comments

Comments
 (0)