Skip to content

Commit 858e1ed

Browse files
committed
chore: merge 2.7.10 and 2.7.x-HEAD
1 parent fece5d8 commit 858e1ed

File tree

389 files changed

+7653
-5926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+7653
-5926
lines changed

.github/ISSUE_TEMPLATE/spring-boot-admin-bug.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,45 @@ assignees: ''
77

88
---
99

10+
## Spring Boot Admin Server information
11+
12+
- **Version**:
13+
<!-- Please specify the version of Spring Boot Admin server here -->
14+
15+
- **Spring Boot version**:
16+
<!-- Please specify the underlying Spring Boot version -->
17+
18+
- **Configured Security**:
19+
<!-- basic auth, LDAP, client-certificate, ... -->
20+
21+
- **Webflux or Servlet application**:
22+
<!-- Please specify whether your Admin server is as webflux or servlet application ... -->
23+
24+
## Client information
25+
26+
- **Spring Boot versions**:
27+
<!-- Please specify the Spring Boot version of the monitored instance(s) -->
28+
29+
- **Used discovery mechanism**:
30+
<!-- self registration, kubernetes, eureka, ... -->
31+
32+
- **Webflux or Servlet application**:
33+
<!-- Please specify whether your client application is as webflux or servlet application ... -->
34+
35+
## Description
36+
37+
38+
1039
<!--
1140
Thanks for raising a Spring Boot Admin issue. Please take the time to review the following
1241
categories as some of them do not apply here.
1342
1443
** Question **
15-
STOP!! Please ask questions about how to use something, or to understand why something isn't
44+
🛑 STOP!! Please ask questions about how to use something, or to understand why something isn't
1645
working as you expect it to, on Stack Overflow using the spring-boot-admin tag.
1746
1847
** Bug report **
19-
Please provide details of the problem, including the version of Spring Boot Admin and Spring Boot that you are using. If possible, please provide a test case or sample application that reproduces
48+
🪳 Please provide details of the problem, including the version of Spring Boot Admin and Spring Boot that you are using. If possible, please provide a test case or sample application that reproduces
2049
the problem. This makes it much easier for us to diagnose the problem and to verify that
2150
we have fixed it.
2251
-->

.github/workflows/build-feature.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest]
15+
os: [ubuntu-latest]
1616

1717
runs-on: ${{ matrix.os }}
1818
steps:
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '8'
2727

2828
- name: Cache local Maven repository
29-
uses: actions/cache@v2.1.7
29+
uses: actions/cache@v3.0.11
3030
env:
3131
cache-name: cache-mvn
3232
with:
@@ -38,7 +38,7 @@ jobs:
3838
${{ runner.os }}-
3939
4040
- name: Cache node modules
41-
uses: actions/cache@v2
41+
uses: actions/cache@v3
4242
env:
4343
cache-name: cache-node-modules
4444
with:
@@ -54,6 +54,6 @@ jobs:
5454
mvn -B spring-javaformat:apply --no-transfer-progress
5555
mvn -B verify -P coverage --no-transfer-progress -D maven.javadoc.skip=true
5656
57-
- uses: codecov/codecov-action@v2
57+
- uses: codecov/codecov-action@v3
5858
with:
5959
files: "'*/jacoco.xml'"

.github/workflows/build-main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, windows-latest]
14+
os: [ubuntu-latest]
1515

1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -25,7 +25,7 @@ jobs:
2525
java-version: '8'
2626

2727
- name: Cache local Maven repository
28-
uses: actions/cache@v2.1.7
28+
uses: actions/cache@v3.0.11
2929
env:
3030
cache-name: cache-mvn
3131
with:
@@ -37,7 +37,7 @@ jobs:
3737
${{ runner.os }}-
3838
3939
- name: Cache node modules
40-
uses: actions/cache@v2
40+
uses: actions/cache@v3
4141
env:
4242
cache-name: cache-node-modules
4343
with:
@@ -53,7 +53,7 @@ jobs:
5353
mvn -B spring-javaformat:apply --no-transfer-progress
5454
mvn -B verify -P coverage --no-transfer-progress -D maven.javadoc.skip=true
5555
56-
- uses: codecov/codecov-action@v2
56+
- uses: codecov/codecov-action@v3
5757
with:
5858
files: "'*/jacoco.xml'"
5959

