Skip to content

Commit 4211582

Browse files
committed
Upgrade to Spring Cloud Azure 5.23.0
Closes gh-1875
1 parent e3425a4 commit 4211582

6 files changed

+8
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ initializr:
102102
artifactId: spring-cloud-azure-dependencies
103103
versionProperty: spring-cloud-azure.version
104104
mappings:
105-
- compatibilityRange: "[3.4.0,3.5.0-M1)"
106-
version: 5.22.0
105+
- compatibilityRange: "[3.4.0,4.0.0-M1)"
106+
version: 5.23.0
107107
spring-cloud-gcp:
108108
groupId: com.google.cloud
109109
artifactId: spring-cloud-gcp-dependencies
@@ -1505,7 +1505,7 @@ initializr:
15051505
href: https://techdocs.broadcom.com/us/en/vmware-tanzu/spring/spring-cloud-gateway-extensions/1-0-0/scg-extensions/transformation.html
15061506
- name: Microsoft Azure
15071507
bom: spring-cloud-azure
1508-
compatibilityRange: "[3.4.0,3.5.0-M1)"
1508+
compatibilityRange: "[3.4.0,4.0.0-M1)"
15091509
content:
15101510
- name: Azure Support
15111511
id: azure-support

start-site/src/test/java/io/spring/start/site/extension/dependency/springazure/SpringAzureDockerComposeProjectGenerationConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*/
3434
class SpringAzureDockerComposeProjectGenerationConfigurationTests extends AbstractExtensionTests {
3535

36-
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_4;
36+
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();
3737

3838
@Test
3939
void doesNothingWithoutDockerCompose() {

start-site/src/test/java/io/spring/start/site/extension/dependency/springazure/SpringAzureMavenBuildCustomizerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*/
3232
class SpringAzureMavenBuildCustomizerTests extends AbstractExtensionTests {
3333

34-
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_4;
34+
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();
3535

3636
@Test
3737
void shouldDoNothingIfAzureSupportIsntSelected() {

start-site/src/test/java/io/spring/start/site/extension/dependency/springazure/SpringAzureProjectGenerationConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
class SpringAzureProjectGenerationConfigurationTests extends AbstractExtensionTests {
4040

41-
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_4;
41+
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();
4242

4343
@ParameterizedTest
4444
@MethodSource("azureDependencies")

start-site/src/test/java/io/spring/start/site/extension/dependency/springazure/SpringAzureTestcontainersProjectGenerationConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
class SpringAzureTestcontainersProjectGenerationConfigurationTests extends AbstractExtensionTests {
3232

33-
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_4;
33+
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();
3434

3535
@Test
3636
void springAzureTestcontainersDependencyIsAdded() {

start-site/src/test/java/io/spring/start/site/extension/dependency/springcloud/SpringCloudFunctionHelpDocumentCustomizerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
class SpringCloudFunctionHelpDocumentCustomizerTests extends AbstractExtensionTests {
3434

35-
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_4;
35+
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();
3636

3737
private static final String AZURE_SECTION_TITLE = "## Running Spring Cloud Function applications on Microsoft Azure";
3838

0 commit comments

Comments
 (0)