[servicecomb-java-chassis] branch 2.8.x updated: [SCB-2773]Change mutil dicovery registry instance merge policy (#3650)

2023-02-20 Thread liubao
This is an automated email from the ASF dual-hosted git repository.

liubao pushed a commit to branch 2.8.x
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/2.8.x by this push:
 new 5fc05610e [SCB-2773]Change mutil dicovery registry instance merge 
policy (#3650)
5fc05610e is described below

commit 5fc05610ebdb3ce7f2eabefe6b08044fc8c3bcac
Author: liubao68 
AuthorDate: Tue Feb 21 14:46:45 2023 +0800

[SCB-2773]Change mutil dicovery registry instance merge policy (#3650)
---
 .../org/apache/servicecomb/registry/DiscoveryManager.java |  3 ++-
 .../java/org/apache/servicecomb/registry/api/Discovery.java   |  5 -
 .../registry/api/registry/MicroserviceInstances.java  | 11 ---
 .../registry/lightweight/AbstractLightweightDiscovery.java| 11 ---
 .../org/apache/servicecomb/localregistry/LocalDiscovery.java  |  5 ++---
 .../apache/servicecomb/localregistry/LocalRegistryStore.java  |  3 +--
 .../apache/servicecomb/schemadiscovery/SchemaDiscovery.java   |  3 +--
 .../servicecomb/serviceregistry/ServiceCenterDiscovery.java   |  3 +--
 8 files changed, 19 insertions(+), 25 deletions(-)

diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
index 1afc569df..df8713c74 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
@@ -73,9 +73,10 @@ public class DiscoveryManager {
 // default values not suitable for aggregate, reset.
 result.setNeedRefresh(false);
 result.setMicroserviceNotExist(true);
+result.setRevision(revision);
 discoveryList
 .forEach(discovery -> {
-  MicroserviceInstances instances = 
discovery.findServiceInstances(appId, serviceName, versionRule, revision);
+  MicroserviceInstances instances = 
discovery.findServiceInstances(appId, serviceName, versionRule);
   result.mergeMicroserviceInstances(instances);
 });
 
diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
index 593fa4396..cf7029eeb 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
@@ -70,11 +70,6 @@ public interface Discovery extends SPIEnabled, SPIOrder, 
LifeCycle {
* @return all instances match the criteria.
*/
   default MicroserviceInstances findServiceInstances(String appId, String 
serviceName, String versionRule) {
-return findServiceInstances(appId, serviceName, versionRule, null);
-  }
-
-  default MicroserviceInstances findServiceInstances(String appId, String 
serviceName, String versionRule,
-  String revision) {
 return null;
   }
 
diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
index 1a9e0fdff..329826289 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
@@ -65,16 +65,13 @@ public class MicroserviceInstances {
   public void mergeMicroserviceInstances(MicroserviceInstances other) {
 mergeNeedRefresh(other.needRefresh);
 mergeMicroserviceNotExist(other.microserviceNotExist);
-mergeRevision(other.revision);
+mergeRevision(other);
 mergeInstanceResponse(other.getInstancesResponse());
   }
 
-  private void mergeRevision(String revision) {
-if (revision == null) {
-  return;
-}
-if (this.revision == null || this.revision.compareTo(revision) < 0) {
-  this.revision = revision;
+  private void mergeRevision(MicroserviceInstances other) {
+if (!other.isMicroserviceNotExist() && other.needRefresh) {
+  this.revision = other.getRevision();
 }
   }
 
diff --git 
a/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
 
b/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
index 11cf2c8da..6ba3b15f8 100644
--- 
a/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
+++ 

[GitHub] [servicecomb-java-chassis] liubao68 merged pull request #3651: [SCB-2773]Change mutil dicovery registry instance merge policy (#3650)

2023-02-20 Thread via GitHub


liubao68 merged PR #3651:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3651


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3651: [SCB-2773]Change mutil dicovery registry instance merge policy (#3650)

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3651:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3651#issuecomment-1437962669

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3651](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (7ecbac8) into 
[2.8.x](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/f87a75c9089be0f283dc3c3b0ece1f3a3d711b52?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (f87a75c) will **increase** coverage by `0.01%`.
   > The diff coverage is `50.00%`.
   
   > :exclamation: Current head 7ecbac8 differs from pull request most recent 
head d2073ce. Consider uploading reports for the commit d2073ce to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ##  2.8.x#3651  +/-   ##
   
   + Coverage 74.38%   74.39%   +0.01% 
 Complexity  679  679  
   
 Files  1590 1590  
 Lines 3995239953   +1 
 Branches   3655 3655  
   
   + Hits  2971929724   +5 
   + Misses 8740 8738   -2 
   + Partials   1493 1491   -2 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...org/apache/servicecomb/registry/api/Discovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvYXBpL0Rpc2NvdmVyeS5qYXZh)
 | `0.00% <ø> (ø)` | |
   | 
[...stry/lightweight/AbstractLightweightDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1saWdodHdlaWdodC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvbGlnaHR3ZWlnaHQvQWJzdHJhY3RMaWdodHdlaWdodERpc2NvdmVyeS5qYXZh)
 | `0.00% <0.00%> (ø)` | |
   | 
[.../servicecomb/localregistry/LocalRegistryStore.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1sb2NhbC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvbG9jYWxyZWdpc3RyeS9Mb2NhbFJlZ2lzdHJ5U3RvcmUuamF2YQ==)
 | `92.45% <ø> (ø)` | |
   | 
[...e/servicecomb/schemadiscovery/SchemaDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1zY2hlbWEtZGlzY292ZXJ5L3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9zZXJ2aWNlY29tYi9zY2hlbWFkaXNjb3ZlcnkvU2NoZW1hRGlzY292ZXJ5LmphdmE=)
 | `53.65% <ø> (ø)` | |
   | 
[...cecomb/serviceregistry/ServiceCenterDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1zZXJ2aWNlLWNlbnRlci9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvc2VydmljZXJlZ2lzdHJ5L1NlcnZpY2VDZW50ZXJEaXNjb3ZlcnkuamF2YQ==)
 | `93.33% <ø> (ø)` | |
   | 
[...b/registry/api/registry/MicroserviceInstances.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvYXBpL3JlZ2lzdHJ5L01pY3Jvc2VydmljZUluc3RhbmNlcy5qYXZh)
 | `97.14% <66.66%> (-0.16%)` | :arrow_down: |
   | 
[.../apache/servicecomb/registry/DiscoveryManager.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3651?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvRGlzY292ZXJ5TWFuYWdlci5qYXZh)
 | `96.61% <100.00%> (+0.05%)` | :arrow_up: |
   | 

[GitHub] [servicecomb-java-chassis] liubao68 opened a new pull request, #3651: [SCB-2773]Change mutil dicovery registry instance merge policy (#3650)

2023-02-20 Thread via GitHub


liubao68 opened a new pull request, #3651:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3651

   Follow this checklist to help us incorporate your contribution quickly and 
easily:
   
- [ ] Make sure there is a [JIRA 
issue](https://issues.apache.org/jira/browse/SCB) filed for the change (usually 
before you start working on it).  Trivial changes like typos do not require a 
JIRA issue.  Your pull request should address just this issue, without pulling 
in other changes.
- [ ] Each commit in the pull request should have a meaningful subject line 
and body.
- [ ] Format the pull request title like `[SCB-XXX] Fixes bug in 
ApproximateQuantiles`, where you replace `SCB-XXX` with the appropriate JIRA 
issue.
- [ ] Write a pull request description that is detailed enough to 
understand what the pull request does, how, and why.
- [ ] Run `mvn clean install -Pit` to make sure basic checks pass. A more 
thorough check will be performed on your pull request automatically.
- [ ] If this contribution is large, please file an Apache [Individual 
Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
   
   ---
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-java-chassis] branch master updated: [SCB-2773]Change mutil dicovery registry instance merge policy (#3650)

2023-02-20 Thread liubao
This is an automated email from the ASF dual-hosted git repository.

liubao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
 new 69ac3f41d [SCB-2773]Change mutil dicovery registry instance merge 
policy (#3650)
69ac3f41d is described below

commit 69ac3f41dfe630a0e16cf9289cbdf1a10c3efdb7
Author: liubao68 
AuthorDate: Tue Feb 21 14:46:45 2023 +0800

[SCB-2773]Change mutil dicovery registry instance merge policy (#3650)
---
 .../org/apache/servicecomb/registry/DiscoveryManager.java |  3 ++-
 .../java/org/apache/servicecomb/registry/api/Discovery.java   |  5 -
 .../registry/api/registry/MicroserviceInstances.java  | 11 ---
 .../registry/lightweight/AbstractLightweightDiscovery.java| 11 ---
 .../org/apache/servicecomb/localregistry/LocalDiscovery.java  |  5 ++---
 .../apache/servicecomb/localregistry/LocalRegistryStore.java  |  3 +--
 .../apache/servicecomb/schemadiscovery/SchemaDiscovery.java   |  3 +--
 .../servicecomb/serviceregistry/ServiceCenterDiscovery.java   |  3 +--
 8 files changed, 19 insertions(+), 25 deletions(-)

diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
index 1afc569df..df8713c74 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/DiscoveryManager.java
@@ -73,9 +73,10 @@ public class DiscoveryManager {
 // default values not suitable for aggregate, reset.
 result.setNeedRefresh(false);
 result.setMicroserviceNotExist(true);
+result.setRevision(revision);
 discoveryList
 .forEach(discovery -> {
-  MicroserviceInstances instances = 
discovery.findServiceInstances(appId, serviceName, versionRule, revision);
+  MicroserviceInstances instances = 
discovery.findServiceInstances(appId, serviceName, versionRule);
   result.mergeMicroserviceInstances(instances);
 });
 
diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
index 593fa4396..cf7029eeb 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/Discovery.java
@@ -70,11 +70,6 @@ public interface Discovery extends SPIEnabled, SPIOrder, 
LifeCycle {
* @return all instances match the criteria.
*/
   default MicroserviceInstances findServiceInstances(String appId, String 
serviceName, String versionRule) {
-return findServiceInstances(appId, serviceName, versionRule, null);
-  }
-
-  default MicroserviceInstances findServiceInstances(String appId, String 
serviceName, String versionRule,
-  String revision) {
 return null;
   }
 
diff --git 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
index 1a9e0fdff..329826289 100644
--- 
a/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
+++ 
b/foundations/foundation-registry/src/main/java/org/apache/servicecomb/registry/api/registry/MicroserviceInstances.java
@@ -65,16 +65,13 @@ public class MicroserviceInstances {
   public void mergeMicroserviceInstances(MicroserviceInstances other) {
 mergeNeedRefresh(other.needRefresh);
 mergeMicroserviceNotExist(other.microserviceNotExist);
-mergeRevision(other.revision);
+mergeRevision(other);
 mergeInstanceResponse(other.getInstancesResponse());
   }
 
-  private void mergeRevision(String revision) {
-if (revision == null) {
-  return;
-}
-if (this.revision == null || this.revision.compareTo(revision) < 0) {
-  this.revision = revision;
+  private void mergeRevision(MicroserviceInstances other) {
+if (!other.isMicroserviceNotExist() && other.needRefresh) {
+  this.revision = other.getRevision();
 }
   }
 
diff --git 
a/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
 
b/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
index 11cf2c8da..6ba3b15f8 100644
--- 
a/service-registry/registry-lightweight/src/main/java/org/apache/servicecomb/registry/lightweight/AbstractLightweightDiscovery.java
+++ 

[GitHub] [servicecomb-java-chassis] liubao68 merged pull request #3650: [SCB-2773]Change mutil dicovery registry instance merge policy

2023-02-20 Thread via GitHub


liubao68 merged PR #3650:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3650


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3650: [SCB-2773]Change mutil dicovery registry instance merge policy

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3650:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3650#issuecomment-1437932935

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3650](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (b8592e7) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.00%`.
   > The diff coverage is `44.44%`.
   
   > :exclamation: Current head b8592e7 differs from pull request most recent 
head 68c5585. Consider uploading reports for the commit 68c5585 to get more 
accurate results
   
   ```diff
   @@Coverage Diff@@
   ## master#3650   +/-   ##
   =
 Coverage 42.86%   42.87%   
   - Complexity 5967 5969+2 
   =
 Files  1554 1554   
 Lines 3883338838+5 
 Branches   3560 3561+1 
   =
   + Hits  1664516650+5 
   - Misses2089720899+2 
   + Partials   1291 1289-2 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...org/apache/servicecomb/registry/api/Discovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvYXBpL0Rpc2NvdmVyeS5qYXZh)
 | `0.00% <ø> (ø)` | |
   | 
[...stry/lightweight/AbstractLightweightDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1saWdodHdlaWdodC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvbGlnaHR3ZWlnaHQvQWJzdHJhY3RMaWdodHdlaWdodERpc2NvdmVyeS5qYXZh)
 | `0.00% <0.00%> (ø)` | |
   | 
[.../servicecomb/localregistry/LocalRegistryStore.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1sb2NhbC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvbG9jYWxyZWdpc3RyeS9Mb2NhbFJlZ2lzdHJ5U3RvcmUuamF2YQ==)
 | `89.62% <ø> (ø)` | |
   | 
[...e/servicecomb/schemadiscovery/SchemaDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1zY2hlbWEtZGlzY292ZXJ5L3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9zZXJ2aWNlY29tYi9zY2hlbWFkaXNjb3ZlcnkvU2NoZW1hRGlzY292ZXJ5LmphdmE=)
 | `53.65% <ø> (ø)` | |
   | 
[...cecomb/serviceregistry/ServiceCenterDiscovery.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1zZXJ2aWNlLWNlbnRlci9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvc2VydmljZXJlZ2lzdHJ5L1NlcnZpY2VDZW50ZXJEaXNjb3ZlcnkuamF2YQ==)
 | `80.00% <ø> (ø)` | |
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...b/registry/api/registry/MicroserviceInstances.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3650?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvYXBpL3JlZ2lzdHJ5L01pY3Jvc2VydmljZUluc3RhbmNlcy5qYXZh)
 | `97.14% <66.66%> (-0.16%)` | :arrow_down: |
   | 

[servicecomb-service-center] branch mod updated (aafb3edd -> 1a9d1d85)

2023-02-20 Thread littlecui
This is an automated email from the ASF dual-hosted git repository.

littlecui pushed a change to branch mod
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git


omit aafb3edd [fix] task queue will block when subscriber busy
 add 1a9d1d85 [fix] task queue will block when subscriber busy

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   (aafb3edd)
\
 N -- N -- N   refs/heads/mod (1a9d1d85)

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.

No new revisions were added by this update.

Summary of changes:
 server/alarm/common.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[servicecomb-service-center] branch mod updated (0d3cbb23 -> aafb3edd)

2023-02-20 Thread littlecui
This is an automated email from the ASF dual-hosted git repository.

littlecui pushed a change to branch mod
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git


 discard 0d3cbb23 [fix] task queue will block when subscriber busy
 add aafb3edd [fix] task queue will block when subscriber busy

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   (0d3cbb23)
\
 N -- N -- N   refs/heads/mod (aafb3edd)

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.

No new revisions were added by this update.

Summary of changes:
 server/alarm/common.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[GitHub] [servicecomb-service-center] little-cui opened a new pull request, #1397: [fix] task queue will block when subscriber busy

2023-02-20 Thread via GitHub


little-cui opened a new pull request, #1397:
URL: https://github.com/apache/servicecomb-service-center/pull/1397

   Follow this checklist to help us incorporate your contribution quickly and 
easily:
   
- [ ] Make sure there is a [JIRA 
issue](https://issues.apache.org/jira/browse/SCB) filed for the change (usually 
before you start working on it).  Trivial changes like typos do not require a 
JIRA issue.  Your pull request should address just this issue, without pulling 
in other changes.
- [ ] Each commit in the pull request should have a meaningful subject line 
and body.
- [ ] Format the pull request title like `[SCB-XXX] Fixes bug in 
ApproximateQuantiles`, where you replace `SCB-XXX` with the appropriate JIRA 
issue.
- [ ] Write a pull request description that is detailed enough to 
understand what the pull request does, how, and why.
- [ ] Run `go build` `go test` `go fmt` `go vet` to make sure basic checks 
pass. A more thorough check will be performed on your pull request 
automatically.
- [ ] If this contribution is large, please file an Apache [Individual 
Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
- [ ] Never comment source code, delete it.
- [ ] UT should has "context, subject, expected result" result as test case 
name, when you call t.Run().
   ---
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-service-center] branch mod created (now 0d3cbb23)

2023-02-20 Thread littlecui
This is an automated email from the ASF dual-hosted git repository.

littlecui pushed a change to branch mod
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git


  at 0d3cbb23 [fix] task queue will block when subscriber busy

This branch includes the following new commits:

 new 0d3cbb23 [fix] task queue will block when subscriber busy

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.




[servicecomb-service-center] 01/01: [fix] task queue will block when subscriber busy

2023-02-20 Thread littlecui
This is an automated email from the ASF dual-hosted git repository.

littlecui pushed a commit to branch mod
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git

commit 0d3cbb2362c2aab4025296b37b23d8f5d66ce491
Author: little-cui 
AuthorDate: Mon Feb 20 22:27:29 2023 +0800

[fix] task queue will block when subscriber busy
---
 pkg/queue/taskqueue.go  | 39 +--
 pkg/queue/taskqueue_test.go | 14 +-
 2 files changed, 46 insertions(+), 7 deletions(-)

diff --git a/pkg/queue/taskqueue.go b/pkg/queue/taskqueue.go
index 1947cf7d..48eb65a7 100644
--- a/pkg/queue/taskqueue.go
+++ b/pkg/queue/taskqueue.go
@@ -19,8 +19,11 @@ package queue
 
 import (
"context"
+   "fmt"
+   "sync"
 
"github.com/apache/servicecomb-service-center/pkg/goutil"
+   "github.com/apache/servicecomb-service-center/pkg/log"
"github.com/go-chassis/foundation/gopool"
 )
 
@@ -42,8 +45,10 @@ type Task struct {
 type TaskQueue struct {
Workers []Worker
 
-   taskChchan Task
-   goroutine *gopool.Pool
+   taskChLock sync.RWMutex
+   taskChSize int
+   taskCh chan Task
+   goroutine  *gopool.Pool
 }
 
 // AddWorker is the method to add Worker
@@ -53,7 +58,24 @@ func (q *TaskQueue) AddWorker(w Worker) {
 
 // Add is the method to add task in queue, one task will be handled by all 
workers
 func (q *TaskQueue) Add(t Task) {
-   q.taskCh <- t
+   q.taskChLock.RLock()
+   select {
+   case q.taskCh <- t:
+   q.taskChLock.RUnlock()
+   default:
+   q.taskChLock.RUnlock()
+   q.resetTaskCh()
+   }
+}
+
+func (q *TaskQueue) resetTaskCh() {
+   q.taskChLock.Lock()
+   defer q.taskChLock.Unlock()
+
+   log.Warn(fmt.Sprintf("taskCh[%d] is full, reset taskCh", q.taskChSize))
+   close(q.taskCh)
+   q.taskCh = make(chan Task, q.taskChSize)
+   q.Run()
 }
 
 func (q *TaskQueue) dispatch(ctx context.Context, w Worker, obj interface{}) {
@@ -82,7 +104,11 @@ func (q *TaskQueue) Run() {
select {
case <-ctx.Done():
return
-   case task := <-q.taskCh:
+   case task, ok := <-q.taskCh:
+   if !ok {
+   log.Warn("taskCh is closed")
+   return
+   }
q.Do(ctx, task)
}
}
@@ -99,7 +125,8 @@ func NewTaskQueue(size int) *TaskQueue {
size = eventQueueSize
}
return {
-   taskCh:make(chan Task, size),
-   goroutine: goutil.New(gopool.Configure()),
+   taskChSize: size,
+   taskCh: make(chan Task, size),
+   goroutine:  goutil.New(gopool.Configure().Workers(1)),
}
 }
diff --git a/pkg/queue/taskqueue_test.go b/pkg/queue/taskqueue_test.go
index 681ba649..0df7d885 100644
--- a/pkg/queue/taskqueue_test.go
+++ b/pkg/queue/taskqueue_test.go
@@ -20,6 +20,7 @@ package queue
 import (
"context"
"testing"
+   "time"
 )
 
 type mockWorker struct {
@@ -32,7 +33,6 @@ func (h *mockWorker) Handle(ctx context.Context, obj 
interface{}) {
 
 func TestNewEventQueue(t *testing.T) {
h := {make(chan interface{}, 1)}
-
q := NewTaskQueue(0)
q.AddWorker(h)
 
@@ -59,3 +59,15 @@ func TestNewEventQueue(t *testing.T) {
q.Stop()
q.Add(Task{Payload: 3})
 }
+
+func TestTaskQueue_Add(t *testing.T) {
+   h := {make(chan interface{}, 1)}
+   q := NewTaskQueue(5)
+   q.AddWorker(h)
+   q.Run()
+   time.Sleep(100 * time.Millisecond)
+   for i := 0; i < 1; i++ {
+   go q.Add(Task{Payload: 1})
+   }
+   q.Stop()
+}



[GitHub] [servicecomb-java-chassis] liubao68 opened a new pull request, #3650: [SCB-2773]Change mutil dicovery registry instance merge policy

2023-02-20 Thread via GitHub


liubao68 opened a new pull request, #3650:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3650

   Follow this checklist to help us incorporate your contribution quickly and 
easily:
   
- [ ] Make sure there is a [JIRA 
issue](https://issues.apache.org/jira/browse/SCB) filed for the change (usually 
before you start working on it).  Trivial changes like typos do not require a 
JIRA issue.  Your pull request should address just this issue, without pulling 
in other changes.
- [ ] Each commit in the pull request should have a meaningful subject line 
and body.
- [ ] Format the pull request title like `[SCB-XXX] Fixes bug in 
ApproximateQuantiles`, where you replace `SCB-XXX` with the appropriate JIRA 
issue.
- [ ] Write a pull request description that is detailed enough to 
understand what the pull request does, how, and why.
- [ ] Run `mvn clean install -Pit` to make sure basic checks pass. A more 
thorough check will be performed on your pull request automatically.
- [ ] If this contribution is large, please file an Apache [Individual 
Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
   
   ---
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3646: Bump maven-failsafe-plugin from 3.0.0-M8 to 3.0.0-M9

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3646:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3646#issuecomment-1436540952

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3646](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (ee83a7a) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.06%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head ee83a7a differs from pull request most recent 
head 81fa929. Consider uploading reports for the commit 81fa929 to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3646  +/-   ##
   
   + Coverage 42.86%   42.92%   +0.06% 
   - Complexity 5967 5974   +7 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516671  +26 
   + Misses2089720875  -22 
 Partials   1291 1291  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...comb/core/definition/MicroserviceVersionsMeta.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9kZWZpbml0aW9uL01pY3Jvc2VydmljZVZlcnNpb25zTWV0YS5qYXZh)
 | `100.00% <0.00%> (+4.00%)` | :arrow_up: |
   | 
[...pache/servicecomb/foundation/vertx/VertxUtils.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9WZXJ0eFV0aWxzLmphdmE=)
 | `40.00% <0.00%> (+5.00%)` | :arrow_up: |
   | 
[...undation/vertx/client/tcp/TcpClientConnection.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9jbGllbnQvdGNwL1RjcENsaWVudENvbm5lY3Rpb24uamF2YQ==)
 | `74.67% <0.00%> (+9.09%)` | :arrow_up: |
   | 
[...mb/metrics/core/meter/os/cpu/AbstractCpuUsage.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-bWV0cmljcy9tZXRyaWNzLWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3NlcnZpY2Vjb21iL21ldHJpY3MvY29yZS9tZXRlci9vcy9jcHUvQWJzdHJhY3RDcHVVc2FnZS5qYXZh)
 | `94.44% <0.00%> (+11.11%)` | :arrow_up: |
   | 
[...ndation/vertx/metrics/DefaultTcpClientMetrics.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3646?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9tZXRyaWNzL0RlZmF1bHRUY3BDbGllbnRNZXRyaWNzLmphdmE=)
 | `100.00% <0.00%> (+14.28%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To 

[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3644: Bump jersey.version from 2.38 to 2.39

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3644:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3644#issuecomment-1436538771

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3644](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (ee2e1c6) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **decrease** coverage by `0.01%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head ee2e1c6 differs from pull request most recent 
head 389c7ef. Consider uploading reports for the commit 389c7ef to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3644  +/-   ##
   
   - Coverage 42.86%   42.85%   -0.01% 
   + Complexity 5967 5964   -3 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
 Hits  1664516645  
   - Misses2089720901   +4 
 Partials   1291 1291  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...n/converter/IllegalArgumentExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0lsbGVnYWxBcmd1bWVudEV4Y2VwdGlvbkNvbnZlcnRlci5qYXZh)
 | `50.00% <0.00%> (-25.00%)` | :arrow_down: |
   | 
[...exception/converter/TimeoutExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL1RpbWVvdXRFeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `85.71% <0.00%> (-14.29%)` | :arrow_down: |
   | 
[...nverter/ConstraintViolationExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3644?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0NvbnN0cmFpbnRWaW9sYXRpb25FeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `46.15% <0.00%> (-7.70%)` | :arrow_down: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3649: Bump maven-javadoc-plugin from 3.4.1 to 3.5.0

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3649:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3649#issuecomment-1436538001

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3649?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3649](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3649?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (2e095b6) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.01%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head 2e095b6 differs from pull request most recent 
head 4c222a6. Consider uploading reports for the commit 4c222a6 to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3649  +/-   ##
   
   + Coverage 42.86%   42.87%   +0.01% 
   - Complexity 5967 5968   +1 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516652   +7 
   + Misses2089720893   -4 
   - Partials   1291 1292   +1 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3649?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3649?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...pache/servicecomb/foundation/vertx/VertxUtils.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3649?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9WZXJ0eFV0aWxzLmphdmE=)
 | `40.00% <0.00%> (+5.00%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3647: Bump protobuf-java from 3.21.12 to 3.22.0

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3647:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3647#issuecomment-1436536804

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3647](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (c761acb) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.01%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head c761acb differs from pull request most recent 
head baabb7f. Consider uploading reports for the commit baabb7f to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3647  +/-   ##
   
   + Coverage 42.86%   42.87%   +0.01% 
   - Complexity 5967 5969   +2 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516653   +8 
   + Misses2089720893   -4 
 Partials   1291 1291  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...undation/protobuf/internal/parser/ProtoParser.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1wcm90b2J1Zi9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi9wcm90b2J1Zi9pbnRlcm5hbC9wYXJzZXIvUHJvdG9QYXJzZXIuamF2YQ==)
 | `76.47% <0.00%> (-11.77%)` | :arrow_down: |
   | 
[...comb/core/definition/MicroserviceVersionsMeta.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9kZWZpbml0aW9uL01pY3Jvc2VydmljZVZlcnNpb25zTWV0YS5qYXZh)
 | `100.00% <0.00%> (+4.00%)` | :arrow_up: |
   | 
[...pache/servicecomb/foundation/vertx/VertxUtils.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9WZXJ0eFV0aWxzLmphdmE=)
 | `40.00% <0.00%> (+5.00%)` | :arrow_up: |
   | 
[...mb/metrics/core/meter/os/cpu/AbstractCpuUsage.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3647?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-bWV0cmljcy9tZXRyaWNzLWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3NlcnZpY2Vjb21iL21ldHJpY3MvY29yZS9tZXRlci9vcy9jcHUvQWJzdHJhY3RDcHVVc2FnZS5qYXZh)
 | `94.44% <0.00%> (+11.11%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3645: Bump micrometer-bom from 1.10.3 to 1.10.4

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3645:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3645#issuecomment-1436534893

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3645](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (72c81c6) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.13%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head 72c81c6 differs from pull request most recent 
head 1c83bac. Consider uploading reports for the commit 1c83bac to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3645  +/-   ##
   
   + Coverage 42.86%   43.00%   +0.13% 
   - Complexity 5967 5985  +18 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516700  +55 
   + Misses2089720841  -56 
   - Partials   1291 1296   +5 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `70.73% <37.50%> (+4.34%)` | :arrow_up: |
   | 
[...n/converter/IllegalArgumentExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0lsbGVnYWxBcmd1bWVudEV4Y2VwdGlvbkNvbnZlcnRlci5qYXZh)
 | `50.00% <0.00%> (-25.00%)` | :arrow_down: |
   | 
[...exception/converter/TimeoutExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL1RpbWVvdXRFeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `85.71% <0.00%> (-14.29%)` | :arrow_down: |
   | 
[...nverter/ConstraintViolationExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0NvbnN0cmFpbnRWaW9sYXRpb25FeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `46.15% <0.00%> (-7.70%)` | :arrow_down: |
   | 
[...mb/registry/discovery/AbstractDiscoveryFilter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvZGlzY292ZXJ5L0Fic3RyYWN0RGlzY292ZXJ5RmlsdGVyLmphdmE=)
 | `71.42% <0.00%> (-7.15%)` | :arrow_down: |
   | 
[...egistry/client/http/ServiceRegistryClientImpl.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3645?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c2VydmljZS1yZWdpc3RyeS9yZWdpc3RyeS1zZXJ2aWNlLWNlbnRlci9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvc2VydmljZXJlZ2lzdHJ5L2NsaWVudC9odHRwL1NlcnZpY2VSZWdpc3RyeUNsaWVudEltcGwuamF2YQ==)
 | `52.58% <0.00%> (+0.95%)` | :arrow_up: |
   | 

[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3643: Bump dependency-check-maven from 8.0.2 to 8.1.0

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3643:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3643#issuecomment-1436533276

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3643](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (0044c68) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **decrease** coverage by `0.01%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head 0044c68 differs from pull request most recent 
head 278c50d. Consider uploading reports for the commit 278c50d to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3643  +/-   ##
   
   - Coverage 42.86%   42.86%   -0.01% 
   + Complexity 5967 5965   -2 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516646   +1 
   - Misses2089720901   +4 
   + Partials   1291 1290   -1 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...n/converter/IllegalArgumentExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0lsbGVnYWxBcmd1bWVudEV4Y2VwdGlvbkNvbnZlcnRlci5qYXZh)
 | `50.00% <0.00%> (-25.00%)` | :arrow_down: |
   | 
[...exception/converter/TimeoutExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL1RpbWVvdXRFeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `85.71% <0.00%> (-14.29%)` | :arrow_down: |
   | 
[...nverter/ConstraintViolationExceptionConverter.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9leGNlcHRpb24vY29udmVydGVyL0NvbnN0cmFpbnRWaW9sYXRpb25FeGNlcHRpb25Db252ZXJ0ZXIuamF2YQ==)
 | `46.15% <0.00%> (-7.70%)` | :arrow_down: |
   | 
[...comb/core/definition/MicroserviceVersionsMeta.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3643?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Y29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvY29yZS9kZWZpbml0aW9uL01pY3Jvc2VydmljZVZlcnNpb25zTWV0YS5qYXZh)
 | `100.00% <0.00%> (+4.00%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] codecov-commenter commented on pull request #3641: Bump maven-surefire-plugin from 3.0.0-M8 to 3.0.0-M9

2023-02-20 Thread via GitHub


codecov-commenter commented on PR #3641:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3641#issuecomment-1436531634

   # 
[Codecov](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#3641](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (9b84582) into 
[master](https://codecov.io/gh/apache/servicecomb-java-chassis/commit/40a5d475b467f1f1f96b1aaf4d6023f386f0b6c1?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (40a5d47) will **increase** coverage by `0.01%`.
   > The diff coverage is `37.50%`.
   
   > :exclamation: Current head 9b84582 differs from pull request most recent 
head 5b6c67a. Consider uploading reports for the commit 5b6c67a to get more 
accurate results
   
   ```diff
   @@ Coverage Diff  @@
   ## master#3641  +/-   ##
   
   + Coverage 42.86%   42.88%   +0.01% 
   - Complexity 5967 5969   +2 
   
 Files  1554 1554  
 Lines 3883338837   +4 
 Branches   3560 3561   +1 
   
   + Hits  1664516654   +9 
   + Misses2089720892   -5 
 Partials   1291 1291  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...cecomb/registry/consumer/MicroserviceVersions.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi1yZWdpc3RyeS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvcmVnaXN0cnkvY29uc3VtZXIvTWljcm9zZXJ2aWNlVmVyc2lvbnMuamF2YQ==)
 | `66.66% <37.50%> (+0.28%)` | :arrow_up: |
   | 
[...pache/servicecomb/foundation/vertx/VertxUtils.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-Zm91bmRhdGlvbnMvZm91bmRhdGlvbi12ZXJ0eC9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvc2VydmljZWNvbWIvZm91bmRhdGlvbi92ZXJ0eC9WZXJ0eFV0aWxzLmphdmE=)
 | `40.00% <0.00%> (+5.00%)` | :arrow_up: |
   | 
[...mb/metrics/core/meter/os/cpu/AbstractCpuUsage.java](https://codecov.io/gh/apache/servicecomb-java-chassis/pull/3641?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-bWV0cmljcy9tZXRyaWNzLWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3NlcnZpY2Vjb21iL21ldHJpY3MvY29yZS9tZXRlci9vcy9jcHUvQWJzdHJhY3RDcHVVc2FnZS5qYXZh)
 | `94.44% <0.00%> (+11.11%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-java-chassis] branch dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.5.0 created (now 4c222a644)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.5.0
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 4c222a644 Bump maven-javadoc-plugin from 3.4.1 to 3.5.0

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3649: Bump maven-javadoc-plugin from 3.4.1 to 3.5.0

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3649:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3649

   Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) 
from 3.4.1 to 3.5.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-javadoc-plugin/releases;>maven-javadoc-plugin's
 releases.
   
   3.5.0
   https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317529version=12352256;>Release
 Notes
   
   Clean up language and update URLs (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/172;>#172)
 https://github.com/elharo;>@​elharo
   Assorted minor FAQ edits (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/176;>#176)
 https://github.com/elharo;>@​elharo
   https://issues.apache.org/jira/browse/MJAVADOC-738;>[MJAVADOC-738] - 
Upgrade commons-text to 1.10.0 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/174;>#174)
 https://github.com/cstamas;>@​cstamas
   an -- a (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/171;>#171)
 https://github.com/elharo;>@​elharo
   Update (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/167;>#167)
 https://github.com/elharo;>@​elharo
   https://issues.apache.org/jira/browse/MJAVADOC-685;>[MJAVADOC-685] - 
no longer document deprecated parameter stylesheet (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/165;>#165)
 https://github.com/kwin;>@​kwin
   MJAVADOC-731 update parent, get rid of legacy (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/164;>#164)
 https://github.com/kwin;>@​kwin
   https://issues.apache.org/jira/browse/MJAVADOC-685;>[MJAVADOC-685] - 
Deprecate parameter stylesheet (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/162;>#162)
 https://github.com/kwin;>@​kwin
   
    Documentation updates
   
   Typo in AbstractJavadocMojo (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/175;>#175)
 https://github.com/ebourg;>@​ebourg
   licenced -- licensed (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/168;>#168)
 https://github.com/elharo;>@​elharo
   
    Maintenance
   
   https://issues.apache.org/jira/browse/MJAVADOC-729;>[MJAVADOC-729] - 
Link to Javadoc references from JDK 17 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/161;>#161)
 https://github.com/kwin;>@​kwin
   fix link to documentation of link option (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/160;>#160)
 https://github.com/kwin;>@​kwin
   [[MJAVADOC-721] Parse stderr output and suppress informational lines (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/157;>#157)
 https://github.com/sman-81;>@​sman-81]](https://issues.apache.org/jira/browse/MJAVADOC-721%5D;>https://issues.apache.org/jira/browse/MJAVADOC-721]
 Parse stderr output and suppress informational lines (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/157;>#157)
 https://github.com/sman-81;>@​sman-81) -
   
   
   
   
   Commits
   
   https://github.com/apache/maven-javadoc-plugin/commit/e41f4fda4529a20089d708471909839f123d5988;>e41f4fd
 [maven-release-plugin] prepare release maven-javadoc-plugin-3.5.0
   https://github.com/apache/maven-javadoc-plugin/commit/c56ec0a989b34ee7383b7f5f16e4f8fca69149f8;>c56ec0a
 [MJAVADOC-741] Upgrade plugins and components
   https://github.com/apache/maven-javadoc-plugin/commit/d02fd90c799e12825448ac538bf09abf2a059d82;>d02fd90
 [MJAVADOC-740] Upgrade Parent to 39
   https://github.com/apache/maven-javadoc-plugin/commit/41233152e19b9cf01bc3ac5a072ce36d5e911656;>4123315
 [MJAVADOC-700] Plugin duplicates classes in Java 8 all-classes lists
   https://github.com/apache/maven-javadoc-plugin/commit/fabff9c1ed15007f11d1644e445d766ea9e63c5d;>fabff9c
 Clean up language and update URLs (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/172;>#172)
   https://github.com/apache/maven-javadoc-plugin/commit/a654cc647a06d7f36cea8918ffa05d05489bd5a1;>a654cc6
 Assorted minor FAQ edits (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/176;>#176)
   https://github.com/apache/maven-javadoc-plugin/commit/73557e337eb556fb628823594cf387bf64ef22f5;>73557e3
 Fixed a typo in AbstractJavadocMojo (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/175;>#175)
   https://github.com/apache/maven-javadoc-plugin/commit/96df545acc6a70f64cb2c00b2b7d7544a4f775c4;>96df545
 [MJAVADOC-738] Upgrade commons-text to 1.10.0 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/174;>#174)
   https://github.com/apache/maven-javadoc-plugin/commit/f21b24c76cbd9724c3c5777b10e696dd1ea3f3e1;>f21b24c
 update Reproducible Builds badge link
   https://github.com/apache/maven-javadoc-plugin/commit/5b61ee915298b51a273bd88612fb346ac639d9e0;>5b61ee9
 an -- a 

[GitHub] [servicecomb-java-chassis] dependabot[bot] commented on pull request #3632: Bump netty-bom from 4.1.87.Final to 4.1.88.Final

2023-02-20 Thread via GitHub


dependabot[bot] commented on PR #3632:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3632#issuecomment-1436515074

   Superseded by #3648.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3648: Bump netty-bom from 4.1.87.Final to 4.1.89.Final

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3648:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3648

   Bumps [netty-bom](https://github.com/netty/netty) from 4.1.87.Final to 
4.1.89.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/263a745b93513b8f761daa007897af9ce57161ba;>263a745
 [maven-release-plugin] prepare release netty-4.1.89.Final
   https://github.com/netty/netty/commit/ed425fe281f7f20a9d946d9f8213be0a64f3a778;>ed425fe
 Don't fail on HttpObjectDecoder's maxHeaderSize greater then 
(Integer.MAX_VAL...
   https://github.com/netty/netty/commit/a803e107614bc8aa0886b9b7ae742463c6a156c1;>a803e10
 Revert Revert Speed-up HTTP 1.1 header and line parsing (https://github-redirect.dependabot.com/netty/netty/issues/12321;>#12321)
   https://github.com/netty/netty/commit/9993e07356ea39edf14008789d3377d2bb62ea92;>9993e07
 Revert Speed-up HTTP 1.1 header and line parsing (https://github-redirect.dependabot.com/netty/netty/issues/12321;>#12321)
   https://github.com/netty/netty/commit/4475b5c5719e7e7f36f2f01e25c139bcb2b048d4;>4475b5c
 [maven-release-plugin] prepare for next development iteration
   https://github.com/netty/netty/commit/828ea7ceeb72a9e0c943df8b5fe634ce1bd9537f;>828ea7c
 [maven-release-plugin] prepare release netty-4.1.88.Final
   https://github.com/netty/netty/commit/d010e63bf5bf744f2ab6d0fc4386611efe7954e6;>d010e63
 Add handling of inflight lookups to reduce real queries when lookup same 
host...
   https://github.com/netty/netty/commit/6c0e69ab70dfd592a6a4dc538f96f486f9536a66;>6c0e69a
 WebSocketServerProtocolHandler: make HandshakeComplete constructor public (https://github-redirect.dependabot.com/netty/netty/issues/1;>#1...
   https://github.com/netty/netty/commit/06f70a4cf547039b9070ea2383f7949ceb2691e5;>06f70a4
 AsciiStrings can be batch-encoded (https://github-redirect.dependabot.com/netty/netty/issues/13197;>#13197)
   https://github.com/netty/netty/commit/272d7493864a25a0b72f6a8cfbe0605ed21e9e27;>272d749
 Add unit test that verifies cancelled entries in ChannelOutboundBuffer are 
co...
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.87.Final...netty-4.1.89.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-bom=maven=4.1.87.Final=4.1.89.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-java-chassis] branch dependabot/maven/io.netty-netty-bom-4.1.89.Final created (now fb7ad872f)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.netty-netty-bom-4.1.89.Final
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at fb7ad872f Bump netty-bom from 4.1.87.Final to 4.1.89.Final

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] closed pull request #3632: Bump netty-bom from 4.1.87.Final to 4.1.88.Final

2023-02-20 Thread via GitHub


dependabot[bot] closed pull request #3632: Bump netty-bom from 4.1.87.Final to 
4.1.88.Final
URL: https://github.com/apache/servicecomb-java-chassis/pull/3632


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-java-chassis] branch dependabot/maven/com.google.protobuf-protobuf-java-3.22.0 created (now baabb7f31)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/com.google.protobuf-protobuf-java-3.22.0
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at baabb7f31 Bump protobuf-java from 3.21.12 to 3.22.0

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3647: Bump protobuf-java from 3.21.12 to 3.22.0

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3647:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3647

   Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 
3.21.12 to 3.22.0.
   
   Commits
   
   https://github.com/protocolbuffers/protobuf/commit/a847a8dc4ba1d99e7ba917146c84438b4de7d085;>a847a8d
 Updating version.json and repo version numbers to: 22.0
   https://github.com/protocolbuffers/protobuf/commit/52e435d6836cf794a061f538fe75bea6e4f77d6e;>52e435d
 Merge pull request https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11970;>#11970
 from deannagarcia/updateDeps
   https://github.com/protocolbuffers/protobuf/commit/d327259c16528184c31b193eb302da88b84dfe3a;>d327259
 Update UPB dep
   https://github.com/protocolbuffers/protobuf/commit/8d7b4e68bf3251d7d4ec1fc8970bd1006a98493c;>8d7b4e6
 Merge pull request https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11946;>#11946
 from protocolbuffers/cp-enum-closed-comment
   https://github.com/protocolbuffers/protobuf/commit/a594141cc408b972c9ffe2bcf14958174d0a4fe4;>a594141
 Document known quirks of EnumDescriptor::is_closed() when importing across 
fi...
   https://github.com/protocolbuffers/protobuf/commit/b7f7171c31f6a1232491479d40c02920f3b2bd1d;>b7f7171
 Merge pull request https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11944;>#11944
 from protocolbuffers/gha-port-22.x
   https://github.com/protocolbuffers/protobuf/commit/d39aeac2c1113b4207774d560414cc780e64cc16;>d39aeac
 Fixing broken rust package
   https://github.com/protocolbuffers/protobuf/commit/9a5e86d4527c31bb957b5df82ef8e4a0104a3ef4;>9a5e86d
 Run continuous tests hourly to boost statistics for analysis
   https://github.com/protocolbuffers/protobuf/commit/de8bb714e252a6bc91e2b056260f9ccc495d4b4a;>de8bb71
 [ObjC] CI dbg  opt macOS bazel builds.
   https://github.com/protocolbuffers/protobuf/commit/a3970ef1f261208a98545aebf9d5369d863cecf2;>a3970ef
 Stop using 'push' event to determine privileged post-submit runs.
   Additional commits viewable in https://github.com/protocolbuffers/protobuf/compare/v3.21.12...v3.22.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java=maven=3.21.12=3.22.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3646: Bump maven-failsafe-plugin from 3.0.0-M8 to 3.0.0-M9

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3646:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3646

   Bumps [maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 
3.0.0-M8 to 3.0.0-M9.
   
   Release notes
   Sourced from https://github.com/apache/maven-surefire/releases;>maven-failsafe-plugin's
 releases.
   
   3.0.0-M9
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/SUREFIRE-2146;>[SUREFIRE-2146] 
- Don't draw border around reporting tables (https://github-redirect.dependabot.com/apache/maven-surefire/pull/596;>#596)
 https://github.com/michael-o;>@​michael-o
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/SUREFIRE-2145;>[SUREFIRE-2145] 
- Don't use Sink#figure()/Sink#figureCaption() since it… (https://github-redirect.dependabot.com/apache/maven-surefire/pull/595;>#595)
 https://github.com/michael-o;>@​michael-o
   https://issues.apache.org/jira/browse/SUREFIRE-2065;>[SUREFIRE-2065] 
- Fix parameterized JUnit4 test reporting (https://github-redirect.dependabot.com/apache/maven-surefire/pull/608;>#608)
 https://github.com/andpab;>@​andpab
   https://issues.apache.org/jira/browse/SUREFIRE-2095;>[SUREFIRE-2095] 
- Fork crash doesn't fail build with -Dmaven.test.failure.ignore=true when run 
with failsafe (https://github-redirect.dependabot.com/apache/maven-surefire/pull/545;>#545)
 https://github.com/br0nstein;>@​br0nstein
   
    Dependency updates
   
   Bump log4j-core from 2.13.1 to 2.17.1 in 
/surefire-its/src/test/resources/surefire-1659-stream-corruption (https://github-redirect.dependabot.com/apache/maven-surefire/pull/569;>#569)
 https://github.com/dependabot;>@​dependabot
   Bump junit from 4.12 to 4.13.1 in 
/surefire-its/src/test/resources/surefire-2065-junit4 (https://github-redirect.dependabot.com/apache/maven-surefire/pull/611;>#611)
 https://github.com/dependabot;>@​dependabot
   Bump commons-email from 1.2 to 1.5 in 
/surefire-its/src/test/resources/classpath-filtering (https://github-redirect.dependabot.com/apache/maven-surefire/pull/551;>#551)
 https://github.com/dependabot;>@​dependabot
   
   
   
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/6463194dc397b282c2d8963ed8af96f2d12a7eb8;>6463194
 [maven-release-plugin] prepare release surefire-3.0.0-M9
   https://github.com/apache/maven-surefire/commit/bdec059668cacd2a5744f69866cf0e41568ee616;>bdec059
 [SUREFIRE-2145] Don't use Sink#figure()/Sink#figureCaption() since it 
distort...
   https://github.com/apache/maven-surefire/commit/c2c41804a1e80bea7a39b0c8fc2b4edfe731744c;>c2c4180
 Bump log4j-core
   https://github.com/apache/maven-surefire/commit/c6ddebc08c398d40822fc3514f34cb7590e984cb;>c6ddebc
 Bump junit in /surefire-its/src/test/resources/surefire-2065-junit4 (https://github-redirect.dependabot.com/apache/maven-surefire/issues/611;>#611)
   https://github.com/apache/maven-surefire/commit/ee5e81e2d768b9b7132bd4d844947d1991a483c9;>ee5e81e
 [SUREFIRE-2146] Don't draw border around reporting tables (https://github-redirect.dependabot.com/apache/maven-surefire/issues/596;>#596)
   https://github.com/apache/maven-surefire/commit/11d05413b3104de6b856e7923ee7d327f3cba662;>11d0541
 [SUREFIRE-2065] Fix parameterized JUnit4 test reporting (https://github-redirect.dependabot.com/apache/maven-surefire/issues/608;>#608)
   https://github.com/apache/maven-surefire/commit/b8887b43c59ffe9c446e265c290694fcb2583247;>b8887b4
 Bump commons-email
   https://github.com/apache/maven-surefire/commit/59e096d9874e4cd719bef01e1dc45f9b5f7e9456;>59e096d
 [SUREFIRE-2095] Fork crash doesn't fail build with 
-Dmaven.test.failure.ignor...
   https://github.com/apache/maven-surefire/commit/2c8fe402c11773c1bc75166327c3b5c4bf520d9e;>2c8fe40
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-surefire/compare/surefire-3.0.0-M8...surefire-3.0.0-M9;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-failsafe-plugin=maven=3.0.0-M8=3.0.0-M9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - 

[servicecomb-java-chassis] branch dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.0.0-M9 created (now 81fa9298f)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-failsafe-plugin-3.0.0-M9
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 81fa9298f Bump maven-failsafe-plugin from 3.0.0-M8 to 3.0.0-M9

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3644: Bump jersey.version from 2.38 to 2.39

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3644:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3644

   Bumps `jersey.version` from 2.38 to 2.39.
   Updates `jersey-common` from 2.38 to 2.39
   
   Updates `jersey-client` from 2.38 to 2.39
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[servicecomb-java-chassis] branch dependabot/maven/io.micrometer-micrometer-bom-1.10.4 created (now 1c83bac3d)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.micrometer-micrometer-bom-1.10.4
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 1c83bac3d Bump micrometer-bom from 1.10.3 to 1.10.4

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3645: Bump micrometer-bom from 1.10.3 to 1.10.4

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3645:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3645

   Bumps [micrometer-bom](https://github.com/micrometer-metrics/micrometer) 
from 1.10.3 to 1.10.4.
   
   Release notes
   Sourced from https://github.com/micrometer-metrics/micrometer/releases;>micrometer-bom's
 releases.
   
   1.10.4
   :star: New Features / Enhancements
   
   Use Meter.Id for logging in DynatraceExporterV2 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3616;>#3616
   
   :lady_beetle: Bug Fixes
   
   Fixing Scope setting and resetting via ObservationThreadLocalAccessor https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3613;>#3613
   ObservationThreadLocalAccessor fixes https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3603;>#3603
   LogbackMetrics does not protect against StackOverflowError in arbitrary 
Counter implementations https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3623;>#3623
   [Dynatrace v2] Ensure synchronization when taking snapshots https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3615;>#3615
   Statsd UDS protocol does not work on linux ARM64 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3605;>#3605
   Hazelcast Cache Metrics, put operation count incorrect https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3556;>#3556
   
   :hammer: Dependency Upgrades
   
   Upgrade netty to 4.1.89 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3642;>#3642
   Upgrade context-propagation to 1.0.2 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3638;>#3638
   Upgrade Testcontainers to 1.17.6 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3641;>#3641
   Upgrade JUnit to 5.9.2, AssertJ to 3.24.2, Mockito to 4.11.0, Archunit 
to 1.0.1 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3640;>#3640
   Upgrade Dropwizard Metrics to 4.2.16 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3639;>#3639
   Upgrade to wavefront-sdk-java 3.0.4 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3636;>#3636
   Upgrade to reactor-bom 2020.0.27 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3634;>#3634
   Upgrade signalfx-java to 1.0.28 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3633;>#3633
   Update aws-java-sdk-cloudwatch to 1.12.405 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3632;>#3632
   Bump com.gradle.enterprise from 3.12.2 to 3.12.3 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3609;>#3609
   Update Elasticsearch Docker image versions to the latest in integration 
tests https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3595;>#3595
   Update samples to use Spring Boot 2.7.8 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3593;>#3593
   
   :memo: Tasks
   
   Remove snapshot repository for 1.10.4 https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3637;>#3637
   Fix deprecation warnings from Spotless https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3630;>#3630
   Revert Java to 18 on CircleCI for 1.10.x and above https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3612;>#3612
   Set dependabot target-branch to 1.9.x https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3610;>#3610
   Clean up compile warnings in micrometer-core https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3604;>#3604
   Add circleci config file to the circleci cache key https://github-redirect.dependabot.com/micrometer-metrics/micrometer/issues/3611;>#3611
   Add tests for OtlpConfig.resourceAttributes() https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3608;>#3608
   [Dynatrace registry v1] Use header instead of query parameter https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3596;>#3596
   Remove broken link in StackdriverSample https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3591;>#3591
   Update CircleCI images to the latest https://github-redirect.dependabot.com/micrometer-metrics/micrometer/pull/3550;>#3550
   
   :heart: Contributors
   Thank you to all the contributors who worked on this release:
   https://github.com/izeye;>@​izeye, https://github.com/pirgeo;>@​pirgeo, and https://github.com/taer;>@​taer
   
   
   
   Commits
   
   https://github.com/micrometer-metrics/micrometer/commit/3eee5ea299d550d7735a53c7257a231b427b1a18;>3eee5ea
 Upgrade netty to 4.1.89
   https://github.com/micrometer-metrics/micrometer/commit/9061a070325d658fd82b1b8509a502d862b8f603;>9061a07
 Merge branch '1.9.x' into 

[servicecomb-java-chassis] branch dependabot/maven/jersey.version-2.39 created (now 389c7ef8a)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/jersey.version-2.39
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 389c7ef8a Bump jersey.version from 2.38 to 2.39

No new revisions were added by this update.



[servicecomb-java-chassis] branch dependabot/maven/org.owasp-dependency-check-maven-8.1.0 created (now 278c50dd4)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.owasp-dependency-check-maven-8.1.0
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 278c50dd4 Bump dependency-check-maven from 8.0.2 to 8.1.0

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3643: Bump dependency-check-maven from 8.0.2 to 8.1.0

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3643:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3643

   Bumps 
[dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 
8.0.2 to 8.1.0.
   
   Release notes
   Sourced from https://github.com/jeremylong/DependencyCheck/releases;>dependency-check-maven's
 releases.
   
   Version 8.1.0
   Added
   
   Pipefile.lock files are now supported (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5404;>#5404).
   Python projects with only a pyproject.toml but no lock file 
or requirements will report an error as ODC is unable to analyze the project 
(https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5409;>#5409).
   
   Fixed
   
   Some maven projects caused false positives due to bad string 
interpolation (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5421;>#5421).
   Error message from Assembly Analyzer has been updated to emphasize 
dotnet 6 is required for analysis (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5408;>#5408).
   Correct issue where database defrag occurs even when no updates were 
performed (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5441;>#5441).
   Fixed several False Positives and one False Negative.
   Fixed the format configuration more flexible in the gradle 
plugin ([dependency-check-gradle/https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/324;>#324](https://github-redirect.dependabot.com/dependency-check/dependency-check-gradle/pull/324;>dependency-check/dependency-check-gradle#324)).
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/60?closed=1;>changes.
   
   
   
   Changelog
   Sourced from https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md;>dependency-check-maven's
 changelog.
   
   https://github.com/jeremylong/DependencyCheck/releases/tag/v8.1.0;>Version
 8.1.0 (2023-01-26)
   Added
   
   Pipefile.lock files are now supported (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5404;>#5404).
   Python projects with only a pyproject.toml but no lock file 
or requirements will report an error as ODC is unable to analyze the project 
(https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5409;>#5409).
   
   Fixed
   
   Some maven projects caused false positives due to bad string 
interpolation (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5421;>#5421).
   Error message from Assembly Analyzer has been updated to emphasize 
dotnet 6 is required for analysis (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5408;>#5408).
   Correct issue where database defrag occurs even when no updates were 
performed (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5441;>#5441).
   Fixed several False Positives and one False Negative.
   Fixed the format configuration more flexible in the gradle 
plugin ([dependency-check-gradle/https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/324;>#324](https://github-redirect.dependabot.com/dependency-check/dependency-check-gradle/pull/324;>dependency-check/dependency-check-gradle#324)).
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/60?closed=1;>changes.
   
   
   
   Commits
   
   https://github.com/jeremylong/DependencyCheck/commit/8a6517e5009e577326d9b8422f4bf8291d95f774;>8a6517e
 build:prepare release v8.1.0
   https://github.com/jeremylong/DependencyCheck/commit/6c82d9480db724f3b8b3a29800276179781b8cc0;>6c82d94
 docs: release notes
   https://github.com/jeremylong/DependencyCheck/commit/1347904b723b2fe7fd90a55c6ed79cb667303ced;>1347904
 build(deps): bump amannn/action-semantic-pull-request from 5.0.2 to 5.1.0 (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5;>#5...
   https://github.com/jeremylong/DependencyCheck/commit/c8bd0acf4cd8a0a29932bfe0e2509ae412ca14a9;>c8bd0ac
 fix(fp): False Positives on GitPython (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5442;>#5442)
   https://github.com/jeremylong/DependencyCheck/commit/6cb9f337edee4037d57c34861550dc4ca7323942;>6cb9f33
 fix: correctly return update status in KnownExploitedDataSource (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5441;>#5441)
   https://github.com/jeremylong/DependencyCheck/commit/182721d263abb2dab6f8658bb6d7cb71253bfb83;>182721d
 fix: resolve false negative on yii2 (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5434;>#5434)
   https://github.com/jeremylong/DependencyCheck/commit/8cde561fb9a21344e729d32d6f632d46d87ff966;>8cde561
 fix: ensure pyproject.toml has lock (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5409;>#5409)
   

[servicecomb-java-chassis] branch dependabot/maven/net.bytebuddy-byte-buddy-1.14.0 created (now cd6431956)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/net.bytebuddy-byte-buddy-1.14.0
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at cd6431956 Bump byte-buddy from 1.12.23 to 1.14.0

No new revisions were added by this update.



[GitHub] [servicecomb-java-chassis] dependabot[bot] closed pull request #3631: Bump byte-buddy from 1.12.23 to 1.13.0

2023-02-20 Thread via GitHub


dependabot[bot] closed pull request #3631: Bump byte-buddy from 1.12.23 to 
1.13.0
URL: https://github.com/apache/servicecomb-java-chassis/pull/3631


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] dependabot[bot] commented on pull request #3631: Bump byte-buddy from 1.12.23 to 1.13.0

2023-02-20 Thread via GitHub


dependabot[bot] commented on PR #3631:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/3631#issuecomment-1436510661

   Superseded by #3642.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3642: Bump byte-buddy from 1.12.23 to 1.14.0

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3642:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3642

   Bumps [byte-buddy](https://github.com/raphw/byte-buddy) from 1.12.23 to 
1.14.0.
   
   Release notes
   Sourced from https://github.com/raphw/byte-buddy/releases;>byte-buddy's 
releases.
   
   Byte Buddy 1.14.0
   
   Add Step.Factory.ForDelegation in 
MemberSubstitution that allows for delegation similar to 
MethodDelegation but in-code.
   Add handlers for MethodDelegation and Advice 
that leverage method handles for field access and self-invocation.
   Add Step.Factory for type assignment that allows casting 
the return value from a previous step to another type.
   Avoid usage of URL class loader as it is deprecated, and 
use newer method if available.
   
   Byte Buddy 1.13.0
   
   Complete MemberSubstitution API which now retains the 
original instruction for invocation.
   Allow excluding methods from a MethodGraph.Compiler using 
an ElementMatcher.
   Add a filtering ClassFileLocator.
   Add a matcher for a type's ClassFileVersion.
   Unify resolution of constant values by introducing a 
ConstantValue API.
   Do not exclude ToThrown assignment on void 
methods.
   Allow constructors as target in MemberSubstitution.
   
   
   
   
   Changelog
   Sourced from https://github.com/raphw/byte-buddy/blob/master/release-notes.md;>byte-buddy's
 changelog.
   
   18. February 2023: version 1.14.0
   
   Add Step.Factory.ForDelegation in 
MemberSubstitution that allows for delegation similar to 
MethodDelegation but in-code.
   Add handlers for MethodDelegation and Advice 
that leverage method handles for field access and self-invocation.
   Add Step.Factory for type assignment that allows casting 
the return value from a previous step to another type.
   Avoid usage of URL class loader as it is deprecated, and 
use newer method if available.
   
   13. February 2023: version 1.13.0
   
   Complete MemberSubstitution API which now retains the 
original instruction for invocation.
   Allow excluding methods from a MethodGraph.Compiler using 
an ElementMatcher.
   Add a filtering ClassFileLocator.
   Add a matcher for a type's ClassFileVersion.
   Unify resolution of constant values by introducing a 
ConstantValue API.
   Do not exclude ToThrown assignment on void 
methods.
   Allow constructors as target in MemberSubstitution.
   
   
   
   
   Commits
   
   https://github.com/raphw/byte-buddy/commit/00da41ec542a0cee1029b500522bdfd8145e34da;>00da41e
 [maven-release-plugin] prepare release byte-buddy-1.14.0
   https://github.com/raphw/byte-buddy/commit/c601a7886aadcc7cc7965e4ab15ecd4702417310;>c601a78
 [release] Release new version
   https://github.com/raphw/byte-buddy/commit/102ee254402c22e7730f74b9808c5550966945c5;>102ee25
 Avoid test execution on Java 7.
   https://github.com/raphw/byte-buddy/commit/3b5f4dcb8a15e969a2b4befa9a4d850ff7f494ad;>3b5f4dc
 Remove unused packages.
   https://github.com/raphw/byte-buddy/commit/b42f78b2a5de74abe32180058f06c75a4469a21b;>b42f78b
 Add scheme part to URI.
   https://github.com/raphw/byte-buddy/commit/d94d66a18c320cdd1b8e951a8a1dae1a2745d78a;>d94d66a
 Add scheme part to URI.
   https://github.com/raphw/byte-buddy/commit/aaa18f29c901949d7109bff2372ce0e282df1171;>aaa18f2
 Adjust expectation for dynamic lambda invocation.
   https://github.com/raphw/byte-buddy/commit/0f3bd5f2e6af453110dd1289fbc90664b81027fb;>0f3bd5f
 Add hints for spotbugs.
   https://github.com/raphw/byte-buddy/commit/c2242c7f3c0b91e502cf3584aafb917c4457ece3;>c2242c7
 fix javadoc.
   https://github.com/raphw/byte-buddy/commit/0a2e4ea5d20340869f65c323f867c19c4ea09ecb;>0a2e4ea
 Merge pull request https://github-redirect.dependabot.com/raphw/byte-buddy/issues/1407;>#1407
 from capthua/master
   Additional commits viewable in https://github.com/raphw/byte-buddy/compare/byte-buddy-1.12.23...byte-buddy-1.14.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.bytebuddy:byte-buddy=maven=1.12.23=1.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested 

[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3641: Bump maven-surefire-plugin from 3.0.0-M8 to 3.0.0-M9

2023-02-20 Thread via GitHub


dependabot[bot] opened a new pull request, #3641:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3641

   Bumps [maven-surefire-plugin](https://github.com/apache/maven-surefire) from 
3.0.0-M8 to 3.0.0-M9.
   
   Release notes
   Sourced from https://github.com/apache/maven-surefire/releases;>maven-surefire-plugin's
 releases.
   
   3.0.0-M9
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/SUREFIRE-2146;>[SUREFIRE-2146] 
- Don't draw border around reporting tables (https://github-redirect.dependabot.com/apache/maven-surefire/pull/596;>#596)
 https://github.com/michael-o;>@​michael-o
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/SUREFIRE-2145;>[SUREFIRE-2145] 
- Don't use Sink#figure()/Sink#figureCaption() since it… (https://github-redirect.dependabot.com/apache/maven-surefire/pull/595;>#595)
 https://github.com/michael-o;>@​michael-o
   https://issues.apache.org/jira/browse/SUREFIRE-2065;>[SUREFIRE-2065] 
- Fix parameterized JUnit4 test reporting (https://github-redirect.dependabot.com/apache/maven-surefire/pull/608;>#608)
 https://github.com/andpab;>@​andpab
   https://issues.apache.org/jira/browse/SUREFIRE-2095;>[SUREFIRE-2095] 
- Fork crash doesn't fail build with -Dmaven.test.failure.ignore=true when run 
with failsafe (https://github-redirect.dependabot.com/apache/maven-surefire/pull/545;>#545)
 https://github.com/br0nstein;>@​br0nstein
   
    Dependency updates
   
   Bump log4j-core from 2.13.1 to 2.17.1 in 
/surefire-its/src/test/resources/surefire-1659-stream-corruption (https://github-redirect.dependabot.com/apache/maven-surefire/pull/569;>#569)
 https://github.com/dependabot;>@​dependabot
   Bump junit from 4.12 to 4.13.1 in 
/surefire-its/src/test/resources/surefire-2065-junit4 (https://github-redirect.dependabot.com/apache/maven-surefire/pull/611;>#611)
 https://github.com/dependabot;>@​dependabot
   Bump commons-email from 1.2 to 1.5 in 
/surefire-its/src/test/resources/classpath-filtering (https://github-redirect.dependabot.com/apache/maven-surefire/pull/551;>#551)
 https://github.com/dependabot;>@​dependabot
   
   
   
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/6463194dc397b282c2d8963ed8af96f2d12a7eb8;>6463194
 [maven-release-plugin] prepare release surefire-3.0.0-M9
   https://github.com/apache/maven-surefire/commit/bdec059668cacd2a5744f69866cf0e41568ee616;>bdec059
 [SUREFIRE-2145] Don't use Sink#figure()/Sink#figureCaption() since it 
distort...
   https://github.com/apache/maven-surefire/commit/c2c41804a1e80bea7a39b0c8fc2b4edfe731744c;>c2c4180
 Bump log4j-core
   https://github.com/apache/maven-surefire/commit/c6ddebc08c398d40822fc3514f34cb7590e984cb;>c6ddebc
 Bump junit in /surefire-its/src/test/resources/surefire-2065-junit4 (https://github-redirect.dependabot.com/apache/maven-surefire/issues/611;>#611)
   https://github.com/apache/maven-surefire/commit/ee5e81e2d768b9b7132bd4d844947d1991a483c9;>ee5e81e
 [SUREFIRE-2146] Don't draw border around reporting tables (https://github-redirect.dependabot.com/apache/maven-surefire/issues/596;>#596)
   https://github.com/apache/maven-surefire/commit/11d05413b3104de6b856e7923ee7d327f3cba662;>11d0541
 [SUREFIRE-2065] Fix parameterized JUnit4 test reporting (https://github-redirect.dependabot.com/apache/maven-surefire/issues/608;>#608)
   https://github.com/apache/maven-surefire/commit/b8887b43c59ffe9c446e265c290694fcb2583247;>b8887b4
 Bump commons-email
   https://github.com/apache/maven-surefire/commit/59e096d9874e4cd719bef01e1dc45f9b5f7e9456;>59e096d
 [SUREFIRE-2095] Fork crash doesn't fail build with 
-Dmaven.test.failure.ignor...
   https://github.com/apache/maven-surefire/commit/2c8fe402c11773c1bc75166327c3b5c4bf520d9e;>2c8fe40
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-surefire/compare/surefire-3.0.0-M8...surefire-3.0.0-M9;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-surefire-plugin=maven=3.0.0-M8=3.0.0-M9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - 

[servicecomb-java-chassis] branch dependabot/maven/org.apache.maven.plugins-maven-surefire-plugin-3.0.0-M9 created (now 5b6c67ab2)

2023-02-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-surefire-plugin-3.0.0-M9
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


  at 5b6c67ab2 Bump maven-surefire-plugin from 3.0.0-M8 to 3.0.0-M9

No new revisions were added by this update.