Skip to content

Commit 4653dbf

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents d22986b + b700c9d commit 4653dbf

File tree

21 files changed

+37
-85
lines changed

21 files changed

+37
-85
lines changed

.github/dco.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require:
2+
members: false

README.adoc

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,11 @@ tracker for issues and merging pull requests into main. If you want
109109
to contribute even something trivial please do not hesitate, but
110110
follow the guidelines below.
111111

112-
[[sign-the-contributor-license-agreement]]
113-
== Sign the Contributor License Agreement
114-
115-
Before we accept a non-trivial patch or pull request we will need you to sign the
116-
https://cla.pivotal.io/sign/spring[Contributor License Agreement].
117-
Signing the contributor's agreement does not grant anyone commit rights to the main
118-
repository, but it does mean that we can accept your contributions, and you will get an
119-
author credit if we do. Active contributors might be asked to join the core team, and
120-
given the ability to merge pull requests.
112+
[[developer-certificate-of-origin]]
113+
== Developer Certificate of Origin (DCO)
114+
115+
All commits must include a __Signed-off-by__ trailer at the end of each commit message to indicate that the contributor agrees to the Developer Certificate of Origin.
116+
For additional details, please refer to the blog post https://spring.io/blog/2025/01/06/hello-dco-goodbye-cla-simplifying-contributions-to-spring[Hello DCO, Goodbye CLA: Simplifying Contributions to Spring].
121117

122118
[[code-of-conduct]]
123119
== Code of Conduct

docs/modules/ROOT/partials/_configprops.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
|===
22
|Name | Default | Description
33

