Standardize Javadoc headings and update README versions#142
Open
mercyblitz wants to merge 10 commits into
Open
Standardize Javadoc headings and update README versions#142mercyblitz wants to merge 10 commits into
mercyblitz wants to merge 10 commits into
Conversation
Replaced `"<p>Example Usage:"` with `"<h3>Example Usage</h3>"` across discovery, service registry, fault-tolerance, and OpenFeign classes. This makes generated Javadoc examples render with consistent section headings and improves readability without changing runtime behavior.
Add `SPRING_APPLICATION_NAME_PLACEHOLDER` to `CommonsPropertyConstants` and reuse it in service registration wiring (`SimpleAutoServiceRegistrationAutoConfiguration` and `AbstractServiceRegistrationEndpoint`) instead of hardcoded `@Value` strings. This centralizes the placeholder and aligns the default application name fallback to `application`, with constants tests updated accordingly.
Refresh the compatibility table in README.md to reflect the newest released versions: `main` to `0.2.22` and `1.x` to `0.1.22`.
Update the parent POM BOM property from 0.1.28 to 0.1.29 to align dependency management with the latest microsphere-spring-boot release.
Adjust Specification auto-configuration to activate only when NamedContextFactory is on the classpath, and create SpecificationBeanPostProcessor only when a Specification bean exists and no custom post-processor is already defined. Update commons module dependencies by marking microsphere-spring-boot-actuator optional and switching tests to microsphere-spring-boot-test. Refresh SpecificationAutoConfigurationTest to use AutoConfigurationTest support and cover missing-class behavior with the new conditions.
Updates `microsphere-spring-cloud-commons/pom.xml` to better align dependency roles: adds `microsphere-annotation-processor` (optional) and `microsphere-spring-boot-core`, and marks `microsphere-spring-boot-webmvc` and `microsphere-spring-boot-webflux` as optional. This reduces unnecessary transitive runtime coupling while keeping core support required.
Clean up formatting in `microsphere-spring-cloud-commons/pom.xml` by removing extra trailing whitespace on a blank line. This is a non-functional style-only change.
Update the parent POM to use microsphere-build 0.3.6 so this project inherits the latest shared build configuration and dependency management.
Updates the Maven parent POM version in `pom.xml` from `0.3.6` to `0.3.7` to align this project with the latest shared build configuration.
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This pull request mainly updates JavaDoc comments across several classes to improve formatting and readability. Specifically, it replaces the old
<p>Example Usage:HTML tag with<h3>Example Usage</h3>in all relevant documentation blocks. Additionally, it updates the version numbers in theREADME.mdto reflect the latest releases.Documentation formatting improvements:
ReactiveDiscoveryClientAdapter,UnionDiscoveryClient,InMemoryServiceRegistry,MultipleAutoServiceRegistration, andMultipleRegistrationto use<h3>Example Usage</h3>for better readability and consistency. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29]Version updates:
README.mdto reflect new released versions:mainbranch to0.2.22and1.xbranch to0.1.22.