From ac724c3ce53d9f184d8fdc853789920b83dd8bf8 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:29:06 +0800 Subject: [PATCH 1/7] Bump project version to 0.1.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 7d496b1..8dfc705 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ - 0.1.4-SNAPSHOT + 0.1.5-SNAPSHOT From b1eb629d685e132779f404868ed3545d9beac0e2 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:29:43 +0800 Subject: [PATCH 2/7] Update microsphere-spring-boot BOM version to 0.1.5 Bumps the microsphere-spring-boot.version property from 0.1.4 to 0.1.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 042773d..ce1f861 100644 --- a/microsphere-spring-cloud-parent/pom.xml +++ b/microsphere-spring-cloud-parent/pom.xml @@ -20,7 +20,7 @@ - 0.1.4 + 0.1.5 1.21.3 From d27be36c2a1ecebbe8e4654e774005a1f800433d Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:31:36 +0800 Subject: [PATCH 3/7] Remove distribution and repository config from pom.xml Deleted and sections from pom.xml to simplify project configuration and remove Sonatype OSSRH deployment settings. --- pom.xml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/pom.xml b/pom.xml index 8dfc705..de4cc24 100644 --- a/pom.xml +++ b/pom.xml @@ -62,28 +62,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 2668253b2c6efb4842aed008a673e1c9105abfdb Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:33:07 +0800 Subject: [PATCH 4/7] Remove isitmaintained badges from README Deleted badges related to issue resolution and open issues from the README for a cleaner badge section. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b2c8a7b..483d0a3 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,7 @@ [![Codecov](https://codecov.io/gh/microsphere-projects/microsphere-spring-cloud/branch/dev-1.x/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 02dc49fdd5c16de0c62bc76eb91142ff6c743e2e Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:35:05 +0800 Subject: [PATCH 5/7] 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 483d0a3..56a47ea 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 4dcea8765bf8c1ae947c5c805a9bcfd3b20d1794 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:50:01 +0800 Subject: [PATCH 6/7] Update import for ArrayUtils.length in test Replaced the import of IOUtils.length with ArrayUtils.length in ConditionalOnPropertyEnabledTest to use the correct utility method. --- .../spring/cloud/test/ConditionalOnPropertyEnabledTest.java | 3 ++- 1 file changed, 2 insertions(+), 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..2c2b5d9 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 @@ -17,6 +17,7 @@ package io.microsphere.spring.cloud.test; +import io.microsphere.util.ArrayUtils; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; @@ -32,9 +33,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; From 9d2497be8e1c73399a7cae01c5b4714727e4d0d5 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Fri, 7 Nov 2025 21:50:28 +0800 Subject: [PATCH 7/7] Update ConditionalOnPropertyEnabledTest.java --- .../spring/cloud/test/ConditionalOnPropertyEnabledTest.java | 1 - 1 file changed, 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 2c2b5d9..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 @@ -17,7 +17,6 @@ package io.microsphere.spring.cloud.test; -import io.microsphere.util.ArrayUtils; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;