From dd3183b3a48cb8d6010261b56f102e28e8d45008 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 20 Oct 2025 09:09:26 +0800 Subject: [PATCH 1/6] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56e75284..645abf02 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ - 0.1.3-SNAPSHOT + 1.0.0-SNAPSHOT From 194380fcf285839123daf92be4c8ea1b80366b24 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 27 Oct 2025 15:12:41 +0800 Subject: [PATCH 2/6] Update parent pom version to 0.2.2 Bump the microsphere-build parent POM version from 0.2.1 to 0.2.2 to use the latest build configuration and dependencies. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 645abf02..d091d7d4 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.github.microsphere-projects microsphere-build - 0.2.1 + 0.2.2 4.0.0 From f8703db6a121855eba96bf52b2cd65623fcfddcc Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 27 Oct 2025 15:13:37 +0800 Subject: [PATCH 3/6] Refactor import and usage of RANDOM_PORT in test Replaces direct enum reference with static import for RANDOM_PORT in ActuatorEndpointsAutoConfigurationTest to improve code readability and consistency. --- .../autoconfigure/ActuatorEndpointsAutoConfigurationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorEndpointsAutoConfigurationTest.java b/microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorEndpointsAutoConfigurationTest.java index de99a64b..29617e0b 100644 --- a/microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorEndpointsAutoConfigurationTest.java +++ b/microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorEndpointsAutoConfigurationTest.java @@ -18,6 +18,7 @@ import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.springframework.boot.WebApplicationType.SERVLET; +import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; /** * {@link ActuatorEndpointsAutoConfiguration} Test @@ -27,7 +28,7 @@ * @since 1.0.0 */ @SpringBootTest( - webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, + webEnvironment = RANDOM_PORT, classes = { ActuatorEndpointsAutoConfigurationTest.class, }, From 38de34f7ff8ae5304cbcc808de690d973fd2e367 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 27 Oct 2025 15:14:57 +0800 Subject: [PATCH 4/6] Bump microsphere-spring version to 0.1.4 Updated the microsphere-spring.version property in the parent POM from 0.1.3 to 0.1.4 to use the latest release. --- microsphere-spring-boot-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsphere-spring-boot-parent/pom.xml b/microsphere-spring-boot-parent/pom.xml index e29ef893..bddbdb26 100644 --- a/microsphere-spring-boot-parent/pom.xml +++ b/microsphere-spring-boot-parent/pom.xml @@ -19,7 +19,7 @@ Microsphere Spring Boot Parent - 0.1.3 + 0.1.4 1.7.2 From c5b11792c318460e68683f7fa8e7bef7334ff817 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 27 Oct 2025 15:16:38 +0800 Subject: [PATCH 5/6] Update project version to 0.1.4-SNAPSHOT Changed the property in pom.xml from 1.0.0-SNAPSHOT to 0.1.4-SNAPSHOT to reflect the new development version. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d091d7d4..96cc76ad 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ - 1.0.0-SNAPSHOT + 0.1.4-SNAPSHOT From ad6173b65543982329852159d1846e0fb6970144 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Mon, 27 Oct 2025 15:21:42 +0800 Subject: [PATCH 6/6] Update latest version numbers in README Bumped the displayed latest versions for branches 0.2.x and 0.1.x in the README to 0.2.4 and 0.1.4, respectively. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 02340a02..38915387 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,8 @@ pom.xml: | **Branches** | **Purpose** | **Latest Version** | |--------------|-------------------------------------------|--------------------| -| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.2 | -| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.2 | +| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.4 | +| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.4 | Then add the specific modules you need: