This is an automated email from the ASF dual-hosted git repository. liubao pushed a change to branch url_pattern in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git
discard 782b618ab [SCB-2806]disable OperationInstancesDiscoveryFilter by defalut omit 467f80eeb Bump Spring 5.3.29 Spring Boot 2.7.15 Vertx 4.4.4 add 2d9dc0973 Bump Spring 5.3.29 Spring Boot 2.7.15 Vertx 4.4.4 (#3929) add fd35498a2 [SCB-2804]Fix instance not found when instances frequently change (#3926) add 49da1b688 [SCB-2806]disable OperationInstancesDiscoveryFilter by defalut (#3930) add 71b0003aa [SCB-2807]add new instance isolation feature based on instance-isolation-consumer (#3932) add 8d1d91101 [SCB-2807]add missed test case (#3934) new 66bb27a42 [#3893]fix client decode error message This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (782b618ab) \ N -- N -- N refs/heads/url_pattern (66bb27a42) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../servicecomb/registry/RegistrationManager.java | 12 ++- .../event/MicroserviceInstanceChangedEvent.java | 3 + .../servicecomb/registry/consumer/AppManager.java | 8 +- .../registry/consumer/MicroserviceManager.java | 20 ++-- .../registry/consumer/MicroserviceVersions.java | 27 ----- .../discovery/AbstractDiscoveryFilter.java | 6 +- .../registry/swagger/SwaggerLoader.java | 37 ++++--- .../registry/discovery/TestDiscoveryTree.java | 58 +++++++++- .../ConsumerInstanceIsolationHandler.java | 27 +++-- .../handler/governance/InstanceIsolatedEvent.java | 80 +++++++------- .../InstanceIsolationDiscoveryFilter.java | 120 +++++++++++++++++++++ ....servicecomb.registry.discovery.DiscoveryFilter | 1 + .../TestInstanceIsolationDiscoveryFilter.java | 95 ++++++++++++++++ .../loadbalance/event/IsolationServerEvent.java | 4 +- ...lter.java => IsolationServerListFilterExt.java} | 6 +- ...che.servicecomb.loadbalance.ServerListFilterExt | 2 +- ....java => IsolationServerListFilterExtTest.java} | 8 +- .../reference/TestCseClientHttpRequest.java | 2 + .../async/CseAsyncClientHttpRequestTest.java | 2 + .../servicecomb/serviceregistry/RegistryUtils.java | 8 +- .../registry/AbstractServiceRegistry.java | 2 - .../servicecomb/serviceregistry/TestConsumers.java | 6 +- .../rest/client/http/DefaultHttpClientFilter.java | 25 ++--- 23 files changed, 414 insertions(+), 145 deletions(-) copy service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/UnregisterRequest.java => handlers/handler-governance/src/main/java/org/apache/servicecomb/handler/governance/InstanceIsolatedEvent.java (66%) create mode 100644 handlers/handler-governance/src/main/java/org/apache/servicecomb/handler/governance/InstanceIsolationDiscoveryFilter.java create mode 100644 handlers/handler-governance/src/test/java/org/apache/servicecomb/handler/governance/TestInstanceIsolationDiscoveryFilter.java rename handlers/handler-loadbalance/src/main/java/org/apache/servicecomb/loadbalance/filterext/{IsolationDiscoveryFilter.java => IsolationServerListFilterExt.java} (97%) rename handlers/handler-loadbalance/src/test/java/org/apache/servicecomb/loadbalance/filter/{IsolationDiscoveryFilterTest.java => IsolationServerListFilterExtTest.java} (97%)