Skip to content

Commit

Permalink
Start building against Spring Framework 6.0.5 snapshots
Browse files Browse the repository at this point in the history
This commit adapts to the changes made for
spring-projects/spring-framework#29885.

Closes gh-34152
  • Loading branch information
wilkinsona committed Feb 15, 2023
1 parent 3e618fe commit 5cef763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private void validateWebClient(WebClient.Builder builder, TestObservationRegistr
webClient.get().uri("https://example.org/projects/{project}", "spring-boot").retrieve().toBodilessEntity()
.block(Duration.ofSeconds(30));
TestObservationRegistryAssert.assertThat(registry).hasObservationWithNameEqualTo("http.client.requests").that()
.hasLowCardinalityKeyValue("uri", "https://example.org/projects/{project}");
.hasLowCardinalityKeyValue("uri", "/projects/{project}");
}

private WebClient mockWebClient(WebClient.Builder builder) {
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ bom {
]
}
}
library("Spring Framework", "6.0.4") {
library("Spring Framework", "6.0.5-SNAPSHOT") {
group("org.springframework") {
imports = [
"spring-framework-bom"
Expand Down

0 comments on commit 5cef763

Please sign in to comment.