4-
|spring.cloud.compatibility-verifier.compatible-boot-versions | `+++3.4.x+++` | Default accepted versions for the Spring Boot dependency. You can set {@code x} for the patch version if you don't want to specify a concrete value. Example: {@code 3.4.x}
4+
|spring.cloud.compatibility-verifier.compatible-boot-versions | `+++3.5.x+++` | Default accepted versions for the Spring Boot dependency. You can set {@code x} for the patch version if you don't want to specify a concrete value. Example: {@code 3.5.x}
55
|spring.cloud.compatibility-verifier.enabled | `+++false+++` | Enables creation of Spring Cloud compatibility verification.
66
|spring.cloud.config.allow-override | `+++true+++` | Flag to indicate that {@link #isOverrideSystemProperties() systemPropertiesOverride} can be used. Set to false to prevent users from changing the default accidentally. Default true.
77
|spring.cloud.config.initialize-on-context-refresh | `+++false+++` | Flag to initialize bootstrap configuration on context refresh event. Default false.

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.springframework.cloud</groupId>
1010
<artifactId>spring-cloud-commons-parent</artifactId>
11-
<version>4.2.1-SNAPSHOT</version>
11+
<version>4.3.0-SNAPSHOT</version>
1212
</parent>
1313
<packaging>jar</packaging>
1414
<name>Spring Cloud Commons Docs</name>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-commons-parent</artifactId>
8-
<version>4.2.1-SNAPSHOT</version>
8+
<version>4.3.0-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010
<name>Spring Cloud Commons Parent</name>
1111
<description>Spring Cloud Commons Parent</description>
1212
<url>https://projects.spring.io/spring-cloud/</url>
1313
<parent>
1414
<groupId>org.springframework.cloud</groupId>
1515
<artifactId>spring-cloud-build</artifactId>
16-
<version>4.2.1-SNAPSHOT</version>
16+
<version>4.3.0-SNAPSHOT</version>
1717
<relativePath/> <!-- lookup parent from repository -->
1818
</parent>
1919
<scm>

spring-cloud-commons-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<artifactId>spring-cloud-dependencies-parent</artifactId>
88
<groupId>org.springframework.cloud</groupId>
9-
<version>4.2.1-SNAPSHOT</version>
9+
<version>4.3.0-SNAPSHOT</version>
1010
<relativePath/>
1111
</parent>
1212
<artifactId>spring-cloud-commons-dependencies</artifactId>
13-
<version>4.2.1-SNAPSHOT</version>
13+
<version>4.3.0-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515
<name>spring-cloud-commons-dependencies</name>
1616
<description>Spring Cloud Commons Dependencies</description>

spring-cloud-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.cloud</groupId>
99
<artifactId>spring-cloud-commons-parent</artifactId>
10-
<version>4.2.1-SNAPSHOT</version>
10+
<version>4.3.0-SNAPSHOT</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313
<artifactId>spring-cloud-commons</artifactId>

spring-cloud-commons/src/main/java/org/springframework/cloud/configuration/CompatibilityVerifierProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public class CompatibilityVerifierProperties {
3434
/**
3535
* Default accepted versions for the Spring Boot dependency. You can set {@code x} for
3636
* the patch version if you don't want to specify a concrete value. Example:
37-
* {@code 3.4.x}
37+
* {@code 3.5.x}
3838
*/
39-
private List<String> compatibleBootVersions = List.of("3.4.x");
39+
private List<String> compatibleBootVersions = List.of("3.5.x");
4040

4141
public boolean isEnabled() {
4242
return this.enabled;

spring-cloud-commons/src/main/java/org/springframework/cloud/configuration/SpringBootVersionVerifier.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class SpringBootVersionVerifier implements CompatibilityVerifier {
3535

3636
final Map<String, CompatibilityPredicate> ACCEPTED_VERSIONS = new HashMap<>() {
3737
{
38-
this.put("3.4", is3_4());
38+
this.put("3.5", is3_5());
3939
}
4040
};
4141

@@ -70,18 +70,18 @@ String getVersionFromManifest() {
7070
return SpringBootVersion.getVersion();
7171
}
7272

73-
CompatibilityPredicate is3_4() {
73+
CompatibilityPredicate is3_5() {
7474
return new CompatibilityPredicate() {
7575

7676
@Override
7777
public String toString() {
78-
return "Predicate for Boot 3.4";
78+
return "Predicate for Boot 3.5";
7979
}
8080

8181
@Override
8282
public boolean isCompatible() {
8383
try {
84-
Class.forName("org.springframework.boot.autoconfigure.web.client.RestClientSsl");
84+
Class.forName("org.springframework.boot.autoconfigure.condition.ConditionalOnBooleanProperty");
8585
return true;
8686
}
8787
catch (ClassNotFoundException e) {

spring-cloud-commons/src/test/java/org/springframework/cloud/configuration/SpringBootDependencyTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ String getVersionFromManifest() {
176176
@Test
177177
public void should_match_against_current_manifest() {
178178
try {
179-
verifyCurrentVersionFromManifest("3.4");
180-
verifyCurrentVersionFromManifest("3.4.x");
179+
verifyCurrentVersionFromManifest("3.5");
180+
verifyCurrentVersionFromManifest("3.5.x");
181181
}
182182
catch (AssertionError e) {
183183
// if (e.getMessage() != null && e.getMessage().contains("3.3.")) {
@@ -212,7 +212,7 @@ String getVersionFromManifest() {
212212
}
213213
};
214214
versionVerifier.ACCEPTED_VERSIONS.clear();
215-
versionVerifier.ACCEPTED_VERSIONS.put("3.0", versionVerifier.is3_4());
215+
versionVerifier.ACCEPTED_VERSIONS.put("3.0", versionVerifier.is3_5());
216216

217217
VerificationResult verificationResult = versionVerifier.verify();
218218

@@ -230,7 +230,7 @@ String getVersionFromManifest() {
230230
}
231231
};
232232
versionVerifier.ACCEPTED_VERSIONS.clear();
233-
versionVerifier.ACCEPTED_VERSIONS.put("3.0", versionVerifier.is3_4());
233+
versionVerifier.ACCEPTED_VERSIONS.put("3.0", versionVerifier.is3_5());
234234

235235
VerificationResult verificationResult = versionVerifier.verify();
236236

0 commit comments

Comments
 (0)