You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shenyu.apache.org by li...@apache.org on 2022/06/12 07:53:52 UTC

[incubator-shenyu] branch master updated: [type:optimize] dependency upgrade (#3535)

This is an automated email from the ASF dual-hosted git repository.

likeguo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-shenyu.git


The following commit(s) were added to refs/heads/master by this push:
     new 96ac27cb6 [type:optimize] dependency upgrade (#3535)
96ac27cb6 is described below

commit 96ac27cb629a90376e09abfc06044559ddf4353e
Author: moremind <he...@hotmail.com>
AuthorDate: Sun Jun 12 15:53:47 2022 +0800

    [type:optimize] dependency upgrade (#3535)
    
    * [type:fix-bug] ratelimiter upgrade and test pass
    
    * [type:fix-bug] sentinel upgrade and test pass
    
    * [type:fix-bug] r4j and hystrix upgrade and test pass
---
 shenyu-plugin/shenyu-plugin-hystrix/pom.xml      | 4 ++--
 shenyu-plugin/shenyu-plugin-ratelimiter/pom.xml  | 6 +++++-
 shenyu-plugin/shenyu-plugin-resilience4j/pom.xml | 2 +-
 shenyu-plugin/shenyu-plugin-sentinel/pom.xml     | 2 +-
 4 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/shenyu-plugin/shenyu-plugin-hystrix/pom.xml b/shenyu-plugin/shenyu-plugin-hystrix/pom.xml
index 70acc4d1f..c902116ae 100644
--- a/shenyu-plugin/shenyu-plugin-hystrix/pom.xml
+++ b/shenyu-plugin/shenyu-plugin-hystrix/pom.xml
@@ -26,8 +26,8 @@
     <artifactId>shenyu-plugin-hystrix</artifactId>
 
     <properties>
-        <hystrix-core.version>1.5.12</hystrix-core.version>
-        <hystrix-metrics-event-stream.version>1.4.10</hystrix-metrics-event-stream.version>
+        <hystrix-core.version>1.5.18</hystrix-core.version>
+        <hystrix-metrics-event-stream.version>1.5.18</hystrix-metrics-event-stream.version>
         <rxjava-reactive-streams.version>1.2.1</rxjava-reactive-streams.version>
     </properties>
 
diff --git a/shenyu-plugin/shenyu-plugin-ratelimiter/pom.xml b/shenyu-plugin/shenyu-plugin-ratelimiter/pom.xml
index 96574e3cc..8fa3fdb67 100644
--- a/shenyu-plugin/shenyu-plugin-ratelimiter/pom.xml
+++ b/shenyu-plugin/shenyu-plugin-ratelimiter/pom.xml
@@ -24,6 +24,10 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>shenyu-plugin-ratelimiter</artifactId>
+
+    <properties>
+        <embedded-redis.version>0.6</embedded-redis.version>
+    </properties>
     
     <dependencies>
         <dependency>
@@ -49,7 +53,7 @@
         <dependency>
             <groupId>com.github.kstyrc</groupId>
             <artifactId>embedded-redis</artifactId>
-            <version>0.6</version>
+            <version>${embedded-redis.version}</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
diff --git a/shenyu-plugin/shenyu-plugin-resilience4j/pom.xml b/shenyu-plugin/shenyu-plugin-resilience4j/pom.xml
index 932f8367f..840cdfc99 100644
--- a/shenyu-plugin/shenyu-plugin-resilience4j/pom.xml
+++ b/shenyu-plugin/shenyu-plugin-resilience4j/pom.xml
@@ -27,7 +27,7 @@
     <artifactId>shenyu-plugin-resilience4j</artifactId>
 
     <properties>
-        <resilience.version>1.6.1</resilience.version>
+        <resilience.version>1.7.1</resilience.version>
     </properties>
 
     <dependencies>
diff --git a/shenyu-plugin/shenyu-plugin-sentinel/pom.xml b/shenyu-plugin/shenyu-plugin-sentinel/pom.xml
index 03740610f..937d6f9d3 100644
--- a/shenyu-plugin/shenyu-plugin-sentinel/pom.xml
+++ b/shenyu-plugin/shenyu-plugin-sentinel/pom.xml
@@ -26,7 +26,7 @@
     <artifactId>shenyu-plugin-sentinel</artifactId>
 
     <properties>
-        <sentinel.version>1.8.4</sentinel.version>
+        <sentinel.version>1.8.3</sentinel.version>
     </properties>
 
     <dependencies>