Skip to content

Commit 5cef763

Browse files
committed
Start building against Spring Framework 6.0.5 snapshots
This commit adapts to the changes made for spring-projects/spring-framework#29885. Closes gh-34152
1 parent 3e618fe commit 5cef763

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/observation/web/client/WebClientObservationConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ private void validateWebClient(WebClient.Builder builder, TestObservationRegistr
146146
webClient.get().uri("https://example.org/projects/{project}", "spring-boot").retrieve().toBodilessEntity()
147147
.block(Duration.ofSeconds(30));
148148
TestObservationRegistryAssert.assertThat(registry).hasObservationWithNameEqualTo("http.client.requests").that()
149-
.hasLowCardinalityKeyValue("uri", "https://example.org/projects/{project}");
149+
.hasLowCardinalityKeyValue("uri", "/projects/{project}");
150150
}
151151

152152
private WebClient mockWebClient(WebClient.Builder builder) {

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ bom {
13551355
]
13561356
}
13571357
}
1358-
library("Spring Framework", "6.0.4") {
1358+
library("Spring Framework", "6.0.5-SNAPSHOT") {
13591359
group("org.springframework") {
13601360
imports = [
13611361
"spring-framework-bom"

0 commit comments

Comments
 (0)