@@ -71,7 +71,7 @@ jobs:
7171
java-version: '8'
7272

7373
- name: Cache local Maven repository
74-
uses: actions/cache@v2.1.7
74+
uses: actions/cache@v3.0.11
7575
env:
7676
cache-name: cache-mvn
7777
with:
@@ -83,7 +83,7 @@ jobs:
8383
${{ runner.os }}-
8484
8585
- name: Cache node modules
86-
uses: actions/cache@v2
86+
uses: actions/cache@v3
8787
env:
8888
cache-name: cache-node-modules
8989
with:
@@ -107,7 +107,7 @@ jobs:
107107
run: echo ${{ steps.project.outputs.version }}
108108

109109
- name: Deploy Asciidoc docs output to GitHub Pages
110-
uses: JamesIves/github-pages-deploy-action@v4.3.3
110+
uses: JamesIves/github-pages-deploy-action@v4.4.1
111111
with:
112112
branch: gh-pages # The branch the action should deploy to.
113113
folder: spring-boot-admin-docs/target/generated-docs # The folder the action should deploy.

.github/workflows/build-pullrequest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
strategy:
99
matrix:
10-
os: [ubuntu-latest, windows-latest]
10+
os: [ubuntu-latest]
1111

1212
runs-on: ${{ matrix.os }}
1313
steps:
@@ -21,7 +21,7 @@ jobs:
2121
java-version: '8'
2222

2323
- name: Cache local Maven repository
24-
uses: actions/cache@v2.1.7
24+
uses: actions/cache@v3.0.11
2525
env:
2626
cache-name: cache-mvn
2727
with:
@@ -33,7 +33,7 @@ jobs:
3333
${{ runner.os }}-
3434
3535
- name: Cache node modules
36-
uses: actions/cache@v2
36+
uses: actions/cache@v3
3737
env:
3838
cache-name: cache-node-modules
3939
with:
@@ -49,6 +49,6 @@ jobs:
4949
mvn -B spring-javaformat:apply --no-transfer-progress
5050
mvn -B verify -P coverage --no-transfer-progress -D maven.javadoc.skip=true
5151
52-
- uses: codecov/codecov-action@v2
52+
- uses: codecov/codecov-action@v3
5353
with:
5454
files: "'*/jacoco.xml'"

.github/workflows/release-to-maven-central.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
gpg-passphrase: MAVEN_GPG_PASSPHRASE
2929

3030
- name: Cache local Maven repository
31-
uses: actions/cache@v2.1.7
31+
uses: actions/cache@v3.0.11
3232
env:
3333
cache-name: cache-mvn
3434
with:
@@ -40,7 +40,7 @@ jobs:
4040
${{ runner.os }}-
4141
4242
- name: Cache node modules
43-
uses: actions/cache@v2
43+
uses: actions/cache@v3
4444
env:
4545
cache-name: cache-node-modules
4646
with:
@@ -60,7 +60,7 @@ jobs:
6060
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
6161

6262
- name: Deploy Asciidoc docs output to GitHub Pages
63-
uses: JamesIves/github-pages-deploy-action@v4.3.3
63+
uses: JamesIves/github-pages-deploy-action@v4.4.1
6464
with:
6565
branch: gh-pages # The branch the action should deploy to.
6666
folder: spring-boot-admin-docs/target/generated-docs # The folder the action should deploy.

