Skip to content

Commit 3322cfc

Browse files
committed
Merge remote-tracking branch 'origin/4.1.x' into 4.1.x
2 parents e01fa19 + 815f34e commit 3322cfc

File tree

22 files changed

+53
-92
lines changed

22 files changed

+53
-92
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

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Build with Maven
3232
run: ./mvnw -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
3333
- name: Publish Test Report
34-
uses: mikepenz/action-junit-report@v4
34+
uses: mikepenz/action-junit-report@v5
3535
if: always() # always run even if the previous step fails
3636
with:
3737
report_paths: '**/surefire-reports/TEST-*.xml'

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ nav:
66
ext:
77
collector:
88
run:
9-
command: ./mvnw --no-transfer-progress -B process-resources -Pdocs -pl docs -Dantora-maven-plugin.phase=none -Dgenerate-docs.phase=none -Dgenerate-readme.phase=none -Dgenerate-cloud-resources.phase=none -Dmaven-dependency-plugin-for-docs.phase=none -Dmaven-dependency-plugin-for-docs-classes.phase=none -DskipTests
9+
command: ./mvnw --no-transfer-progress -B process-resources -Pdocs -pl docs -Dantora-maven-plugin.phase=none -Dgenerate-docs.phase=none -Dgenerate-readme.phase=none -Dgenerate-cloud-resources.phase=none -Dmaven-dependency-plugin-for-docs.phase=none -Dmaven-dependency-plugin-for-docs-classes.phase=none -DskipTests -DdisableConfigurationProperties
1010
local: true
1111
scan:
1212
dir: ./target/classes/antora-resources/

docs/modules/ROOT/pages/spring-cloud-circuitbreaker.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ The `Customizer` interface has a single method (called `customize`) that takes t
8585
For detailed information on how to customize a given implementation see
8686
the following documentation:
8787

88-
* link:../../../../spring-cloud-circuitbreaker/current/reference/html/spring-cloud-circuitbreaker.html#configuring-resilience4j-circuit-breakers[Resilience4J]
88+
* link:../../../../spring-cloud-circuitbreaker/reference/spring-cloud-circuitbreaker-resilience4j.html[Resilience4J]
8989
* link:https://github.com/alibaba/spring-cloud-alibaba/blob/master/spring-cloud-alibaba-docs/src/main/asciidoc/circuitbreaker-sentinel.adoc#circuit-breaker-spring-cloud-circuit-breaker-with-sentinel--configuring-sentinel-circuit-breakers[Sentinel]
90-
* link:../../../../../spring-cloud-circuitbreaker/docs/current/reference/html/spring-cloud-circuitbreaker.html#configuring-spring-retry-circuit-breakers[Spring Retry]
90+
* link:../../../../../spring-cloud-circuitbreaker/reference/spring-cloud-circuitbreaker-spring-retry.html[Spring Retry]
9191

9292
Some `CircuitBreaker` implementations such as `Resilience4JCircuitBreaker` call `customize` method every time `CircuitBreaker#run` is called.
9393
It can be inefficient. In that case, you can use `CircuitBreaker#once` method. It is useful where calling `customize` many times doesn't make sense,

docs/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"dependencies": {
3-
"antora": "3.2.0-alpha.6",
4-
"@antora/atlas-extension": "1.0.0-alpha.2",
5-
"@antora/collector-extension": "1.0.0-beta.3",
6-
"@asciidoctor/tabs": "1.0.0-beta.6",
7-
"@springio/antora-extensions": "1.14.2",
8-
"@springio/asciidoctor-extensions": "1.0.0-alpha.14"
9-
}
2+
"dependencies": {
3+
"antora": "3.2.0-alpha.8",
4+
"@antora/atlas-extension": "1.0.0-alpha.2",
5+
"@antora/collector-extension": "1.0.1",
6+
"@asciidoctor/tabs": "1.0.0-beta.6",
7+
"@springio/antora-extensions": "1.14.4",
8+
"@springio/asciidoctor-extensions": "1.0.0-alpha.17"
9+
}
1010
}

docs/pom.xml

Lines changed: 19 additions & 11 deletions
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.1.6-SNAPSHOT</version>
1212
</parent>
1313
<packaging>jar</packaging>
1414
<name>Spring Cloud Commons Docs</name>
@@ -26,20 +26,28 @@
2626
<micrometer-docs-generator.inclusionPattern>.*</micrometer-docs-generator.inclusionPattern>
2727
<micrometer-docs-generator.outputPath>${maven.multiModuleProjectDirectory}/docs/modules/ROOT/partials/</micrometer-docs-generator.outputPath>
2828
</properties>
29-
<dependencies>
30-
<dependency>
31-
<groupId>${project.groupId}</groupId>
32-
<artifactId>spring-cloud-starter</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>${project.groupId}</groupId>
36-
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
37-
</dependency>
38-
</dependencies>
3929
<build>
4030
<sourceDirectory>src/main/asciidoc</sourceDirectory>
4131
</build>
4232
<profiles>
33+
<profile>
34+
<id>enable-configuration-properties</id>
35+
<activation>
36+
<property>
37+
<name>!disableConfigurationProperties</name>
38+
</property>
39+
</activation>
40+
<dependencies>
41+
<dependency>
42+
<groupId>${project.groupId}</groupId>
43+
<artifactId>spring-cloud-starter</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>${project.groupId}</groupId>
47+
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
48+
</dependency>
49+
</dependencies>
50+
</profile>
4351
<profile>
4452
<id>docs</id>
4553
<build>

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.1.6-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.1.6-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.1.4-SNAPSHOT</version>
9+
<version>4.1.6-SNAPSHOT</version>
1010
<relativePath/>
1111
</parent>
1212
<artifactId>spring-cloud-commons-dependencies</artifactId>
13-
<version>4.1.5-SNAPSHOT</version>
13+
<version>4.1.6-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.1.5-SNAPSHOT</version>
10+
<version>4.1.6-SNAPSHOT</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313
<artifactId>spring-cloud-commons</artifactId>

spring-cloud-context-integration-tests/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.1.5-SNAPSHOT</version>
10+
<version>4.1.6-SNAPSHOT</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313
<artifactId>spring-cloud-context-integration-tests</artifactId>

0 commit comments

Comments
 (0)