From a5dbb682dcd0dcb4d3fe38002bb7294556cb4886 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Thu, 13 Nov 2025 15:11:16 +0000 Subject: [PATCH] Updated Spring Framework 7.0 Release Notes (markdown) --- Spring-Framework-7.0-Release-Notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Spring-Framework-7.0-Release-Notes.md b/Spring-Framework-7.0-Release-Notes.md index 223d835..305095e 100644 --- a/Spring-Framework-7.0-Release-Notes.md +++ b/Spring-Framework-7.0-Release-Notes.md @@ -216,7 +216,7 @@ After `JdbcClient` and `RestClient` in 6.1, Spring Framework 7.0 introduces a `J Spring MVC and WebFlux now provide first class support for API versioning. On the server side, you can map requests to controller methods and route requests to functional endpoints by taking into account the API version of the request. You can configure how the API version is resolved, parsed, and validated, mark versions as deprecated in order to notify clients, and more. On the client side, there is support for setting the API version on requests in `RestClient`, `WebClient`, and also with HTTP interface clients. On the testing side, there is support in `WebTestClient` as well as in MockMvc. -For more details see the reference docs for [Spring MVC](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webmvc-versioning.html) and [WebFlux](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webflux-versioning.html). +For more details see the reference docs for [Spring MVC](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webmvc-versioning.html) and [WebFlux](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webflux-versioning.html), and the blog post [API Versioning in Spring](https://spring.io/blog/2025/09/16/api-versioning-in-spring). ### HTTP Interface Client configuration @@ -237,7 +237,7 @@ static class HttpServicesConfiguration extends AbstractHttpServiceRegistrar { } ``` -For more details, see the [reference documentation](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/integration/rest-clients.html#rest-http-service-client-group-config). +For more details, see the [reference documentation](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/integration/rest-clients.html#rest-http-service-client-group-config), and the blog post [HTTP Service Client Enhancements](https://spring.io/blog/2025/09/23/http-service-client-enhancements). ### HTTP Interface Client support for `InputStream` and `OutputStream`