.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ Spring, Spring Boot and Spring Cloud are trademarks of [Pivotal Software, Inc.](
102102
You can access snapshot builds from the sonatype snapshot repository by adding the following to your `repositories`:
103103
```xml
104104
<repository>
105-
<id>sonatype-nexus-snapshots</id>
106-
<name>Sonatype Nexus Snapshots</name>
107-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
105+
<id>sba-snapshot</id>
106+
<name>Spring Boot Admin Snapshots</name>
107+
<url>https://maven.pkg.github.com/codecentric/spring-boot-admin</url>
108108
<snapshots>
109109
<enabled>true</enabled>
110110
</snapshots>

pom.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<description>Spring Boot Admin</description>
2727
<url>https://github.com/codecentric/spring-boot-admin/</url>
2828
<properties>
29-
<revision>2.7.0-SNAPSHOT</revision>
29+
<revision>2.7.15-SNAPSHOT</revision>
3030
<java.version>1.8</java.version>
3131

3232
<maven.compiler.source>${java.version}</maven.compiler.source>
@@ -38,40 +38,40 @@
3838
<!-- used dependencies versions -->
3939
<spring-boot.version>2.7.18</spring-boot.version>
4040
<spring-cloud.version>2021.0.8</spring-cloud.version>
41-
<wiremock.version>2.33.2</wiremock.version>
42-
<hazelcast-tests.version>5.1.1</hazelcast-tests.version>
41+
<wiremock.version>2.34.0</wiremock.version>
42+
<hazelcast-tests.version>5.1.3</hazelcast-tests.version>
4343
<findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
44-
<awaitility.version>4.1.1</awaitility.version>
45-
<testcontainers.version>1.16.3</testcontainers.version>
46-
<jetty.version>9.4.44.v20210927</jetty.version>
44+
<awaitility.version>4.2.0</awaitility.version>
45+
<testcontainers.version>1.17.5</testcontainers.version>
46+
<jetty.version>9.4.49.v20220914</jetty.version>
4747

4848

4949
<!-- plugin versions -->
5050
<build-helper-maven-plugin.version>3.3.0</build-helper-maven-plugin.version>
5151
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
52-
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
53-
<maven-site-plugin.version>3.10.0</maven-site-plugin.version>
54-
<maven-dependency-plugin.version>3.2.0</maven-dependency-plugin.version>
55-
<maven-deploy-plugin.version>3.0.0-M2</maven-deploy-plugin.version>
56-
<maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version>
57-
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
58-
<maven-failsafe-plugin.version>3.0.0-M5</maven-failsafe-plugin.version>
59-
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
60-
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
61-
<maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version>
62-
<maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
52+
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
53+
<maven-site-plugin.version>3.12.1</maven-site-plugin.version>
54+
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
55+
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
56+
<maven-enforcer-plugin.version>3.1.0</maven-enforcer-plugin.version>
57+
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
58+
<maven-failsafe-plugin.version>3.0.0-M7</maven-failsafe-plugin.version>
59+
<maven-install-plugin.version>3.0.1</maven-install-plugin.version>
60+
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
61+
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
62+
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
6363
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
6464
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
6565
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
6666
<frontend-maven-plugin.version>1.12.1</frontend-maven-plugin.version>
67-
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
68-
<asciidoctor-maven-plugin.version>2.2.1</asciidoctor-maven-plugin.version>
67+
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
68+
<asciidoctor-maven-plugin.version>2.2.2</asciidoctor-maven-plugin.version>
6969
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
70-
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
71-
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
70+
<flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
71+
<maven-checkstyle-plugin.version>3.2.0</maven-checkstyle-plugin.version>
7272
<checkstyle.version>9.3</checkstyle.version>
7373
<spring-javaformat-checkstyle.version>0.0.29</spring-javaformat-checkstyle.version>
74-
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
74+
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
7575
<node.version>v16.13.2</node.version>
7676
<npm.version>8.3.2</npm.version>
7777
</properties>

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"extends": [
33
"config:base"
4+
],
5+
"packageRules": [
6+
{
7+
"description": "Automatically merge minor and patch-level updates when checks pass, creates a PR otherwise",
8+
"matchUpdateTypes": ["minor", "patch", "digest"],
9+
"automerge": true,
10+
"automergeType": "branch"
11+
}
412
]
513
}

spring-boot-admin-client/src/main/java/de/codecentric/boot/admin/client/config/ClientProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)