Re: [PR] Fix triple client connection shareing race condition [dubbo]

2024-09-24 Thread via GitHub


oxsean commented on code in PR #14718:
URL: https://github.com/apache/dubbo/pull/14718#discussion_r1773128539


##
dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/api/connection/AbstractConnectionClient.java:
##
@@ -61,13 +61,17 @@ public final void increase() {
 /**
  * Increments the reference count by 1.
  */
-public final AbstractConnectionClient retain() {
+public final boolean retain() {
 long oldCount = COUNTER_UPDATER.getAndIncrement(this);
 if (oldCount <= 0) {
 COUNTER_UPDATER.getAndDecrement(this);
-throw new AssertionError("This instance has been destroyed");
+logger.warn(

Review Comment:
   Should set error code



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] [Bug] DefaultFuture throw "java.lang.ClassCircularityError: java/util/concurrent/ThreadLocalRandom" [dubbo]

2024-09-24 Thread via GitHub


bert82503 commented on issue #14578:
URL: https://github.com/apache/dubbo/issues/14578#issuecomment-2370927431

   > Hi, our encounter same issue, are you has resolved?
   
   @rf-guo  SkyWalking has resolved this issue, please see  
apache/skywalking#12572


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[I] [Bug] race condition causing consumer gets the destroyed connection [dubbo]

2024-09-24 Thread via GitHub


chickenlj opened a new issue, #14717:
URL: https://github.com/apache/dubbo/issues/14717

   ### Pre-check
   
   - [X] I am sure that all the content I provide is in English.
   
   
   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/dubbo/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Apache Dubbo Component
   
   Java SDK (apache/dubbo)
   
   ### Dubbo Version
   
   3.3.0
   
   ### Steps to reproduce this issue
   
   As designed, on consumer side,  all services share the same TCP connection 
to one specific provider address. Dubbo framework maintains a connection 
instance with a counter that tracks the number of services that are using the 
connection. When a new service created, the counter increases, when one 
existing service destroyed, the counter decreases.
   
   This issue is about a race condition between services sharing the same 
connection. In short, when `MetadataService` is destroying, the connection 
reaches a point where the counter has decreased and reaches 0 but hasn't been 
removed from the connection pool (waiting for async callback to remove). At 
this point, a new service receives address notification with one one of the 
addresses pointing to that connection, the invoker gets the connection created 
by `MetadataService`, which has been marked as closed and waiting for removing 
(counter==0). 
   
   Some related code snippets are listed below 
   
   ```java
   public final AbstractConnectionClient retain() {
   long oldCount = COUNTER_UPDATER.getAndIncrement(this);
   if (oldCount <= 0) {
   COUNTER_UPDATER.getAndDecrement(this);
   throw new AssertionError("This instance has been destroyed");
   }
   return this;
   }
   ```
   
   
   ```java
   public AbstractConnectionClient connect(URL url, ChannelHandler handler) {
   if (url == null) {
   throw new IllegalArgumentException("url == null");
   }
   return connections.compute(url.getAddress(), (address, conn) -> {
   if (conn == null) {
   String transport = 
url.getParameter(Constants.TRANSPORTER_KEY, "netty4");
   ConnectionManager manager = frameworkModel
   .getExtensionLoader(ConnectionManager.class)
   .getExtension(transport);
   final AbstractConnectionClient connectionClient = 
manager.connect(url, handler);
   connectionClient.addCloseListener(() -> 
connections.remove(address, connectionClient));
   return connectionClient;
   } else {
   conn.retain();
   return conn;
   }
   });
   }
   ```
   
   ```java
   public boolean release() {
   long remainingCount = COUNTER_UPDATER.decrementAndGet(this);
   
   if (remainingCount == 0) {
   destroy();
   return true;
   } else if (remainingCount <= -1) {
   logger.warn(PROTOCOL_ERROR_CLOSE_CLIENT, "", "", "This instance 
has been destroyed");
   return false;
   } else {
   return false;
   }
   }
   ```
   
   ### What you expected to happen
   
   Don't throw exception, instead, create a new connection when finding the 
shared connection has been closed.
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request to fix on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Close the connection but not the client [dubbo]

2024-09-24 Thread via GitHub


wilsonwu commented on code in PR #13600:
URL: https://github.com/apache/dubbo/pull/13600#discussion_r1773050403


##
dubbo-remoting/dubbo-remoting-netty4/src/main/java/org/apache/dubbo/remoting/transport/netty4/NettyConnectionClient.java:
##
@@ -131,7 +131,8 @@ protected void initChannel(SocketChannel ch) {
 
 NettyConfigOperator operator = new 
NettyConfigOperator(nettyChannel, getChannelHandler());
 protocol.configClientPipeline(getUrl(), operator, 
nettySslContextOperator);
-ch.closeFuture().addListener(channelFuture -> doClose());
+// set null but do not close this client, it will be reconnect 
in the future
+ch.closeFuture().addListener(channelFuture -> 
channel.set(null));

Review Comment:
   We downgrade to 3.2.10, till now, all works fine.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[I] [Bug] Potential memory leak in certain scenarios caused by MetadataServiceV2 [dubbo]

2024-09-24 Thread via GitHub


chickenlj opened a new issue, #14716:
URL: https://github.com/apache/dubbo/issues/14716

   ### Pre-check
   
   - [X] I am sure that all the content I provide is in English.
   
   
   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/dubbo/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Apache Dubbo Component
   
   Java SDK (apache/dubbo)
   
   ### Dubbo Version
   
   3.3.0
   
   ### Steps to reproduce this issue
   
   Start a regular provider and consumer, enable application-level service 
discovery by adding the following configuration on provider side:
   
   ```yaml
   dubbo:
 registry:
   register-mode: instance
   ```
   
   Dump the heap on consumer side after it starts successfully, and find the 
metadata proxy instance doesn't destroy as expected.
   
   The root reason is that `MetadataServiceV2` is a stub type proxy instead of 
a reflection proxy type, so it does not implement `Destroyable`.
   
   ```java
   public void destroy() {
 if (proxy instanceof Destroyable) {
 ((Destroyable) proxy).$destroy();
 }
   
 if (proxyV2 instanceof Destroyable) {
 ((Destroyable) proxyV2).$destroy();
 }
   
 
internalModel.getServiceRepository().unregisterConsumer(consumerModel);
   }
   ```
   
   Even if `MetadataServiceV2` instances failed to destroy as expected, the 
number of these instances won't increase with no limitation.  In most cases, 
the number of instances of `MetadataServiceV2` will stop when it reaches the 
number of the provider instances, AKA, the maximum number depends on how many 
provider ips you have. 
   
   However, in certain scenarios, `MetadataServiceV2` instances will keep 
growing as the provider instance redeploys with some Dubbo-related changes that 
can cause `revision` changes.
   
   ### What you expected to happen
   
   `MetadataServiceV2` destroyed every time.
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request to fix on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] [Bug] Dubbo 3.2.11 work with Istio get no provider, connection error [dubbo]

2024-09-24 Thread via GitHub


chickenlj commented on issue #14715:
URL: https://github.com/apache/dubbo/issues/14715#issuecomment-2370754288

   What's the service discovery mechanism that is used on the consumer side?
   
   Is dubbo consumer SDK or sidecar responsible for subscribing addresses from 
registry?


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Close the connection but not the client [dubbo]

2024-09-24 Thread via GitHub


wilsonwu commented on code in PR #13600:
URL: https://github.com/apache/dubbo/pull/13600#discussion_r1772901312


##
dubbo-remoting/dubbo-remoting-netty4/src/main/java/org/apache/dubbo/remoting/transport/netty4/NettyConnectionClient.java:
##
@@ -131,7 +131,8 @@ protected void initChannel(SocketChannel ch) {
 
 NettyConfigOperator operator = new 
NettyConfigOperator(nettyChannel, getChannelHandler());
 protocol.configClientPipeline(getUrl(), operator, 
nettySslContextOperator);
-ch.closeFuture().addListener(channelFuture -> doClose());
+// set null but do not close this client, it will be reconnect 
in the future
+ch.closeFuture().addListener(channelFuture -> 
channel.set(null));

Review Comment:
   Seems this change with problem, not sure if only set channel status to null 
will cause problem or not? Maybe need dubbo or netty expert to help to answer.
   
   Because we found some problems that 3.2.11 version work with istio, suggest 
to evaluate and test this change again.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Close the connection but not the client [dubbo]

2024-09-24 Thread via GitHub


wilsonwu commented on code in PR #13600:
URL: https://github.com/apache/dubbo/pull/13600#discussion_r1772901312


##
dubbo-remoting/dubbo-remoting-netty4/src/main/java/org/apache/dubbo/remoting/transport/netty4/NettyConnectionClient.java:
##
@@ -131,7 +131,8 @@ protected void initChannel(SocketChannel ch) {
 
 NettyConfigOperator operator = new 
NettyConfigOperator(nettyChannel, getChannelHandler());
 protocol.configClientPipeline(getUrl(), operator, 
nettySslContextOperator);
-ch.closeFuture().addListener(channelFuture -> doClose());
+// set null but do not close this client, it will be reconnect 
in the future
+ch.closeFuture().addListener(channelFuture -> 
channel.set(null));

Review Comment:
   Seems this change with problem, not sure if only set channel status to null 
will cause problem or not? Maybe need dubbo or netty expert to help to answer.
   
   Suggest to evaluate and test this change again.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Change QL naming [dubbo-kubernetes]

2024-09-24 Thread via GitHub


mfordjody merged PR #376:
URL: https://github.com/apache/dubbo-kubernetes/pull/376


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] dubbo3.0自定义拦截器报错 No such extension xxx filter/org.apache.dubbo.rpc.Filter,org.apache.dubbo.rpc.cluster.filter.ClusterFilter [dubbo]

2024-09-24 Thread via GitHub


zcmm1314 commented on issue #12755:
URL: https://github.com/apache/dubbo/issues/12755#issuecomment-2370531869

   遇到相同的问题请问这个问题解决了吗


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Change QL naming [dubbo-kubernetes]

2024-09-24 Thread via GitHub


mfordjody opened a new pull request, #376:
URL: https://github.com/apache/dubbo-kubernetes/pull/376

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[I] [Bug] Dubbo 3.2.11 work with Istio get no provider, can't connect error [dubbo]

2024-09-24 Thread via GitHub


wilsonwu opened a new issue, #14715:
URL: https://github.com/apache/dubbo/issues/14715

   ### Pre-check
   
   - [X] I am sure that all the content I provide is in English.
   
   
   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/dubbo/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Apache Dubbo Component
   
   Java SDK (apache/dubbo)
   
   ### Dubbo Version
   
   Dubbo 3.2.11
   
   ### Steps to reproduce this issue
   
   Use triple call provider api with istio sidecar injection, after about 1-2 
hours, get RPC error, the log shows no provider problem.
   
   By troubleshooting, we found the problem may be netty get the wrong 
connection status, the connection is health, but netty mark it as bad, so the 
RPC has been terminated.
   
   ### What you expected to happen
   
   Work fine as it start.
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request to fix on your own?
   
   - [ ] Yes I am willing to submit a pull request on my own!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Again combabilite restart logic [dubbo-kubernetes]

2024-09-24 Thread via GitHub


mfordjody merged PR #375:
URL: https://github.com/apache/dubbo-kubernetes/pull/375


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Again combabilite restart logic [dubbo-kubernetes]

2024-09-24 Thread via GitHub


mfordjody opened a new pull request, #375:
URL: https://github.com/apache/dubbo-kubernetes/pull/375

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Fix action repeat [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody merged PR #374:
URL: https://github.com/apache/dubbo-kubernetes/pull/374


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Fix action repeat [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody opened a new pull request, #374:
URL: https://github.com/apache/dubbo-kubernetes/pull/374

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] pod Anomaly cleanup preliminaries [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody merged PR #373:
URL: https://github.com/apache/dubbo-kubernetes/pull/373


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] pod Anomaly cleanup preliminaries [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody opened a new pull request, #373:
URL: https://github.com/apache/dubbo-kubernetes/pull/373

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Returns a matching http status code based on the rest mappings [dubbo]

2024-09-23 Thread via GitHub


oxsean opened a new pull request, #14714:
URL: https://github.com/apache/dubbo/pull/14714

   ## What is the purpose of the change?
   
   
   ## Checklist
   - [x] Make sure there is a 
[GitHub_issue](https://github.com/apache/dubbo/issues) field for the change.
   - [x] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   - [x] Write necessary unit-test to verify your logic correction. If the new 
feature or significant change is committed, please remember to add sample in 
[dubbo samples](https://github.com/apache/dubbo-samples) project.
   - [x] Make sure gitHub actions can pass. [Why the workflow is failing and 
how to fix it?](./CONTRIBUTING.md)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] feat: Improve RPC communication based on HTTP/2 [dubbo-js]

2024-09-23 Thread via GitHub


sonarcloud[bot] commented on PR #403:
URL: https://github.com/apache/dubbo-js/pull/403#issuecomment-2368471349

   ## [![Quality Gate 
Failed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-failed-20px.png
 'Quality Gate 
Failed')](https://sonarcloud.io/dashboard?id=apache_dubbo-js&pullRequest=403) 
**Quality Gate failed**  
   Failed conditions  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/failed-16px.png
 '') [4.0% Duplication on New 
Code](https://sonarcloud.io/component_measures?id=apache_dubbo-js&pullRequest=403&metric=new_duplicated_lines_density&view=list)
 (required ≤ 3%)  
 
   [See analysis details on 
SonarCloud](https://sonarcloud.io/dashboard?id=apache_dubbo-js&pullRequest=403)
   
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Added support for configuring Tomcat HTTP2 max stream size in Spring boot [dubbo]

2024-09-23 Thread via GitHub


oxsean commented on code in PR #14702:
URL: https://github.com/apache/dubbo/pull/14702#discussion_r1771420082


##
dubbo-spring-boot/dubbo-spring-boot-3-autoconfigure/pom.xml:
##
@@ -68,9 +68,9 @@
 
 
 
-  jakarta.servlet
-  jakarta.servlet-api
-  true
+  org.apache.tomcat.embed
+  tomcat-embed-core
+  provided

Review Comment:
   > This change will cause users to have to use Tomcat.
   
   The scope is provided, which doesn't have any actual impact, just adds 
special support for Tomcat, as Tomcat already includes the servlet-api, so it 
can be replaced directly.
   Add a ConditionalOnClass to avoid dependency on tomcat.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Added support for configuring Tomcat HTTP2 max stream size in Spring boot [dubbo]

2024-09-23 Thread via GitHub


oxsean commented on code in PR #14702:
URL: https://github.com/apache/dubbo/pull/14702#discussion_r1771420082


##
dubbo-spring-boot/dubbo-spring-boot-3-autoconfigure/pom.xml:
##
@@ -68,9 +68,9 @@
 
 
 
-  jakarta.servlet
-  jakarta.servlet-api
-  true
+  org.apache.tomcat.embed
+  tomcat-embed-core
+  provided

Review Comment:
   > This change will cause users to have to use Tomcat.
   The scope is provided, which doesn't have any actual impact, just adds 
special support for Tomcat, as Tomcat already includes the servlet-api, so it 
can be replaced directly.



##
dubbo-spring-boot/dubbo-spring-boot-3-autoconfigure/pom.xml:
##
@@ -68,9 +68,9 @@
 
 
 
-  jakarta.servlet
-  jakarta.servlet-api
-  true
+  org.apache.tomcat.embed
+  tomcat-embed-core
+  provided

Review Comment:
   > This change will cause users to have to use Tomcat.
   
   The scope is provided, which doesn't have any actual impact, just adds 
special support for Tomcat, as Tomcat already includes the servlet-api, so it 
can be replaced directly.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] fixed DaemonSet typo [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody merged PR #372:
URL: https://github.com/apache/dubbo-kubernetes/pull/372


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] fixed DaemonSet typo [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody opened a new pull request, #372:
URL: https://github.com/apache/dubbo-kubernetes/pull/372

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] dynamic Router and Cluster from registry center [dubbo-go-pixiu]

2024-09-23 Thread via GitHub


sonarcloud[bot] commented on PR #632:
URL: https://github.com/apache/dubbo-go-pixiu/pull/632#issuecomment-2367859517

   ## [![Quality Gate 
Passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-passed-20px.png
 'Quality Gate 
Passed')](https://sonarcloud.io/dashboard?id=apache_dubbo-go-pixiu&pullRequest=632)
 **Quality Gate passed**  
   Issues  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 New 
issues](https://sonarcloud.io/project/issues?id=apache_dubbo-go-pixiu&pullRequest=632&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png
 '') [0 Accepted 
issues](https://sonarcloud.io/project/issues?id=apache_dubbo-go-pixiu&pullRequest=632&issueStatuses=ACCEPTED)
   
   Measures  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 Security 
Hotspots](https://sonarcloud.io/project/security_hotspots?id=apache_dubbo-go-pixiu&pullRequest=632&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Coverage on New 
Code](https://sonarcloud.io/component_measures?id=apache_dubbo-go-pixiu&pullRequest=632&metric=new_coverage&view=list)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Duplication on New 
Code](https://sonarcloud.io/component_measures?id=apache_dubbo-go-pixiu&pullRequest=632&metric=new_duplicated_lines_density&view=list)
  
 
   [See analysis details on 
SonarCloud](https://sonarcloud.io/dashboard?id=apache_dubbo-go-pixiu&pullRequest=632)
   
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] dynamic Router and Cluster from registry center [dubbo-go-pixiu]

2024-09-23 Thread via GitHub


FoghostCn commented on PR #632:
URL: https://github.com/apache/dubbo-go-pixiu/pull/632#issuecomment-2367832867

   ci fixed in https://github.com/apache/dubbo-go-pixiu-samples/pull/58


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Cordon logic repair [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody merged PR #371:
URL: https://github.com/apache/dubbo-kubernetes/pull/371


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Cordon logic repair [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody opened a new pull request, #371:
URL: https://github.com/apache/dubbo-kubernetes/pull/371

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] node downtime logic in effect [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody merged PR #370:
URL: https://github.com/apache/dubbo-kubernetes/pull/370


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] node downtime logic in effect [dubbo-kubernetes]

2024-09-23 Thread via GitHub


mfordjody opened a new pull request, #370:
URL: https://github.com/apache/dubbo-kubernetes/pull/370

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump org.springframework.boot:spring-boot-maven-plugin from 2.3.4.RELEASE to 2.7.18 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub
ot/issues/26814";>#26814
   Add how-to documentation for test-only database migrations with 
Flyway/Liquibase https://redirect.github.com/spring-projects/spring-boot/issues/26796";>#26796
   
   :hammer: Dependency Upgrades
   
   Upgrade to ActiveMQ 5.16.7 https://redirect.github.com/spring-projects/spring-boot/issues/38427";>#38427
   Upgrade to DB2 JDBC 11.5.9.0 https://redirect.github.com/spring-projects/spring-boot/issues/38428";>#38428
   Upgrade to Dropwizard Metrics 4.2.22 https://redirect.github.com/spring-projects/spring-boot/issues/38429";>#38429
   Upgrade to Elasticsearch 7.17.15 https://redirect.github.com/spring-projects/spring-boot/issues/38430";>#38430
   Upgrade to Glassfish JAXB 2.3.9 https://redirect.github.com/spring-projects/spring-boot/issues/38431";>#38431
   Upgrade to Micrometer 1.9.17 https://redirect.github.com/spring-projects/spring-boot/issues/38279";>#38279
   Upgrade to Netty 4.1.101.Final https://redirect.github.com/spring-projects/spring-boot/issues/38432";>#38432
   Upgrade to Pooled JMS 1.2.6 https://redirect.github.com/spring-projects/spring-boot/issues/38433";>#38433
   Upgrade to Reactor Bom 2020.0.38 https://redirect.github.com/spring-projects/spring-boot/issues/38280";>#38280
   Upgrade to Spring Batch 4.3.10 https://redirect.github.com/spring-projects/spring-boot/issues/38281";>#38281
   Upgrade to Spring Data Bom 2021.2.18 https://redirect.github.com/spring-projects/spring-boot/issues/38282";>#38282
   Upgrade to Spring Framework 5.3.31 https://redirect.github.com/spring-projects/spring-boot/issues/38283";>#38283
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/spring-projects/spring-boot/commit/0c8b382d42db22b92efcf47000d0ff9ef4971629";>0c8b382
 Release v2.7.18
   https://github.com/spring-projects/spring-boot/commit/5490e73922b37a7f0bdde43eb318cb1038b45d60";>5490e73
 Improve Tags generation for methods names
   https://github.com/spring-projects/spring-boot/commit/7ad6e4470c945ae0e39e63af28c47aebbe27bbc0";>7ad6e44
 Upgrade to Spring Batch 4.3.10
   https://github.com/spring-projects/spring-boot/commit/a6346fba08f78f01737d192be1b4221e8c365684";>a6346fb
 Merge pull request https://redirect.github.com/spring-projects/spring-boot/issues/38385";>#38385
 from PENEKhun
   https://github.com/spring-projects/spring-boot/commit/0171ed205cba038e0b8462228df3448cbc81c518";>0171ed2
 Polish "Document comments in SQL for database initialization"
   https://github.com/spring-projects/spring-boot/commit/578d0436e07b5fc7076e2eb22f2e3176abaf4f0a";>578d043
 Document comments in SQL for database initialization
   https://github.com/spring-projects/spring-boot/commit/49c4f33919261a63c2b5eed1fd80fea0aed4b36f";>49c4f33
 Prepare for the final OSS release of 2.7.x
   https://github.com/spring-projects/spring-boot/commit/b473ffdea2b53a1fc7ee46f0b6c304f0d3ed";>b473ffd
 Upgrade to Spring Integration 5.5.20
   https://github.com/spring-projects/spring-boot/commit/d1cce0f8ef705b1989f36484c3d9f337b5e1449f";>d1cce0f
 Upgrade default CNB builders to Paketo Jammy
   https://github.com/spring-projects/spring-boot/commit/95fbb49a08dcdf49ca748cceafb1c98494e0b225";>95fbb49
 Upgrade to Tomcat 9.0.83
   Additional commits viewable in https://github.com/spring-projects/spring-boot/compare/v2.3.4.RELEASE...v2.7.18";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework.boot:spring-boot-maven-plugin&package-manager=maven&previous-version=2.3.4.RELEASE&new-version=2.7.18)](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 show  ignore conditions` will show all of 
th

[PR] Bump org.apache.fury:fury-core from 0.7.0 to 0.7.1 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #517:
URL: https://github.com/apache/dubbo-spi-extensions/pull/517

   Bumps org.apache.fury:fury-core from 0.7.0 to 0.7.1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.fury:fury-core&package-manager=maven&previous-version=0.7.0&new-version=0.7.1)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.apache.thrift:libthrift from 0.12.0 to 0.20.0 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] closed pull request #423: Bump org.apache.thrift:libthrift from 
0.12.0 to 0.20.0
URL: https://github.com/apache/dubbo-spi-extensions/pull/423


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump org.apache.thrift:libthrift from 0.12.0 to 0.21.0 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #516:
URL: https://github.com/apache/dubbo-spi-extensions/pull/516

   Bumps [org.apache.thrift:libthrift](https://github.com/apache/thrift) from 
0.12.0 to 0.21.0.
   
   Release notes
   Sourced from https://github.com/apache/thrift/releases";>org.apache.thrift:libthrift's 
releases.
   
   Version 0.21.0
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.20.0
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.19.0
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.18.1
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.18.0
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.17.0
   Please head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets listed below are added by Github based on the release tag and 
they will therefore not match the checkums published on the Thrift project 
website.
   Version 0.16.0
   For release 0.16.0 head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets below are added by Github based on the release tag and they 
may therefore not match the checkums.
   Version 0.15.0
   For release 0.15.0 head over to the official release download source:
   http://thrift.apache.org/download";>http://thrift.apache.org/download
   The assets below are added by Github based on the release tag and they 
may therefore not match the checkums.
   Version 0.14.2
   
   
   ... (truncated)
   
   
   Changelog
   Sourced from https://github.com/apache/thrift/blob/master/CHANGES.md";>org.apache.thrift:libthrift's
 changelog.
   
   0.21.0
   Build Process
   
   https://issues.apache.org/jira/browse/THRIFT-5815";>THRIFT-5815 - 
veralign.sh broken and incomplete
   https://issues.apache.org/jira/browse/THRIFT-5810";>THRIFT-5810 - 
Wrong installation path for static MSVC libs.
   https://issues.apache.org/jira/browse/THRIFT-5755";>THRIFT-5755 - 
Docker image build fail
   
   C++
   
   https://issues.apache.org/jira/browse/THRIFT-5272";>THRIFT-5272 - 
printTo does not properly handle i8 datatypes
   https://issues.apache.org/jira/browse/THRIFT-5492";>THRIFT-5492 - 
Bogus END_OF_FILE exception
   https://issues.apache.org/jira/browse/THRIFT-5678";>THRIFT-5678 - 
TConnectedClient: warning due to non-virtual dtor
   https://issues.apache.org/jira/browse/THRIFT-5682";>THRIFT-5682 - UB 
in generated C++ codestops compiling with C++20"
   https://issues.apache.org/jira/browse/THRIFT-5709";>THRIFT-5709 - 
Drastically improve to_num() performace
   https://issues.apache.org/jira/browse/THRIFT-5772";>THRIFT-5772 - Add 
UUID support for C++
   https://issues.apache.org/jira/browse/THRIFT-5773";>THRIFT-5773 - UUID 
wrapper for C++
   https://issues.apache.org/jira/browse/THRIFT-5816";>THRIFT-5816 - Fix 
UUID for boost 1.86.0 (change in data member usage)
   
   Compiler (General)
   
   https://issues.apache.org/jira/browse/THRIFT-5800";>THRIFT-5800 - 
"Could not find include file foo.thrift" probably should be failure 
instead of warning
   https://issues.apache.org/jira/browse/THRIFT-5766";>THRIFT-5766 - 
Replace std::endl with "\n"
   
   Delphi
   
   https://issues.apache.org/jira/browse/THRIFT-5789";>THRIFT-5789 - 
Refactor test suite client implementation
   https://issues.apache.org/jira/browse/THRIFT-5782";>THRIFT-5782 - 
implement full deprecation support
   https://issues.apache.org/jira/bro

Re: [PR] Bump org.apache.thrift:libthrift from 0.12.0 to 0.20.0 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] commented on PR #423:
URL: 
https://github.com/apache/dubbo-spi-extensions/pull/423#issuecomment-2367404514

   Superseded by #516.


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump protobuf-java_version from 3.25.4 to 3.25.5 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #515:
URL: https://github.com/apache/dubbo-spi-extensions/pull/515

   Bumps `protobuf-java_version` from 3.25.4 to 3.25.5.
   Updates `com.google.protobuf:protobuf-java` from 3.25.4 to 3.25.5
   
   Commits
   
   https://github.com/protocolbuffers/protobuf/commit/9d0ec0f92b5b5fdeeda11f9dcecc1872ff378014";>9d0ec0f
 Updating version.json and repo version numbers to: 25.5
   https://github.com/protocolbuffers/protobuf/commit/4a197e78ad2430e22e992c5a7727b61ae220f727";>4a197e7
 Merge pull request https://redirect.github.com/protocolbuffers/protobuf/issues/18387";>#18387
 from protocolbuffers/cp-lp-25
   https://github.com/protocolbuffers/protobuf/commit/b5a7cf7cf4b7e39f6b02205e45afe2104a7faf81";>b5a7cf7
 Remove RecursiveGroup test case which doesn't exist in 25.x pre-Editions
   https://github.com/protocolbuffers/protobuf/commit/f000b7e18fd6921ca02ea4b87608e8cadcb7b64f";>f000b7e
 Fix merge conflict by adding optional label to proto2 unittest_lite.proto
   https://github.com/protocolbuffers/protobuf/commit/4728531c162f2f9e8c2ca1add713cfee2db6be3b";>4728531
 Add recursion check when parsing unknown fields in Java.
   https://github.com/protocolbuffers/protobuf/commit/850fcce9176e2c9070614dab53537760498c926b";>850fcce
 Internal change
   https://github.com/protocolbuffers/protobuf/commit/b7044987de77f1dc368fee558636d0b56d7e75e1";>b704498
 Internal change
   https://github.com/protocolbuffers/protobuf/commit/e67347986eaf7d777a6ee34367fa99f4912423ab";>e673479
 Fix cord handling in DynamicMessage and oneofs. (https://redirect.github.com/protocolbuffers/protobuf/issues/18375";>#18375)
   https://github.com/protocolbuffers/protobuf/commit/8a60b6527a976cfd0028153da3ad8e4ed280e0de";>8a60b65
 Merge pull request https://redirect.github.com/protocolbuffers/protobuf/issues/17704";>#17704
 from protocolbuffers/cp-segv
   https://github.com/protocolbuffers/protobuf/commit/94a26630e362a4771b5ec80eac49f494988ca408";>94a2663
 Fixed a SEGV when deep copying a non-reified sub-message.
   Additional commits viewable in https://github.com/protocolbuffers/protobuf/compare/v3.25.4...v3.25.5";>compare
 view
   
   
   
   
   Updates `com.google.protobuf:protobuf-java-util` from 3.25.4 to 3.25.5
   
   
   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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump grpc.version from 1.66.0 to 1.68.0 [dubbo-spi-extensions]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #514:
URL: https://github.com/apache/dubbo-spi-extensions/pull/514

   Bumps `grpc.version` from 1.66.0 to 1.68.0.
   Updates `io.grpc:grpc-core` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-netty-shaded` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-netty` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-protobuf` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-stub` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-grpclb` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   
   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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump commons-io:commons-io from 2.16.1 to 2.17.0 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14713:
URL: https://github.com/apache/dubbo/pull/14713

   Bumps commons-io:commons-io from 2.16.1 to 2.17.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=2.16.1&new-version=2.17.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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump curator5_version from 4.2.0 to 5.7.0 [dubbo]

2024-09-23 Thread via GitHub
s
   
   
   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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump io.zipkin.reporter2:zipkin-reporter-bom from 3.4.0 to 3.4.2 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14710:
URL: https://github.com/apache/dubbo/pull/14710

   Bumps 
[io.zipkin.reporter2:zipkin-reporter-bom](https://github.com/openzipkin/zipkin-reporter-java)
 from 3.4.0 to 3.4.2.
   
   Release notes
   Sourced from https://github.com/openzipkin/zipkin-reporter-java/releases";>io.zipkin.reporter2:zipkin-reporter-bom's
 releases.
   
   Zipkin Reporter 3.4 deprecates AsyncReporter/SpanHandler 
queuedMaxBytes and disables it by default.
   When introduced, AsyncReporter had three ways to trigger a 
queue flush:
   
   queuedMaxSpans - when the number of spans in the queue 
exceeds a threshold
   queuedMaxBytes - when the size of the spans in the queue 
exceeds a threshold
   messageTimeout - when a span has been in the queue longer 
than a threshold
   
   queuedMaxBytes was deprecated because requires time in the 
critical path, to calculate the size of a span to make sure it doesn't breach 
the threshold. This is problematic in tools that check for pinning, like 
Virtual Threads.
   Thanks a lot to https://github.com/reta";>@​reta 
for sorting this out!
   Full Changelog: https://github.com/openzipkin/zipkin-reporter-java/compare/3.3.0..3.4.1";>https://github.com/openzipkin/zipkin-reporter-java/compare/3.3.0..3.4.1
   
   
   
   Commits
   
   https://github.com/openzipkin/zipkin-reporter-java/commit/bbe4d01cffc39d0814614057d126155449e9ea21";>bbe4d01
 [maven-release-plugin] prepare release 3.4.2
   https://github.com/openzipkin/zipkin-reporter-java/commit/128fa2cb14b58f5c7e9b1a09d5f60851471be773";>128fa2c
 [maven-release-plugin] prepare for next development iteration
   https://github.com/openzipkin/zipkin-reporter-java/commit/151238bc5ef590e7872fd5f55194f941eed58f94";>151238b
 [maven-release-plugin] prepare release 3.4.1
   https://github.com/openzipkin/zipkin-reporter-java/commit/ad5b40f8f3ae46c536ff9606dd2e75fb1ed423c1";>ad5b40f
 Routine dependency updates (https://redirect.github.com/openzipkin/zipkin-reporter-java/issues/271";>#271)
   https://github.com/openzipkin/zipkin-reporter-java/commit/302b54c2cb20240f91f54501b1335d986133ef15";>302b54c
 Avoid encoding list of spans twice in BaseHttpSender (https://redirect.github.com/openzipkin/zipkin-reporter-java/issues/270";>#270)
   https://github.com/openzipkin/zipkin-reporter-java/commit/519133204bc5a56a5286c6f40facc10c76270b5f";>5191332
 Adds SECURITY.md and scanning workflow (https://redirect.github.com/openzipkin/zipkin-reporter-java/issues/267";>#267)
   https://github.com/openzipkin/zipkin-reporter-java/commit/3af65938e55ddbf132e29cae694921fbf27d6c2a";>3af6593
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/openzipkin/zipkin-reporter-java/compare/3.4.0...3.4.2";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.zipkin.reporter2:zipkin-reporter-bom&package-manager=maven&previous-version=3.4.0&new-version=3.4.2)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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 G

[PR] Bump commons-codec:commons-codec from 1.16.0 to 1.17.1 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14711:
URL: https://github.com/apache/dubbo/pull/14711

   Bumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) 
from 1.16.0 to 1.17.1.
   
   Changelog
   Sourced from https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt";>commons-codec:commons-codec's
 changelog.
   
   Apache Commons Codec 1.17.1 RELEASE NOTES
   The Apache Commons Codec component contains encoders and decoders for
   various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In 
addition to these
   widely used encoders and decoders, the codec package also maintains a
   collection of phonetic encoding utilities.
   Feature and fix release. Requires a minimum of Java 8.
   Fixed Bugs
   
   
   Md5Crypt now throws IllegalArgumentException on an 
invalid prefix. Thanks to Gary Gregory.
   
   
   
   Changes
   
   
   Bump org.apache.commons:commons-parent from 69 to 71 
[#286](https://github.com/apache/commons-codec/issues/286). Thanks to Gary 
Gregory.
   
   
   
   Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 
1.23 to 1.24 [#293](https://github.com/apache/commons-codec/issues/293). Thanks 
to Dependabot.
   
   
   
   Bump org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 
3.1.0 [#292](https://github.com/apache/commons-codec/issues/292). Thanks to 
Dependabot.
   
   
   
   For complete information on Apache Commons Codec, including instructions 
on how to submit bug reports,
   patches, or suggestions for improvement, see the Apache Commons Codec 
website:
   https://commons.apache.org/proper/commons-codec/";>https://commons.apache.org/proper/commons-codec/
   Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi";>https://commons.apache.org/proper/commons-codec/download_codec.cgi
   
   Apache Commons Codec 1.17.0 RELEASE NOTES
   The Apache Commons Codec component contains encoders and decoders for
   various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In 
addition to these
   widely used encoders and decoders, the codec package also maintains a
   collection of phonetic encoding utilities.
   Feature and fix release. Requires a minimum of Java 8.
   New features
   
   
   Add override 
org.apache.commons.codec.language.bm.Rule.PhonemeExpr.size(). Thanks to Gary 
Gregory.
   
   
   
   Add support for Base64 custom alphabets 
[#266](https://github.com/apache/commons-codec/issues/266). Thanks to Chris 
Kocel, Gary Gregory.
   
   
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/apache/commons-codec/commit/965109705c5236b05011e1c45f47d991abfa521e";>9651097
 Prepare for the next release candidate
   https://github.com/apache/commons-codec/commit/0d99b46fa1a8a61cf869ff4cc9b9e2402129f199";>0d99b46
 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-codec";>https://gitbox.apache.org/repos/asf/commons-codec
   https://github.com/apache/commons-codec/commit/0c63e18b8a5e5b9b0195a632d136c85c1452b34f";>0c63e18
 Prepare for the next release candidate
   https://github.com/apache/commons-codec/commit/be06260d90edd8ad43879eb2862dac765e807cc0";>be06260
 Bump actions/upload-artifact from 4.3.3 to 4.3.4 (https://redirect.github.com/apache/commons-codec/issues/295";>#295)
   https://github.com/apache/commons-codec/commit/09ef422871b8d202d4dca1ff67d91f32723d3862";>09ef422
 Bump github/codeql-action from 3.25.11 to 3.25.12 (https://redirect.github.com/apache/commons-codec/issues/294";>#294)
   https://github.com/apache/commons-codec/commit/86ef922a57d6c2632dc84c41cb04798fe489431c";>86ef922
 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-codec.git";>https://gitbox.apache.org/repos/asf/commons-codec.git
   https://github.com/apache/commons-codec/commit/974cf873936633d7bb7e060b1caf119e60b60e98";>974cf87
 Remove redundant keywords
   https://github.com/apache/commons-codec/commit/0c82238e5b9a914fdd862df3f6ab0085f533b5e8";>0c82238
 Remove redundant keywords
   https://github.com/apache/commons-codec/commit/1e6544e4f1d269c0edf8b702f60d6dc866b3affa";>1e6544e
 Remove redundant keywords
   https://github.com/apache/commons-codec/commit/8dcf9d1f745c88beedf54e63c7a5d683725ebdea";>8dcf9d1
 Remove redundant keywords
   Additional commits viewable in https://github.com/apache/commons-codec/compare/rel/commons-codec-1.16.0...rel/commons-codec-1.17.1";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-codec:commons-codec&package-manager=maven&previous-version=1.16.0&new-version=1.17.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-update

[PR] Bump org.apache.groovy:groovy from 4.0.21 to 4.0.23 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14709:
URL: https://github.com/apache/dubbo/pull/14709

   Bumps [org.apache.groovy:groovy](https://github.com/apache/groovy) from 
4.0.21 to 4.0.23.
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.groovy:groovy&package-manager=maven&previous-version=4.0.21&new-version=4.0.23)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump org.awaitility:awaitility from 4.2.0 to 4.2.2 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14708:
URL: https://github.com/apache/dubbo/pull/14708

   Bumps [org.awaitility:awaitility](https://github.com/awaitility/awaitility) 
from 4.2.0 to 4.2.2.
   
   Changelog
   Sourced from https://github.com/awaitility/awaitility/blob/master/changelog.txt";>org.awaitility:awaitility's
 changelog.
   
   Changelog 4.2.2 (2024-08-07)
   
   Support JDK EA builds in JavaVersionDetector (thanks to Oleg Estekhin 
for pull request)
   
   Changelog 4.2.1 (2024-03-15)
   
   
   Upgraded Kotlin to 1.9.22
   
   
   Added extension properties forever, then, and, given to the Kotlin 
extension. This allows you to do e.g.:
   await.forever until { .. }
   
   
   Added shortcut for enabling logging. Before you had to do e.g.
   await()
   .with()
   .conditionEvaluationListener(new ConditionEvaluationLogger(log::info))
   .pollInterval(ONE_HUNDRED_MILLISECONDS)
   .until(logs::size, is(4));
   You can now instead use the "logging" shortcut:
   await()
   .with()
   .logging(log::info)
   .pollInterval(ONE_HUNDRED_MILLISECONDS)
   .until(logs::size, is(4));
   or simply ".logging()" for "System.out".
   This shortcut has also been added globally:
   Awaitility.setLogging(log::info);
   or
   Awaitility.setDefaultLogging();
   
   
   Improved lambda detection for Java 17 and Java 21
   
   
   Upgraded Groovy to 4.0.19
   
   
   
   
   
   Commits
   
   https://github.com/awaitility/awaitility/commit/1849e9a5a4a58d805bbeb3e203370d24c2428e76";>1849e9a
 [maven-release-plugin] prepare release awaitility-4.2.2
   https://github.com/awaitility/awaitility/commit/6ced63a3dd80445ac744bff8887a5280830e1ac3";>6ced63a
 [ci skip] Prepared changelog for release
   https://github.com/awaitility/awaitility/commit/a4a0a8ba6e7004681b9300fe8c2151ee69370b97";>a4a0a8b
 Support JDK EA builds in JavaVersionDetector (https://redirect.github.com/awaitility/awaitility/issues/279";>#279)
   https://github.com/awaitility/awaitility/commit/fbe16add874b4260dd240108304d5c0be84eabc8";>fbe16ad
 [ci skip] Update README.md
   https://github.com/awaitility/awaitility/commit/42d9a7c3892c1182c9f704fd9c764b55179e8368";>42d9a7c
 [maven-release-plugin] prepare for next development iteration
   https://github.com/awaitility/awaitility/commit/ff13b724c45853c3becbec988a1447ac2508762d";>ff13b72
 [maven-release-plugin] prepare release awaitility-4.2.1
   https://github.com/awaitility/awaitility/commit/f80c2996d96c81b203f0483a55adfcc200c2963c";>f80c299
 [ci skip] Preparing changelog for release
   https://github.com/awaitility/awaitility/commit/4be5236649ef6b16e805137fa7be404ce4db3e09";>4be5236
 [ci skip] Fixed typo in changelog
   https://github.com/awaitility/awaitility/commit/e15b97560d873a7a632dc7cfaabff6d2fea92f50";>e15b975
 Fixed failing tests
   https://github.com/awaitility/awaitility/commit/7f7656e48377739cc41afdc60bf8f3c47135b196";>7f7656e
 Adding 17 and 21 to tests
   Additional commits viewable in https://github.com/awaitility/awaitility/compare/awaitility-4.2.0...awaitility-4.2.2";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.awaitility:awaitility&package-manager=maven&previous-version=4.2.0&new-version=4.2.2)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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 reope

[PR] Bump com.alibaba.fastjson2:fastjson2 from 2.0.52 to 2.0.53 [dubbo]

2024-09-23 Thread via GitHub
/fastjson2/issues/2952";>#2952
   https://github.com/alibaba/fastjson2/commit/3ed22a91892bf4fb260c8bf2a47f742e5652630f";>3ed22a9
 jsonschema support array type, for issue https://redirect.github.com/alibaba/fastjson2/issues/2931";>#2931
   Additional commits viewable in https://github.com/alibaba/fastjson2/compare/2.0.52...2.0.53";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.alibaba.fastjson2:fastjson2&package-manager=maven&previous-version=2.0.52&new-version=2.0.53)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump grpc.version from 1.66.0 to 1.68.0 [dubbo]

2024-09-23 Thread via GitHub


dependabot[bot] opened a new pull request, #14706:
URL: https://github.com/apache/dubbo/pull/14706

   Bumps `grpc.version` from 1.66.0 to 1.68.0.
   Updates `io.grpc:grpc-protobuf` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-stub` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-netty-shaded` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-core` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-context` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-netty` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   Updates `io.grpc:grpc-grpclb` from 1.66.0 to 1.68.0
   
   Commits
   
   See full diff in https://github.com/grpc/grpc-java/commits";>compare view
   
   
   
   
   
   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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Fixing logic errors [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody merged PR #369:
URL: https://github.com/apache/dubbo-kubernetes/pull/369


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Fixing logic errors [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody opened a new pull request, #369:
URL: https://github.com/apache/dubbo-kubernetes/pull/369

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Node restart or maintenance runtime logic [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody merged PR #368:
URL: https://github.com/apache/dubbo-kubernetes/pull/368


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Node restart or maintenance runtime logic [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody opened a new pull request, #368:
URL: https://github.com/apache/dubbo-kubernetes/pull/368

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Node restart policy logic [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody merged PR #367:
URL: https://github.com/apache/dubbo-kubernetes/pull/367


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Node restart policy logic [dubbo-kubernetes]

2024-09-22 Thread via GitHub


mfordjody opened a new pull request, #367:
URL: https://github.com/apache/dubbo-kubernetes/pull/367

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] [Task] All samples unified switch to annotation + yaml configuration [dubbo]

2024-09-22 Thread via GitHub


kesrishubham2510 commented on issue #13860:
URL: https://github.com/apache/dubbo/issues/13860#issuecomment-2366766064

   Hi @AlbumenJ and @cnzakii I'm new to open source and want to contribute, is 
there something I can help with here. Please let me know 
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.springframework.cloud:spring-cloud-openfeign-core from 3.1.5 to 3.1.9 [dubbo]

2024-09-22 Thread via GitHub


CrazyHZM merged PR #14687:
URL: https://github.com/apache/dubbo/pull/14687


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Move observability autoconfigure to dubbo-spring-boot-autoconfigure [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM opened a new pull request, #14705:
URL: https://github.com/apache/dubbo/pull/14705

   ## What is the purpose of the change?
   
   
   ## Checklist
   - [x] Make sure there is a 
[GitHub_issue](https://github.com/apache/dubbo/issues) field for the change.
   - [x] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   - [x] Write necessary unit-test to verify your logic correction. If the new 
feature or significant change is committed, please remember to add sample in 
[dubbo samples](https://github.com/apache/dubbo-samples) project.
   - [x] Make sure gitHub actions can pass. [Why the workflow is failing and 
how to fix it?](./CONTRIBUTING.md)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [chore] Changing the control surface directory location [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #366:
URL: https://github.com/apache/dubbo-kubernetes/pull/366


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [chore] Changing the control surface directory location [dubbo-kubernetes]

2024-09-21 Thread via GitHub


codecov-commenter commented on PR #366:
URL: https://github.com/apache/dubbo-kubernetes/pull/366#issuecomment-2365474491

   ## 
[Codecov](https://app.codecov.io/gh/apache/dubbo-kubernetes/pull/366?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   All modified and coverable lines are covered by tests :white_check_mark:
   > Project coverage is 33.64%. Comparing base 
[(`a39c144`)](https://app.codecov.io/gh/apache/dubbo-kubernetes/commit/a39c14483c8336b0691a28f3575a5a38b6967fe2?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 to head 
[(`39399ce`)](https://app.codecov.io/gh/apache/dubbo-kubernetes/commit/39399cea1379a9618eb7d188a8878f153bc59b9a?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache).
   > Report is 9 commits behind head on master.
   
   > :exclamation: **Current head 39399ce differs from pull request most recent 
head c0cc513**
   > 
   > Please [upload](https://docs.codecov.com/docs/codecov-uploader) reports 
for the commit c0cc513 to get more accurate results.
   
   Additional details and impacted files
   
   
   ```diff
   @@Coverage Diff @@
   ##   master #366  +/-   ##
   ==
   + Coverage   33.53%   33.64%   +0.11% 
   ==
 Files 163  163  
 Lines9516 9516  
 Branches   41   41  
   ==
   + Hits 3191 3202  +11 
   + Misses   5978 5968  -10 
   + Partials  347  346   -1 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/dubbo-kubernetes/pull/366/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[](https://app.codecov.io/gh/apache/dubbo-kubernetes/pull/366/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.64% <ø> (+0.11%)` | :arrow_up: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   
   
   
   [:umbrella: View full report in Codecov by 
Sentry](https://app.codecov.io/gh/apache/dubbo-kubernetes/pull/366?dropdown=coverage&src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache).
   
   :loudspeaker: Have feedback on the report? [Share it 
here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache).
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [chore] Changing the control surface directory location [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #366:
URL: https://github.com/apache/dubbo-kubernetes/pull/366

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [chore] Organize pre-release catalog structure [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #365:
URL: https://github.com/apache/dubbo-kubernetes/pull/365


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump io.zipkin.reporter2:zipkin-reporter-bom from 3.4.0 to 3.4.1 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14678:
URL: https://github.com/apache/dubbo/pull/14678


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [chore] Organize pre-release catalog structure [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #365:
URL: https://github.com/apache/dubbo-kubernetes/pull/365

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.graalvm.buildtools:native-maven-plugin from 0.10.2 to 0.10.3 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14677:
URL: https://github.com/apache/dubbo/pull/14677


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.xerial.snappy:snappy-java from 1.1.10.6 to 1.1.10.7 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14683:
URL: https://github.com/apache/dubbo/pull/14683


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump io.projectreactor:reactor-core from 3.6.9 to 3.6.10 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14680:
URL: https://github.com/apache/dubbo/pull/14680


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump io.micrometer:micrometer-bom from 1.13.3 to 1.13.4 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14681:
URL: https://github.com/apache/dubbo/pull/14681


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump jakarta.xml.bind:jakarta.xml.bind-api from 4.0.1 to 4.0.2 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14690:
URL: https://github.com/apache/dubbo/pull/14690


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump spring.version from 6.0.11 to 6.1.13 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14691:
URL: https://github.com/apache/dubbo/pull/14691


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Added support for configuring Tomcat HTTP2 max stream size in Spring boot [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM commented on code in PR #14702:
URL: https://github.com/apache/dubbo/pull/14702#discussion_r1769708120


##
dubbo-spring-boot/dubbo-spring-boot-3-autoconfigure/pom.xml:
##
@@ -68,9 +68,9 @@
 
 
 
-  jakarta.servlet
-  jakarta.servlet-api
-  true
+  org.apache.tomcat.embed
+  tomcat-embed-core
+  provided

Review Comment:
   This change will cause users to have to use Tomcat.



-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump com.google.protobuf:protobuf-java from 3.25.4 to 3.25.5 in /dubbo-dependencies-bom [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14704:
URL: https://github.com/apache/dubbo/pull/14704


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [chore] Organize the project directory structure [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #364:
URL: https://github.com/apache/dubbo-kubernetes/pull/364


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [chore] Organize the project directory structure [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #364:
URL: https://github.com/apache/dubbo-kubernetes/pull/364

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [charts] add namespace template [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #363:
URL: https://github.com/apache/dubbo-kubernetes/pull/363


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [charts] add namespace template [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #363:
URL: https://github.com/apache/dubbo-kubernetes/pull/363

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [charts] Replacement of crds [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #362:
URL: https://github.com/apache/dubbo-kubernetes/pull/362


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [charts] Replacement of crds [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #362:
URL: https://github.com/apache/dubbo-kubernetes/pull/362

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [charts] Refactoring some of the templates [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #361:
URL: https://github.com/apache/dubbo-kubernetes/pull/361


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [charts] Refactoring some of the templates [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #361:
URL: https://github.com/apache/dubbo-kubernetes/pull/361

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [charts] Removing k8s redundant configuration readme [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #360:
URL: https://github.com/apache/dubbo-kubernetes/pull/360


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [charts] Removing k8s redundant configuration readme [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #360:
URL: https://github.com/apache/dubbo-kubernetes/pull/360

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.apache.zookeeper:zookeeper from 3.8.3 to 3.8.4 in /dubbo-spring-boot/dubbo-spring-boot-starters/dubbo-zookeeper-spring-boot-starter [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14684:
URL: https://github.com/apache/dubbo/pull/14684


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.springframework:spring-web from 6.0.11 to 6.0.19 in /dubbo-config/dubbo-config-spring6 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14685:
URL: https://github.com/apache/dubbo/pull/14685


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump org.glassfish.jaxb:jaxb-runtime from 2.3.3-b02 to 2.4.0-b180830.0438 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14689:
URL: https://github.com/apache/dubbo/pull/14689


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump seata.version from 1.6.1 to 1.8.0 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14692:
URL: https://github.com/apache/dubbo/pull/14692


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump com.google.protobuf:protobuf-java from 3.25.4 to 3.25.5 in /dubbo-dependencies-bom [dubbo]

2024-09-21 Thread via GitHub


dependabot[bot] opened a new pull request, #14704:
URL: https://github.com/apache/dubbo/pull/14704

   Bumps 
[com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf)
 from 3.25.4 to 3.25.5.
   
   Commits
   
   https://github.com/protocolbuffers/protobuf/commit/9d0ec0f92b5b5fdeeda11f9dcecc1872ff378014";>9d0ec0f
 Updating version.json and repo version numbers to: 25.5
   https://github.com/protocolbuffers/protobuf/commit/4a197e78ad2430e22e992c5a7727b61ae220f727";>4a197e7
 Merge pull request https://redirect.github.com/protocolbuffers/protobuf/issues/18387";>#18387
 from protocolbuffers/cp-lp-25
   https://github.com/protocolbuffers/protobuf/commit/b5a7cf7cf4b7e39f6b02205e45afe2104a7faf81";>b5a7cf7
 Remove RecursiveGroup test case which doesn't exist in 25.x pre-Editions
   https://github.com/protocolbuffers/protobuf/commit/f000b7e18fd6921ca02ea4b87608e8cadcb7b64f";>f000b7e
 Fix merge conflict by adding optional label to proto2 unittest_lite.proto
   https://github.com/protocolbuffers/protobuf/commit/4728531c162f2f9e8c2ca1add713cfee2db6be3b";>4728531
 Add recursion check when parsing unknown fields in Java.
   https://github.com/protocolbuffers/protobuf/commit/850fcce9176e2c9070614dab53537760498c926b";>850fcce
 Internal change
   https://github.com/protocolbuffers/protobuf/commit/b7044987de77f1dc368fee558636d0b56d7e75e1";>b704498
 Internal change
   https://github.com/protocolbuffers/protobuf/commit/e67347986eaf7d777a6ee34367fa99f4912423ab";>e673479
 Fix cord handling in DynamicMessage and oneofs. (https://redirect.github.com/protocolbuffers/protobuf/issues/18375";>#18375)
   https://github.com/protocolbuffers/protobuf/commit/8a60b6527a976cfd0028153da3ad8e4ed280e0de";>8a60b65
 Merge pull request https://redirect.github.com/protocolbuffers/protobuf/issues/17704";>#17704
 from protocolbuffers/cp-segv
   https://github.com/protocolbuffers/protobuf/commit/94a26630e362a4771b5ec80eac49f494988ca408";>94a2663
 Fixed a SEGV when deep copying a non-reified sub-message.
   Additional commits viewable in https://github.com/protocolbuffers/protobuf/compare/v3.25.4...v3.25.5";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=maven&previous-version=3.25.4&new-version=3.25.5)](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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/dubbo/network/alerts).
   
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump com.github.spullara.mustache.java:compiler from 0.9.10 to 0.9.14 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14693:
URL: https://github.com/apache/dubbo/pull/14693


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump com.google.protobuf:protobuf-java from 3.25.0 to 3.25.5 in /dubbo-maven-plugin [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14698:
URL: https://github.com/apache/dubbo/pull/14698


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] Bump curator5_version from 4.2.0 to 5.7.0 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM merged PR #14694:
URL: https://github.com/apache/dubbo/pull/14694


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] 启动一直报这个无法获取metadata的错误 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM closed issue #11226: 启动一直报这个无法获取metadata的错误
URL: https://github.com/apache/dubbo/issues/11226


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [chore] collate docs and deploy dir [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #359:
URL: https://github.com/apache/dubbo-kubernetes/pull/359


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [chore] collate docs and deploy dir [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #359:
URL: https://github.com/apache/dubbo-kubernetes/pull/359

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Node downtime logic implementation [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody merged PR #358:
URL: https://github.com/apache/dubbo-kubernetes/pull/358


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] [Bug] The application built using native image failed to start.I need to manually modify reflect-config. json of application.dubbo version: 3.3.0-beta.2 [dubbo]

2024-09-21 Thread via GitHub


CrazyHZM closed issue #14147: [Bug] The application built using native image 
failed to start.I need to manually modify reflect-config. json of 
application.dubbo version: 3.3.0-beta.2 
URL: https://github.com/apache/dubbo/issues/14147


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Node downtime logic implementation [dubbo-kubernetes]

2024-09-21 Thread via GitHub


mfordjody opened a new pull request, #358:
URL: https://github.com/apache/dubbo-kubernetes/pull/358

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Bump express from 4.19.2 to 4.21.0 in /initializer-page [dubbo-initializer]

2024-09-20 Thread via GitHub
/commit/9ebe5d500d22cbb2b8aaa73446866b084c747971";>9ebe5d5
 feat: upgrade to send@0.19.0 (https://redirect.github.com/expressjs/express/issues/5928";>#5928)
   https://github.com/expressjs/express/commit/ec4a01b6b8814d7b007f36a3023f4dbafdbc3d09";>ec4a01b
 feat: upgrade to body-parser@1.20.3 (https://redirect.github.com/expressjs/express/issues/5926";>#5926)
   https://github.com/expressjs/express/commit/54271f69b511fea198471e6ff3400ab805d6b553";>54271f6
 fix: don't render redirect values in anchor href
   Additional commits viewable in https://github.com/expressjs/express/compare/4.19.2...4.21.0";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.19.2&new-version=4.21.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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/dubbo-initializer/network/alerts).
   
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Downtime policy updates [dubbo-kubernetes]

2024-09-20 Thread via GitHub


mfordjody merged PR #357:
URL: https://github.com/apache/dubbo-kubernetes/pull/357


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Downtime policy updates [dubbo-kubernetes]

2024-09-20 Thread via GitHub


mfordjody opened a new pull request, #357:
URL: https://github.com/apache/dubbo-kubernetes/pull/357

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] [horus] Add node downtime config [dubbo-kubernetes]

2024-09-20 Thread via GitHub


mfordjody merged PR #356:
URL: https://github.com/apache/dubbo-kubernetes/pull/356


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] [horus] Add node downtime config [dubbo-kubernetes]

2024-09-20 Thread via GitHub


mfordjody opened a new pull request, #356:
URL: https://github.com/apache/dubbo-kubernetes/pull/356

   (no comment)


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [I] 启动一直报这个无法获取metadata的错误 [dubbo]

2024-09-20 Thread via GitHub


xiaolinstar commented on issue #11226:
URL: https://github.com/apache/dubbo/issues/11226#issuecomment-2364084915

   
我似乎遇到了相同的问题,如果使用的dubbo版本较低的话,可以升级尝试修复。我在花了1周的时间调试docker和bootstrap.yaml后,将dubbo从3.2.0升级到3.3.0,问题修复。


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



[PR] Added support for configuring Tomcat HTTP2 max stream size in Spring boot [dubbo]

2024-09-20 Thread via GitHub


oxsean opened a new pull request, #14702:
URL: https://github.com/apache/dubbo/pull/14702

   …Boot
   
   ## What is the purpose of the change?
   
   
   ## Checklist
   - [x] Make sure there is a 
[GitHub_issue](https://github.com/apache/dubbo/issues) field for the change.
   - [x] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   - [x] Write necessary unit-test to verify your logic correction. If the new 
feature or significant change is committed, please remember to add sample in 
[dubbo samples](https://github.com/apache/dubbo-samples) project.
   - [x] Make sure gitHub actions can pass. [Why the workflow is failing and 
how to fix it?](./CONTRIBUTING.md)
   


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



Re: [PR] bugfix: application/x-www-form-urlencoded There is a problem with parameter parsing [dubbo]

2024-09-20 Thread via GitHub


suncairong163 commented on PR #14700:
URL: https://github.com/apache/dubbo/pull/14700#issuecomment-2363807444

   @CrazyHZM 
   @AlbumenJ 


-- 
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: notifications-unsubscr...@dubbo.apache.org

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


-
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org



  1   2   3   4   5   6   7   8   9   10   >