From 25e1fad266c8fb91374018d562942b57fce30a5d Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:26:51 +0800 Subject: [PATCH 1/6] Bump project version to 0.2.5-SNAPSHOT Updated the revision property in pom.xml to prepare for the next development iteration. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9ea2e81..f0424f8 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ - 0.2.4-SNAPSHOT + 0.2.5-SNAPSHOT 17 From ede3b41006eaf4c89097769e8385c834c9cb2054 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:29:36 +0800 Subject: [PATCH 2/6] Update microsphere-spring-boot BOM version to 0.2.5 Bumps the microsphere-spring-boot.version property from 0.2.4 to 0.2.5 in the parent POM to use the latest BOM release. --- microsphere-spring-cloud-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsphere-spring-cloud-parent/pom.xml b/microsphere-spring-cloud-parent/pom.xml index 97bad6b..84b562e 100644 --- a/microsphere-spring-cloud-parent/pom.xml +++ b/microsphere-spring-cloud-parent/pom.xml @@ -20,7 +20,7 @@ - 0.2.4 + 0.2.5 2.0.1 From 4dd31d7c8fa714761c580d838cb283b3da60d4a4 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:31:55 +0800 Subject: [PATCH 3/6] Remove distribution and repository config from pom.xml Deleted the and sections from pom.xml, likely to simplify project configuration or move repository management elsewhere. --- pom.xml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/pom.xml b/pom.xml index f0424f8..011b36a 100644 --- a/pom.xml +++ b/pom.xml @@ -63,28 +63,4 @@ microsphere-spring-cloud-openfeign - - - ossrh - https://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - snapshot - - true - - - false - - https://s01.oss.sonatype.org/content/repositories/snapshots - - - \ No newline at end of file From a036893520bfbbc7c9c25a9cc1f8e89598e3977a Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:32:41 +0800 Subject: [PATCH 4/6] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1cd8cbd..b9c34fe 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,7 @@ [![Codecov](https://codecov.io/gh/microsphere-projects/microsphere-spring-cloud/branch/dev/graph/badge.svg)](https://app.codecov.io/gh/microsphere-projects/microsphere-spring-cloud) ![Maven](https://img.shields.io/maven-central/v/io.github.microsphere-projects/microsphere-spring-cloud.svg) ![License](https://img.shields.io/github/license/microsphere-projects/microsphere-spring-cloud.svg) -[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/microsphere-projects/microsphere-spring-cloud.svg)](http://isitmaintained.com/project/microsphere-projects/microsphere-spring-cloud "Average time to resolve an issue") -[![Percentage of issues still open](http://isitmaintained.com/badge/open/microsphere-projects/microsphere-spring-cloud.svg)](http://isitmaintained.com/project/microsphere-projects/microsphere-spring-cloud "Percentage of issues still open") + Microsphere Spring Cloud is an extension library for Spring Cloud that enhances and optimizes its capabilities, particularly focused on providing dynamic runtime configuration changes without application restarts. It's designed to From 548048a6cfbe9f5e1328a911cefb26b3e308aa74 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:34:57 +0800 Subject: [PATCH 5/6] Update latest version numbers in README Bumped the latest version numbers for branches 0.2.x and 0.1.x in the README to reflect recent releases. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9c34fe..b4ce298 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ pom.xml: | **Branches** | **Purpose** | **Latest Version** | |--------------|--------------------------------------------------|--------------------| -| **0.2.x** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.4 | -| **0.1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.4 | +| **0.2.x** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.5 | +| **0.1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.5 | Then add the specific modules you need: From f5d51e5a10b575a0ed1060442fc294e5d3887bc3 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:49:49 +0800 Subject: [PATCH 6/6] Fix static import for ArrayUtils.length Replaces incorrect import of org.apache.commons.io.IOUtils.length with the correct io.microsphere.util.ArrayUtils.length in ConditionalOnPropertyEnabledTest.java. --- .../spring/cloud/test/ConditionalOnPropertyEnabledTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsphere-spring-cloud-commons/src/test/java/io/microsphere/spring/cloud/test/ConditionalOnPropertyEnabledTest.java b/microsphere-spring-cloud-commons/src/test/java/io/microsphere/spring/cloud/test/ConditionalOnPropertyEnabledTest.java index 42ec97f..b5b1aa7 100644 --- a/microsphere-spring-cloud-commons/src/test/java/io/microsphere/spring/cloud/test/ConditionalOnPropertyEnabledTest.java +++ b/microsphere-spring-cloud-commons/src/test/java/io/microsphere/spring/cloud/test/ConditionalOnPropertyEnabledTest.java @@ -32,9 +32,9 @@ import static io.microsphere.spring.core.annotation.AnnotationUtils.getAnnotationAttributes; import static io.microsphere.spring.test.util.SpringTestUtils.testInSpringContainer; import static io.microsphere.util.ArrayUtils.isEmpty; +import static io.microsphere.util.ArrayUtils.length; import static java.lang.String.valueOf; import static java.lang.System.getProperties; -import static org.apache.commons.io.IOUtils.length; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.springframework.core.type.AnnotationMetadata.introspect; import static org.springframework.util.StringUtils.hasText;