chore: remove compatibility/config-api#1018
Merged
AlexStocks merged 1 commit intoapache:mainfrom Jan 13, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the deprecated compatibility/config-api/ directory and all associated integration tests, as the functionality has been replaced by newer API examples in the root directory.
Changes:
- Removed 4 integration test entries from
start_integrate_test.shfor config-api examples - Deleted all integration test files under
integrate_test/compatibility/config-api/ - Deleted all source files and documentation under
compatibility/config-api/ - Updated both English and Chinese README files to remove references to
compatibility/config-api
Reviewed changes
Copilot reviewed 28 out of 28 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| start_integrate_test.sh | Removed 4 commented-out config-api integration test entries |
| integrate_test/compatibility/config-api/rpc/triple/tests/integration/*.go | Deleted RPC triple integration tests (replaced by rpc/triple/instance/) |
| integrate_test/compatibility/config-api/configcenter/zookeeper/tests/integration/*.go | Deleted Zookeeper config center integration tests (replaced by config_center/zookeeper) |
| integrate_test/compatibility/config-api/configcenter/nacos/tests/integration/*.go | Deleted Nacos config center integration tests (replaced by config_center/nacos) |
| integrate_test/compatibility/config-api/config-merge/tests/integration/*.go | Deleted config merge integration tests (deprecated functionality) |
| compatibility/config-api/subModule/**/*.go | Deleted incomplete subModule example code (replaced by dubbo.NewInstance() API) |
| compatibility/config-api/rpc/triple/**/*.go | Deleted RPC triple client/server examples (replaced by rpc/triple/instance/) |
| compatibility/config-api/configcenter/**/*.go | Deleted config center client/server examples (replaced by config_center/) |
| compatibility/config-api/config-merge/**/*.go | Deleted config merge examples (deprecated functionality) |
| compatibility/config-api/**/*.yml | Deleted all configuration files for removed examples |
| compatibility/config-api/**/README.md | Deleted documentation for removed examples |
| README.md | Removed reference to compatibility/config-api from project overview |
| README_CN.md | Removed reference to compatibility/config-api from project overview (Chinese) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
AlexStocks
approved these changes
Jan 13, 2026
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.
Summary
Remove
compatibility/config-api/directory as all functionality has been replaced by new API examples in the root directory.Changes
Deleted:
compatibility/config-api/configcenter/→ replaced byconfig_center/compatibility/config-api/rpc/→ replaced byrpc/triple/instance/compatibility/config-api/config-merge/→ deprecated (use config center or env vars)compatibility/config-api/subModule/→ incomplete code, now obtain a high-level abstraction viadubbo.NewInstance()instead of directly accessing the underlying instance.#958