Skip to content

Commit 66a518a

Browse files
committed
Merge branch '6.1.x'
2 parents 6a9b5d2 + 1cecf52 commit 66a518a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ configure([rootProject] + javaProjects) { project ->
9696
"https://fasterxml.github.io/jackson-core/javadoc/2.14/",
9797
"https://fasterxml.github.io/jackson-databind/javadoc/2.14/",
9898
"https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.14/",
99-
"https://hc.apache.org/httpcomponents-client-5.2.x/current/httpclient5/apidocs/",
99+
"https://hc.apache.org/httpcomponents-client-5.4.x/current/httpclient5/apidocs/",
100100
"https://projectreactor.io/docs/test/release/api/",
101101
"https://junit.org/junit4/javadoc/4.13.2/",
102102
// TODO Uncomment link to JUnit 5 docs once we execute Gradle with Java 18+.

framework-platform/framework-platform.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ dependencies {
100100
api("org.apache.derby:derby:10.16.1.1")
101101
api("org.apache.derby:derbyclient:10.16.1.1")
102102
api("org.apache.derby:derbytools:10.16.1.1")
103-
api("org.apache.httpcomponents.client5:httpclient5:5.3.1")
104-
api("org.apache.httpcomponents.core5:httpcore5-reactive:5.2.5")
103+
api("org.apache.httpcomponents.client5:httpclient5:5.4")
104+
api("org.apache.httpcomponents.core5:httpcore5-reactive:5.3")
105105
api("org.apache.poi:poi-ooxml:5.2.5")
106106
api("org.apache.tomcat.embed:tomcat-embed-core:10.1.28")
107107
api("org.apache.tomcat.embed:tomcat-embed-websocket:10.1.28")

spring-web/src/main/java/org/springframework/http/client/HttpComponentsClientHttpRequestFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ public void setHttpContextFactory(BiFunction<HttpMethod, URI, HttpContext> httpC
237237

238238

239239
@Override
240+
@SuppressWarnings("deprecation")
240241
public ClientHttpRequest createRequest(URI uri, HttpMethod httpMethod) throws IOException {
241242
HttpClient client = getHttpClient();
242243

0 commit comments

Comments
 (0)