-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into chore/documentation
# By renovate[bot] (111) and others # Via GitHub * origin/master: (127 commits) fix(deps): update dependency iso8601-duration to v2 (#2552) chore(deps): update storybook monorepo to v7.0.21 (#2546) chore(deps): update dependency org.apache.maven.plugins:maven-war-plugin to v3.4.0 (#2554) chore(deps): update dependency sass to v1.63.4 (#2549) chore(deps): update dependency typescript to v5.1.3 (#2550) chore(deps): update dependency jsdom to v22.1.0 (#2548) chore(deps): update dependency eslint-plugin-vue to v9.14.1 (#2547) chore(deps): update dependency rollup-plugin-visualizer to v5.9.2 (#2545) chore(deps): update dependency @vue/eslint-config-typescript to v11.0.3 (#2543) chore(deps): update dependency prettier to v2.8.8 (#2544) chore(deps): update dependency msw to v1.2.2 (#2541) fix(deps): update dependency com.hazelcast:hazelcast to v5.3.1 (#2540) chore(deps): update dependency @vue-macros/reactivity-transform to v0.3.10 (#2539) chore(deps): update babel monorepo to v7.22.5 (#2536) chore(deps): update storybook monorepo to v7.0.20 (#2534) chore(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.1.2 (#2532) chore(deps): update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.5 (#2531) chore(deps): update dependency vitest to v0.32.0 (#2533) chore(deps): update dependency org.apache.maven.plugins:maven-failsafe-plugin to v3.1.2 (#2530) chore(deps): update dependency org.codehaus.mojo:versions-maven-plugin to v2.16.0 (#2529) ... # Conflicts: # pom.xml # spring-boot-admin-docs/src/site/src/content/adocs/en/client/customize_ui.adoc
- Loading branch information
Showing
621 changed files
with
17,837 additions
and
51,869 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ jobs: | |
run: echo ${{ steps.project.outputs.version }} | ||
|
||
- name: Deploy Asciidoc docs output to GitHub Pages | ||
uses: JamesIves/[email protected].1 | ||
uses: JamesIves/[email protected].2 | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: spring-boot-admin-docs/target/generated-docs # The folder the action should deploy. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,15 +66,15 @@ jobs: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | ||
|
||
- name: Deploy Asciidoc docs output to GitHub Pages | ||
uses: JamesIves/[email protected].1 | ||
uses: JamesIves/[email protected].2 | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: spring-boot-admin-docs/target/generated-docs # The folder the action should deploy. | ||
target-folder: ${{ github.event.inputs.releaseversion }} | ||
clean: true # Automatically remove deleted files from the deploy branch | ||
|
||
- name: Deploy Asciidoc docs output to GitHub Pages | ||
uses: JamesIves/[email protected].1 | ||
uses: JamesIves/[email protected].2 | ||
if: github.event.inputs.copyDocsToCurrent == 'true' | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-admin-client/src/main/java/de/codecentric/boot/admin/client/config/ClientProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
...dmin-client/src/main/java/de/codecentric/boot/admin/client/config/ClientRuntimeHints.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2014-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package de.codecentric.boot.admin.client.config; | ||
|
||
import lombok.SneakyThrows; | ||
import org.springframework.aot.hint.ExecutableMode; | ||
import org.springframework.aot.hint.MemberCategory; | ||
import org.springframework.aot.hint.RuntimeHints; | ||
import org.springframework.aot.hint.RuntimeHintsRegistrar; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
import de.codecentric.boot.admin.client.registration.Application; | ||
|
||
@Configuration | ||
public class ClientRuntimeHints implements RuntimeHintsRegistrar { | ||
|
||
@Override | ||
public void registerHints(RuntimeHints hints, ClassLoader classLoader) { | ||
registerReflectionHints(hints); | ||
} | ||
|
||
@SneakyThrows | ||
private static void registerReflectionHints(RuntimeHints hints) { | ||
hints.reflection() | ||
.registerType(Application.Builder.class, MemberCategory.INVOKE_PUBLIC_METHODS, | ||
MemberCategory.INVOKE_PUBLIC_CONSTRUCTORS) | ||
.registerType(Application.class, MemberCategory.INVOKE_PUBLIC_METHODS, | ||
MemberCategory.INVOKE_PUBLIC_CONSTRUCTORS) | ||
.registerConstructor(Application.Builder.class.getDeclaredConstructor(), ExecutableMode.INVOKE) | ||
.registerMethod(Application.Builder.class.getMethod("build"), ExecutableMode.INVOKE) | ||
.registerMethod(Application.class.getMethod("builder"), ExecutableMode.INVOKE); | ||
} | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
.../main/java/de/codecentric/boot/admin/client/config/CloudFoundryApplicationProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...dmin-client/src/main/java/de/codecentric/boot/admin/client/config/InstanceProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...t-admin-client/src/main/java/de/codecentric/boot/admin/client/config/ServiceHostType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../java/de/codecentric/boot/admin/client/config/SpringBootAdminClientAutoConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ecentric/boot/admin/client/config/SpringBootAdminClientCloudFoundryAutoConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...n/java/de/codecentric/boot/admin/client/config/SpringBootAdminClientEnabledCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...ain/java/de/codecentric/boot/admin/client/config/SpringNativeClientAutoConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright 2014-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package de.codecentric.boot.admin.client.config; | ||
|
||
import org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.AutoConfigureAfter; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; | ||
import org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration; | ||
import org.springframework.context.annotation.Conditional; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.ImportRuntimeHints; | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
@ConditionalOnWebApplication | ||
@Conditional(SpringBootAdminClientEnabledCondition.class) | ||
@AutoConfigureAfter({ WebEndpointAutoConfiguration.class, RestTemplateAutoConfiguration.class, | ||
WebClientAutoConfiguration.class }) | ||
@ImportRuntimeHints({ ClientRuntimeHints.class }) | ||
public class SpringNativeClientAutoConfiguration { | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...boot-admin-client/src/main/java/de/codecentric/boot/admin/client/config/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...admin-client/src/main/java/de/codecentric/boot/admin/client/registration/Application.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lient/src/main/java/de/codecentric/boot/admin/client/registration/ApplicationFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...t/src/main/java/de/codecentric/boot/admin/client/registration/ApplicationRegistrator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...c/main/java/de/codecentric/boot/admin/client/registration/BlockingRegistrationClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...in/java/de/codecentric/boot/admin/client/registration/CloudFoundryApplicationFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rc/main/java/de/codecentric/boot/admin/client/registration/DefaultApplicationFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ain/java/de/codecentric/boot/admin/client/registration/DefaultApplicationRegistrator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...c/main/java/de/codecentric/boot/admin/client/registration/ReactiveApplicationFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...c/main/java/de/codecentric/boot/admin/client/registration/ReactiveRegistrationClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...n/java/de/codecentric/boot/admin/client/registration/RegistrationApplicationListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lient/src/main/java/de/codecentric/boot/admin/client/registration/RegistrationClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rc/main/java/de/codecentric/boot/admin/client/registration/ServletApplicationFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../codecentric/boot/admin/client/registration/metadata/CloudFoundryMetadataContributor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.