File tree Expand file tree Collapse file tree 5 files changed +13
-10
lines changed
buildSrc/src/main/java/org/springframework/build
spring-context/src/main/java/org/springframework/context/support
spring-core/src/main/java/org/springframework/core/env
spring-web/src/main/java/org/springframework/http/client Expand file tree Collapse file tree 5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public void apply(Project project) {
50
50
project .getPlugins ().apply (CheckstylePlugin .class );
51
51
project .getTasks ().withType (Checkstyle .class ).forEach (checkstyle -> checkstyle .getMaxHeapSize ().set ("1g" ));
52
52
CheckstyleExtension checkstyle = project .getExtensions ().getByType (CheckstyleExtension .class );
53
- checkstyle .setToolVersion ("10.23.0 " );
53
+ checkstyle .setToolVersion ("10.23.1 " );
54
54
checkstyle .getConfigDirectory ().set (project .getRootProject ().file ("src/checkstyle" ));
55
55
String version = SpringJavaFormatPlugin .class .getPackage ().getImplementationVersion ();
56
56
DependencySet checkstyleDependencies = project .getConfigurations ().getByName ("checkstyle" ).getDependencies ();
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ javaPlatform {
7
7
}
8
8
9
9
dependencies {
10
- api(platform(" com.fasterxml.jackson:jackson-bom:2.18.3 " ))
10
+ api(platform(" com.fasterxml.jackson:jackson-bom:2.18.4 " ))
11
11
api(platform(" io.micrometer:micrometer-bom:1.15.0-RC1" ))
12
- api(platform(" io.netty:netty-bom:4.1.119 .Final" ))
12
+ api(platform(" io.netty:netty-bom:4.1.121 .Final" ))
13
13
api(platform(" io.projectreactor:reactor-bom:2025.0.0-M2" ))
14
14
api(platform(" io.rsocket:rsocket-bom:1.1.5" ))
15
15
api(platform(" org.apache.groovy:groovy-bom:4.0.26" ))
@@ -97,7 +97,7 @@ dependencies {
97
97
api(" org.apache.derby:derby:10.16.1.1" )
98
98
api(" org.apache.derby:derbyclient:10.16.1.1" )
99
99
api(" org.apache.derby:derbytools:10.16.1.1" )
100
- api(" org.apache.httpcomponents.client5:httpclient5:5.4.3 " )
100
+ api(" org.apache.httpcomponents.client5:httpclient5:5.4.4 " )
101
101
api(" org.apache.httpcomponents.core5:httpcore5-reactive:5.3.4" )
102
102
api(" org.apache.poi:poi-ooxml:5.2.5" )
103
103
api(" org.apache.tomcat.embed:tomcat-embed-core:11.0.5" )
Original file line number Diff line number Diff line change @@ -229,7 +229,6 @@ private static class ConfigurableEnvironmentPropertySource extends PropertySourc
229
229
super (ENVIRONMENT_PROPERTIES_PROPERTY_SOURCE_NAME , environment );
230
230
}
231
231
232
-
233
232
@ Override
234
233
public boolean containsProperty (String name ) {
235
234
for (PropertySource <?> propertySource : super .source .getPropertySources ()) {
@@ -257,6 +256,7 @@ public String toString() {
257
256
}
258
257
}
259
258
259
+
260
260
/**
261
261
* Fallback {@link PropertySource} that delegates to a raw {@link Environment}.
262
262
* <p>Should never apply in a regular scenario, since the {@code Environment}
@@ -269,7 +269,6 @@ private static class FallbackEnvironmentPropertySource extends PropertySource<En
269
269
super (ENVIRONMENT_PROPERTIES_PROPERTY_SOURCE_NAME , environment );
270
270
}
271
271
272
-
273
272
@ Override
274
273
public boolean containsProperty (String name ) {
275
274
return super .source .containsProperty (name );
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2024 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
35
35
*
36
36
* <p>As of Spring 4.1.2, this class extends {@link EnumerablePropertySource} instead
37
37
* of plain {@link PropertySource}, exposing {@link #getPropertyNames()} based on the
38
- * accumulated property names from all contained sources (as far as possible).
38
+ * accumulated property names from all contained sources - and failing with an
39
+ * {@code IllegalStateException} against any non-{@code EnumerablePropertySource}.
40
+ * <b>When used through the {@code EnumerablePropertySource} contract, all contained
41
+ * sources are expected to be of type {@code EnumerablePropertySource} as well.</b>
39
42
*
40
43
* @author Chris Beams
41
44
* @author Juergen Hoeller
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2024 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -74,6 +74,7 @@ public class HttpComponentsClientHttpRequestFactory implements ClientHttpRequest
74
74
75
75
private long readTimeout = -1 ;
76
76
77
+
77
78
/**
78
79
* Create a new instance of the {@code HttpComponentsClientHttpRequestFactory}
79
80
* with a default {@link HttpClient} based on system properties.
@@ -357,7 +358,7 @@ protected void postProcessHttpRequest(ClassicHttpRequest request) {
357
358
}
358
359
359
360
/**
360
- * Template methods that creates a {@link HttpContext} for the given HTTP method and URI.
361
+ * Template method that creates a {@link HttpContext} for the given HTTP method and URI.
361
362
* <p>The default implementation returns {@code null}.
362
363
* @param httpMethod the HTTP method
363
364
* @param uri the URI
You can’t perform that action at this time.
0 commit comments