Skip to content

Commit

Permalink
Upgrade to Spring Cloud Azure 5.19.0
Browse files Browse the repository at this point in the history
Closes gh-1674
  • Loading branch information
mhalbritter committed Dec 17, 2024
1 parent 6f80fe9 commit 7dff2ac
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions start-site/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ initializr:
artifactId: spring-cloud-azure-dependencies
versionProperty: spring-cloud-azure.version
mappings:
- compatibilityRange: "[3.3.0,3.4.0-M1)"
version: 5.18.0
- compatibilityRange: "[3.3.0,3.5.0-M1)"
version: 5.19.0
spring-cloud-gcp:
groupId: com.google.cloud
artifactId: spring-cloud-gcp-dependencies
Expand Down Expand Up @@ -1310,7 +1310,7 @@ initializr:
href: https://docs.vmware.com/en/Spring-Cloud-Services-for-VMware-Tanzu/index.html
- name: Microsoft Azure
bom: spring-cloud-azure
compatibilityRange: "[3.3.0,3.4.0-M1)"
compatibilityRange: "[3.3.0,3.5.0-M1)"
content:
- name: Azure Support
id: azure-support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
class SpringAzureDockerComposeProjectGenerationConfigurationTests extends AbstractExtensionTests {

private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_3;
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();

@Test
void doesNothingWithoutDockerCompose() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*/
class SpringAzureProjectGenerationConfigurationTests extends AbstractExtensionTests {

private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_3;
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();

@ParameterizedTest
@MethodSource("azureDependencies")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
class SpringAzureTestcontainersProjectGenerationConfigurationTests extends AbstractExtensionTests {

private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_3;
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();

@Test
void springAzureTestcontainersDependencyIsAdded() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -32,7 +32,7 @@
*/
class SpringCloudFunctionHelpDocumentCustomizerTests extends AbstractExtensionTests {

private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.V3_3;
private static final SupportedBootVersion BOOT_VERSION = SupportedBootVersion.latest();

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

Expand Down

0 comments on commit 7dff2ac

Please sign in to comment.