Skip to content

Commit dd24a07

Browse files
committed
2 parents eeeb62c + a33086e commit dd24a07

File tree

28 files changed

+595
-960
lines changed

28 files changed

+595
-960
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ updates:
2020
- dependency-name: "*"
2121
update-types:
2222
- version-update:semver-major
23+
- version-update:semver-minor
2324
- package-ecosystem: maven
2425
directory: /
2526
schedule:
@@ -31,6 +32,17 @@ updates:
3132
update-types:
3233
- version-update:semver-major
3334
- version-update:semver-minor
35+
- package-ecosystem: maven
36+
directory: /
37+
schedule:
38+
interval: daily
39+
target-branch: 3.2.x
40+
ignore:
41+
# only upgrade by minor or patch
42+
- dependency-name: "*"
43+
update-types:
44+
- version-update:semver-major
45+
- version-update:semver-minor
3446
- package-ecosystem: npm
3547
target-branch: docs-build
3648
directory: /
@@ -46,3 +58,8 @@ updates:
4658
directory: /docs
4759
schedule:
4860
interval: weekly
61+
- package-ecosystem: npm
62+
target-branch: 3.2.x
63+
directory: /docs
64+
schedule:
65+
interval: weekly

.github/workflows/composites/maven-build-with-dry-run-for-tests/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
shell: bash
99
run: |
1010
./mvnw install -B \
11-
-Dskip.build.image=true \
11+
-Dspring-boot.build-image.skip=true \
1212
-DskipTests -DskipITs \
1313
-T 1C -U -q
1414

.github/workflows/composites/pre-test-actions/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
- name: build project
2525
shell: bash
2626
run: |
27-
./mvnw clean install -Dskip.build.image=true -DskipITs -DskipTests -T1C -U -B -q
27+
./mvnw clean install -Dspring-boot.build-image.skip=true -DskipITs -DskipTests -T1C -U -B -q
2828
2929
- name: build controllers project
3030
uses: ./.github/workflows/composites/build-controllers-project

.github/workflows/composites/run-and-save-test-times-when-cache-missing/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
-Dmaven.wagon.http.pool=false \
4848
-Dmaven.wagon.http.retryHandler.class=standard \
4949
-Dmaven.wagon.http.retryHandler.count=3 \
50-
-Dskip.build.image=true
50+
-Dspring-boot.build-image.skip=true
5151
5252
touch /tmp/test_times_${{ env.CURRENT_INDEX }}.txt
5353

.github/workflows/composites/run-and-save-test-times-when-cache-present/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ runs:
156156
-Dmaven.wagon.http.pool=false \
157157
-Dmaven.wagon.http.retryHandler.class=standard \
158158
-Dmaven.wagon.http.retryHandler.count=3 \
159-
-Dskip.build.image=true
159+
-Dspring-boot.build-image.skip=true
160160

161161
touch /tmp/test_times_${{ env.CURRENT_INDEX }}.txt
162162

spring-cloud-kubernetes-controllers/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
<executions>
3434
<execution>
3535
<id>build-image</id>
36-
<configuration>
37-
<skip>${skip.build.image}</skip>
38-
</configuration>
3936
<phase>package</phase>
4037
<goals>
4138
<goal>build-image-no-fork</goal>

spring-cloud-kubernetes-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
<name>Spring Cloud Kubernetes :: Dependencies</name>
3333
<description>Spring Cloud Kubernetes Dependencies</description>
3434
<properties>
35-
<kubernetes-fabric8-client.version>6.13.4</kubernetes-fabric8-client.version>
35+
<kubernetes-fabric8-client.version>6.13.5</kubernetes-fabric8-client.version>
3636
<kubernetes-native-client.version>19.0.2</kubernetes-native-client.version>
37-
<wiremock.version>3.4.2</wiremock.version>
37+
<wiremock.version>3.9.1</wiremock.version>
3838
</properties>
3939
<dependencyManagement>
4040
<dependencies>

spring-cloud-kubernetes-fabric8-autoconfig/src/test/java/org/springframework/cloud/kubernetes/fabric8/Fabric8UserAgentDefaultConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Fabric8UserAgentDefaultConfigurationTests {
3737
@Test
3838
void testUserAgent() {
3939
String userAgent = client.getConfiguration().getUserAgent();
40-
assertThat(userAgent).isEqualTo("fabric8-kubernetes-client/6.13.4");
40+
assertThat(userAgent).isEqualTo("fabric8-kubernetes-client/6.13.5");
4141
}
4242

4343
}

spring-cloud-kubernetes-fabric8-leader/src/test/java/org/springframework/cloud/kubernetes/fabric8/leader/Fabric8LeaderInitiatorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ void beforeEach() {
6060
@AfterEach
6161
void afterEach() {
6262
leaderInitiator.stop();
63+
Mockito.reset(mockFabric8LeadershipController, mockFabric8LeaderRecordWatcher, mockFabric8PodReadinessWatcher);
6364
}
6465

6566
@Test

spring-cloud-kubernetes-integration-tests/README

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ you must name the image with the same name as the module. For example:
1313
<executions>
1414
<execution>
1515
<id>build-image</id>
16-
<configuration>
17-
<skip>${skip.build.image}</skip>
18-
</configuration>
1916
<phase>package</phase>
2017
<goals>
2118
<goal>build-image-no-fork</goal>
@@ -36,7 +33,3 @@ Notice this line:
3633
<imageName>docker.io/springcloud/${project.artifactId}:${project.version}</imageName>
3734

3835
You must follow the same convention.
39-
40-
One more important part in this configuration is : "<skip>${skip.build.image}</skip>".
41-
We use this setting in the build pipeline where in some stages we skip the image build,
42-
only to have it build in some latter ones.

0 commit comments

Comments
 (0)