Skip to content

Commit 15fc04d

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 45d6a0d + 9e76c93 commit 15fc04d

File tree

28 files changed

+440
-90
lines changed

28 files changed

+440
-90
lines changed

.github/dependabot.yml

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ updates:
1010
target-branch: "4.0.x" # oldest OSS supported branch
1111
schedule:
1212
interval: "weekly"
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
target-branch: "4.1.x"
16+
schedule:
17+
interval: "weekly"
1318
- package-ecosystem: "github-actions"
1419
directory: "/"
1520
target-branch: "main"
@@ -37,6 +42,17 @@ updates:
3742
update-types:
3843
- version-update:semver-major
3944
- version-update:semver-minor
45+
- package-ecosystem: maven
46+
directory: /
47+
schedule:
48+
interval: daily
49+
target-branch: 4.1.x
50+
ignore:
51+
# only upgrade patch versions for maintenance branch
52+
- dependency-name: "*"
53+
update-types:
54+
- version-update:semver-major
55+
- version-update:semver-minor
4056
- package-ecosystem: maven
4157
directory: /
4258
schedule:
@@ -46,4 +62,19 @@ updates:
4662
# only upgrade by minor or patch
4763
- dependency-name: "*"
4864
update-types:
49-
- version-update:semver-major
65+
- version-update:semver-major
66+
- package-ecosystem: npm
67+
target-branch: docs-build
68+
directory: /
69+
schedule:
70+
interval: weekly
71+
- package-ecosystem: npm
72+
target-branch: main
73+
directory: /docs
74+
schedule:
75+
interval: weekly
76+
- package-ecosystem: npm
77+
target-branch: 4.1.x
78+
directory: /docs
79+
schedule:
80+
interval: weekly

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Build
55

66
on:
77
push:
8-
branches: [ main, 4.0.x, 3.1.x ]
8+
branches: [ main, 4.1.x ]
99
pull_request:
10-
branches: [ main, 4.0.x, 3.1.x ]
10+
branches: [ main, 4.1.x ]
1111

1212
jobs:
1313
build:

README.adoc

Lines changed: 326 additions & 2 deletions
Large diffs are not rendered by default.

docs/modules/ROOT/pages/spring-cloud-commons/application-context-services.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ For instance, a `DataSource` can have its `maxPoolSize` changed at runtime (the
173173
Re-binding `@ConfigurationProperties` does not cover another large class of use cases, where you need more control over the refresh and where you need a change to be atomic over the whole `ApplicationContext`.
174174
To address those concerns, we have `@RefreshScope`.
175175

176+
NOTE: Java Records annotated with `@ConfigurationProperties` cannot be refreshed.
177+
176178
[[refresh-scope]]
177179
== Refresh Scope
178180

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 | | 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.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}
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/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"@antora/collector-extension": "1.0.0-alpha.3",
66
"@asciidoctor/tabs": "1.0.0-beta.6",
77
"@springio/antora-extensions": "1.11.1",
8-
"@springio/asciidoctor-extensions": "1.0.0-alpha.10"
8+
"@springio/asciidoctor-extensions": "1.0.0-alpha.13"
99
}
1010
}

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.1.5-SNAPSHOT</version>
11+
<version>4.2.0-SNAPSHOT</version>
1212
</parent>
1313
<packaging>jar</packaging>
1414
<name>Spring Cloud Commons Docs</name>

docs/src/main/asciidoc/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
= Building
44
:page-section-summary-toc: 1
55

6-
include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/main/docs/src/main/asciidoc/building.adoc[]
6+
include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/main/docs/modules/ROOT/partials/building.adoc[]
77

88
[[contributing]]
99
= Contributing
1010
:page-section-summary-toc: 1
1111

12-
include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/main/docs/src/main/asciidoc/contributing.adoc[]
12+
include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/main/docs/modules/ROOT/partials/contributing.adoc[]

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.1.5-SNAPSHOT</version>
8+
<version>4.2.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.1.4-SNAPSHOT</version>
16+
<version>4.2.0-SNAPSHOT</version>
1717
<relativePath/> <!-- lookup parent from repository -->
1818
</parent>
1919
<scm>

spring-cloud-commons-dependencies/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
<parent>
77
<artifactId>spring-cloud-dependencies-parent</artifactId>
88
<groupId>org.springframework.cloud</groupId>
9-
<version>4.1.4-SNAPSHOT</version>
9+
<version>4.2.0-SNAPSHOT</version>
1010
<relativePath/>
1111
</parent>
1212
<artifactId>spring-cloud-commons-dependencies</artifactId>
13-
<version>4.1.5-SNAPSHOT</version>
13+
<version>4.2.0-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515
<name>spring-cloud-commons-dependencies</name>
1616
<description>Spring Cloud Commons Dependencies</description>
1717
<properties>
18-
<spring-security-rsa.version>1.1.3</spring-security-rsa.version>
18+
<spring-security-rsa.version>1.1.5</spring-security-rsa.version>
1919
</properties>
2020
<dependencyManagement>
2121
<dependencies>

0 commit comments

Comments
 (0)