This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 42689cabe [type:refactor] upgrade spring-boot to 2.7.13 (#4783)
42689cabe is described below
commit 42689cabe79654291ecb7a35f7a68803f670a424
Author: moremind <[email protected]>
AuthorDate: Sat Jul 1 14:19:03 2023 +0800
[type:refactor] upgrade spring-boot to 2.7.13 (#4783)
* [type:refactor] add license
* [type:refactor] add license
* [type:refactor] upgrade springboot to 2.7.13
* [type:refactor] upgrade springboot to 2.7.13
* [type:refactor] upgrade springboot to 2.7.13
---------
Co-authored-by: xiaoyu <[email protected]>
Co-authored-by: dragon-zhang <[email protected]>
---
pom.xml | 10 +-
shenyu-admin/pom.xml | 5 -
.../shenyu/admin/config/SwaggerConfiguration.java | 3 +-
.../admin/model/entity/DataPermissionDO.java | 2 +-
.../shenyu/admin/model/entity/PermissionDO.java | 2 +-
.../shenyu/admin/model/entity/ResourceDO.java | 3 +-
.../apache/shenyu/admin/model/entity/RoleDO.java | 2 +-
.../shenyu/admin/model/entity/UserRoleDO.java | 2 +-
...nyuHttpRegistryControllerBeanPostProcessor.java | 2 +-
.../shenyu/admin/spring/SpringBeanUtils.java | 12 +
shenyu-admin/src/main/resources/banner.txt | 2 +-
.../src/main/resources/application.yml | 2 +
shenyu-bootstrap/src/main/resources/banner.txt | 2 +-
.../src/main/release-docs/LICENSE | 183 ++++++++-------
.../src/main/release-docs/LICENSE | 252 +++++++++++----------
shenyu-e2e/pom.xml | 2 +
shenyu-e2e/shenyu-e2e-client/pom.xml | 4 +-
shenyu-e2e/shenyu-e2e-engine/pom.xml | 2 +-
shenyu-examples/pom.xml | 2 +-
shenyu-examples/shenyu-examples-grpc/pom.xml | 6 +
shenyu-integrated-test/pom.xml | 2 +-
.../src/main/resources/application-local.yml | 2 +
.../src/main/resources/application.yml | 2 +-
shenyu-protocol/shenyu-protocol-tcp/pom.xml | 7 +-
24 files changed, 270 insertions(+), 243 deletions(-)
diff --git a/pom.xml b/pom.xml
index e84fb9613..2a9362190 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,7 +99,7 @@
<alibaba.dubbo.version>2.6.12</alibaba.dubbo.version>
<apache.dubbo.version>3.1.1</apache.dubbo.version>
<gson.version>2.9.0</gson.version>
- <okhttp.version>3.12.1</okhttp.version>
+ <okhttp.version>4.9.3</okhttp.version>
<prometheus-java-client.version>0.15.0</prometheus-java-client.version>
<prometheus-jmx.version>0.15.0</prometheus-jmx.version>
<swagger.version>2.9.2</swagger.version>
@@ -114,7 +114,7 @@
<shiro.version>1.8.0</shiro.version>
<jwt.version>3.12.0</jwt.version>
<motan.version>1.2.0</motan.version>
- <spring-boot.version>2.6.9</spring-boot.version>
+ <spring-boot.version>2.7.13</spring-boot.version>
<aspectjweaver.version>1.9.6</aspectjweaver.version>
<h2.version>1.4.200</h2.version>
<jetcd-core.version>0.7.3</jetcd-core.version>
@@ -342,12 +342,6 @@
<version>${commons-collections4.version}</version>
</dependency>
- <dependency>
- <groupId>org.projectreactor</groupId>
- <artifactId>reactor-spring</artifactId>
- <version>${reactor-spring.version}</version>
- </dependency>
-
<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
diff --git a/shenyu-admin/pom.xml b/shenyu-admin/pom.xml
index e1def0f43..371e5bf27 100644
--- a/shenyu-admin/pom.xml
+++ b/shenyu-admin/pom.xml
@@ -130,11 +130,6 @@
<version>${jwt.version}</version>
</dependency>
- <dependency>
- <groupId>org.projectreactor</groupId>
- <artifactId>reactor-spring</artifactId>
- </dependency>
-
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/config/SwaggerConfiguration.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/config/SwaggerConfiguration.java
index baf76b75f..521f813f5 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/config/SwaggerConfiguration.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/config/SwaggerConfiguration.java
@@ -20,6 +20,7 @@ package org.apache.shenyu.admin.config;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;
+import java.util.Objects;
import java.util.stream.Collectors;
import org.apache.shenyu.common.constant.Constants;
@@ -120,7 +121,7 @@ public class SwaggerConfiguration {
private <T extends RequestMappingInfoHandlerMapping> void
customizeSpringfoxHandlerMappings(final List<T> mappings) {
List<T> copy = mappings.stream()
- .filter(mapping -> mapping.getPatternParser() == null)
+ .filter(mapping ->
Objects.isNull(mapping.getPatternParser()))
.collect(Collectors.toList());
mappings.clear();
mappings.addAll(copy);
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/DataPermissionDO.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/DataPermissionDO.java
index 881afe5cb..f8602fc57 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/DataPermissionDO.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/DataPermissionDO.java
@@ -17,9 +17,9 @@
package org.apache.shenyu.admin.model.entity;
+import org.apache.commons.lang3.StringUtils;
import org.apache.shenyu.admin.model.dto.DataPermissionDTO;
import org.apache.shenyu.common.utils.UUIDUtils;
-import reactor.util.StringUtils;
import java.sql.Timestamp;
import java.util.Objects;
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/PermissionDO.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/PermissionDO.java
index cfbee55b4..e69f7b4be 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/PermissionDO.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/PermissionDO.java
@@ -17,9 +17,9 @@
package org.apache.shenyu.admin.model.entity;
+import org.apache.commons.lang3.StringUtils;
import org.apache.shenyu.admin.model.dto.PermissionDTO;
import org.apache.shenyu.common.utils.UUIDUtils;
-import reactor.util.StringUtils;
import java.sql.Timestamp;
import java.util.Objects;
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/ResourceDO.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/ResourceDO.java
index 1f0d34f28..b42e5104c 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/ResourceDO.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/ResourceDO.java
@@ -17,6 +17,7 @@
package org.apache.shenyu.admin.model.entity;
+import org.apache.commons.lang3.StringUtils;
import org.apache.shenyu.admin.model.dto.CreateResourceDTO;
import org.apache.shenyu.admin.model.dto.ResourceDTO;
import org.apache.shenyu.common.utils.UUIDUtils;
@@ -25,8 +26,6 @@ import java.sql.Timestamp;
import java.util.Objects;
import java.util.Optional;
-import reactor.util.StringUtils;
-
/**
* The Resource Entity.
*/
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/RoleDO.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/RoleDO.java
index 2bc499f24..c8a837cd2 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/RoleDO.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/RoleDO.java
@@ -17,9 +17,9 @@
package org.apache.shenyu.admin.model.entity;
+import org.apache.commons.lang3.StringUtils;
import org.apache.shenyu.admin.model.dto.RoleDTO;
import org.apache.shenyu.common.utils.UUIDUtils;
-import reactor.util.StringUtils;
import java.sql.Timestamp;
import java.util.Objects;
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/UserRoleDO.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/UserRoleDO.java
index 799a03f79..e528068be 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/UserRoleDO.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/entity/UserRoleDO.java
@@ -17,9 +17,9 @@
package org.apache.shenyu.admin.model.entity;
+import org.apache.commons.lang3.StringUtils;
import org.apache.shenyu.admin.model.dto.UserRoleDTO;
import org.apache.shenyu.common.utils.UUIDUtils;
-import reactor.util.StringUtils;
import java.sql.Timestamp;
import java.util.Objects;
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/ShenyuHttpRegistryControllerBeanPostProcessor.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/ShenyuHttpRegistryControllerBeanPostProcessor.java
index 3dd47677e..10af5e8f2 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/ShenyuHttpRegistryControllerBeanPostProcessor.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/ShenyuHttpRegistryControllerBeanPostProcessor.java
@@ -36,7 +36,7 @@ public class ShenyuHttpRegistryControllerBeanPostProcessor
implements BeanPostPr
public Object postProcessAfterInitialization(final Object bean, final
String beanName) throws BeansException {
if (bean instanceof ShenyuClientHttpRegistryController) {
try {
- RequestMappingHandlerMapping requestMappingHandlerMapping =
SpringBeanUtils.getInstance().getBean(RequestMappingHandlerMapping.class);
+ RequestMappingHandlerMapping requestMappingHandlerMapping =
SpringBeanUtils.getInstance().getBean("requestMappingHandlerMapping",
RequestMappingHandlerMapping.class);
Method method =
requestMappingHandlerMapping.getClass().getSuperclass().getSuperclass().getDeclaredMethod("detectHandlerMethods",
Object.class);
method.setAccessible(true);
method.invoke(requestMappingHandlerMapping, beanName);
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/SpringBeanUtils.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/SpringBeanUtils.java
index 12122c6b5..452834d6f 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/SpringBeanUtils.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/spring/SpringBeanUtils.java
@@ -50,6 +50,18 @@ public final class SpringBeanUtils {
public <T> T getBean(final Class<T> type) {
return applicationContext.getBean(type);
}
+
+ /**
+ * get bean by name and type.
+ *
+ * @param <T> the type
+ * @param name the bean name
+ * @param type the bean type
+ * @return bean bean
+ */
+ public <T> T getBean(final String name, final Class<T> type) {
+ return applicationContext.getBean(name, type);
+ }
/**
* set application context.
diff --git a/shenyu-admin/src/main/resources/banner.txt
b/shenyu-admin/src/main/resources/banner.txt
index 6ee334d94..4952e7499 100644
--- a/shenyu-admin/src/main/resources/banner.txt
+++ b/shenyu-admin/src/main/resources/banner.txt
@@ -4,5 +4,5 @@
\\___ \\| '_ \\ / _ \\ '_ \\| | | | | | | Name: ShenYu Admin
____) | | | | __/ | | | |_| | |_| | Port: ${server.port}
|_____/|_| |_|\\___|_| |_|\\__, |\\__,_| Pid: ${pid}
- __/ |
+ __/ | SpringBoot Version:
${spring-boot.version}
|___/
diff --git a/shenyu-bootstrap/src/main/resources/application.yml
b/shenyu-bootstrap/src/main/resources/application.yml
index 234b9af97..d5fb41368 100644
--- a/shenyu-bootstrap/src/main/resources/application.yml
+++ b/shenyu-bootstrap/src/main/resources/application.yml
@@ -64,6 +64,8 @@ management:
health:
redis:
enabled: false
+ elasticsearch:
+ enabled: false
endpoint:
health:
enabled: true
diff --git a/shenyu-bootstrap/src/main/resources/banner.txt
b/shenyu-bootstrap/src/main/resources/banner.txt
index 4f8404831..f5c9d02d5 100644
--- a/shenyu-bootstrap/src/main/resources/banner.txt
+++ b/shenyu-bootstrap/src/main/resources/banner.txt
@@ -3,6 +3,6 @@
| (___ | |__ ___ _ __ _ _ _ _ Name: ShenYu Gateway
\\___ \\| '_ \\ / _ \\ '_ \\| | | | | | | Port: ${server.port}
____) | | | | __/ | | | |_| | |_| | Pid: ${pid}
- |_____/|_| |_|\\___|_| |_|\\__, |\\__,_|
+ |_____/|_| |_|\\___|_| |_|\\__, |\\__,_| SpringBoot Version:
${spring-boot.version}
__/ |
|___/
diff --git a/shenyu-dist/shenyu-admin-dist/src/main/release-docs/LICENSE
b/shenyu-dist/shenyu-admin-dist/src/main/release-docs/LICENSE
index 84ff3b1aa..7de3cb520 100644
--- a/shenyu-dist/shenyu-admin-dist/src/main/release-docs/LICENSE
+++ b/shenyu-dist/shenyu-admin-dist/src/main/release-docs/LICENSE
@@ -215,8 +215,8 @@ Apache 2.0 licenses
The following components are provided under the Apache License. See project
link for details.
The text of each license is the standard Apache 2.0 license.
- accessors-smart 2.4.8: https://www.minidev.net, Apache 2.0
- annotations 4.1.1.4: http://source.android.com, Apache 2.0
+ accessors-smart 2.4.11: https://www.minidev.net, Apache 2.0
+ annotations 13.0: http://source.android.com, Apache 2.0
attoparser 2.0.5.RELEASE: http://www.attoparser.org, Apache 2.0
audience-annotations 0.5.0: https://yetus.apache.org/audience-annotations,
Apache 2.0
byte-buddy 1.12.6: https://bytebuddy.net/byte-buddy, Apache 2.0
@@ -232,8 +232,8 @@ The text of each license is the standard Apache 2.0 license.
error_prone_annotations 2.11.0: https://github.com/google/error-prone,
Apache 2.0
failsafe 2.4.4: https://github.com/jhalterman/failsafe, Apache 2.0
failureaccess 1.0.1:https://github.com/google/guava, Apache 2.0
- grpc-api 1.33.1: https://github.com/grpc/grpc, Apache 2.0
- grpc-context 1.33.1: https://github.com/grpc/grpc, Apache 2.0
+ grpc-api 1.48.0: https://github.com/grpc/grpc, Apache 2.0
+ grpc-context 1.48.0: https://github.com/grpc/grpc, Apache 2.0
grpc-core 1.48.0: https://github.com/grpc/grpc, Apache 2.0
grpc-grpclb 1.48.0: https://github.com/grpc/grpc, Apache 2.0
grpc-netty 1.48.0: https://github.com/grpc/grpc, Apache 2.0
@@ -243,19 +243,19 @@ The text of each license is the standard Apache 2.0
license.
gson 2.9.0: https://github.com/google/gson, Apache 2.0
guava 31.1-jre: https://github.com/google/guava, Apache 2.0
hessian 4.0.38: http://github.com/alipay/sofa-hessian, Apache 2.0
- hibernate-validator 6.2.3.Final:
https://github.com/hibernate/hibernate-validator, Apache 2.0
+ hibernate-validator 6.2.5.Final:
https://github.com/hibernate/hibernate-validator, Apache 2.0
HikariCP 4.0.3: https://github.com/brettwooldridge/HikariCP, Apache 2.0
httpasyncclient 4.1.5:
https://github.com/apache/httpasyncclient/tree/4.1.2, Apache 2.0
- httpclient 4.5.13: http://hc.apache.org/httpcomponents-client, Apache 2.0
- httpcore 4.4.15: http://hc.apache.org/httpcomponents-core-ga, Apache 2.0
- httpcore-nio 4.4.15: http://hc.apache.org/httpcomponents-core-ga, Apache
2.0
+ httpclient 4.5.14: http://hc.apache.org/httpcomponents-client, Apache 2.0
+ httpcore 4.4.16: http://hc.apache.org/httpcomponents-core-ga, Apache 2.0
+ httpcore-nio 4.4.16: http://hc.apache.org/httpcomponents-core-ga, Apache
2.0
j2objc-annotations 1.3 https://github.com/google/j2objc, Apache 2.0
- jackson-annotations 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-core 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-databind 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-datatype-jdk8 2.13.3: http://github.com/FasterXML/jackson, Apache
2.0
- jackson-datatype-jsr310 2.13.3: http://github.com/FasterXML/jackson,
Apache 2.0
- jackson-module-parameter-names 2.13.3:
http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-annotations 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-core 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-databind 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-datatype-jdk8 2.13.5: http://github.com/FasterXML/jackson, Apache
2.0
+ jackson-datatype-jsr310 2.13.5: http://github.com/FasterXML/jackson,
Apache 2.0
+ jackson-module-parameter-names 2.13.5:
http://github.com/FasterXML/jackson, Apache 2.0
jakarta.validation-api 2.0.2: http://beanvalidation.org, Apache 2.0
javassist 3.21.0-GA: https://github.com/jboss-javassist/javassist, Apache
2.0
jboss-logging 3.4.3.Final: http://www.jboss.org, Apache 2.0
@@ -263,39 +263,43 @@ The text of each license is the standard Apache 2.0
license.
jetcd-common 0.7.3: https://github.com/etcd-io/jetcd, Apache 2.0
jetcd-core 0.7.3: https://github.com/etcd-io/jetcd, Apache 2.0
jetcd-grpc 0.7.3: https://github.com/etcd-io/jetcd, Apache 2.0
- json-path 2.6.0: https://github.com/jayway/JsonPath, Apache 2.0
- json-smart 2.4.8: https://www.minidev.net/, Apache 2.0
+ json-path 2.7.0: https://github.com/jayway/JsonPath, Apache 2.0
+ json-smart 2.4.11: https://www.minidev.net/, Apache 2.0
jsqlparser 4.2: https://github.com/JSQLParser/JSqlParser, Apache 2.0
jsr305 3.0.2: http://findbugs.sourceforge.net/, Apache 2.0
listenablefuture 9999.0-empty-to-avoid-conflict-with-guava:
https://github.com/google/guava, Apache 2.0
log4j-api 2.17.2: https://logging.apache.org/log4j/2.x/log4j-api, Apache
2.0
log4j-to-slf4j 2.17.2:
https://logging.apache.org/log4j/2.x/log4j-to-slf4j, Apache 2.0
mapstruct 1.2.0.Final: https://github.com/mapstruct/mapstruct, Apache 2.0
- micrometer-core 1.8.6: https://github.com/micrometer-metrics/micrometer,
Apache 2.0
+ micrometer-core 1.9.12: https://github.com/micrometer-metrics/micrometer,
Apache 2.0
+ micrometer-registry-prometheus 1.9.12:
https://github.com/micrometer-metrics/micrometer, Apache 2.0
mybatis 3.5.9: http://www.mybatis.org/mybatis-3, Apache 2.0
mybatis-spring 2.0.7: http://www.mybatis.org/spring, Apache 2.0
mybatis-spring-boot-autoconfigure 2.2.2:
http://github.com/mybatis/spring-boot-starter/mybatis-spring-boot-autoconfigure,
Apache 2.0
mybatis-spring-boot-starter 2.2.2:
http://github.com/mybatis/spring-boot-starter/mybatis-spring-boot-starter,
Apache 2.0
nacos-client 2.0.4: https://github.com/alibaba/nacos, Apache 2.0
- netty-buffer 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-dns 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-http2 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-http 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-socks 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-common 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-handler 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-handler-proxy 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-resolver 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-resolver-dns 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-transport 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-transport-classes-epoll 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-native-epoll 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-native-unix-common 4.1.77.Final: https://github.com/netty,
Apache 2.0
+ netty-buffer 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-dns 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-http2 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-http 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-socks 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-common 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-handler 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-handler-proxy 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-resolver 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-resolver-dns 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-transport 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-transport-classes-epoll 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-native-unix-common 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-resolver-dns-classes-macos 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-resolver-dns-native-macos 4.1.94.Final-osx-x86_64
https://github.com/netty, Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final-linux-x86_64
https://github.com/netty, Apache 2.0
objenesis 3.1: http://objenesis.org, Apache 2.0
- okhttp 3.14.9: https://github.com/square/okhttp, Apache 2.0
- okio 1.17.2: https://github.com/square/okio, Apache 2.0
- perfmark-api 0.19.0: https://github.com/perfmark/perfmark, Apache 2.0
+ okhttp 4.9.3: https://github.com/square/okhttp, Apache 2.0
+ okio 2.8.0: https://github.com/square/okio, Apache 2.0
+ perfmark-api 0.25.0: https://github.com/perfmark/perfmark, Apache 2.0
proto-google-common-protos 1.17.0:
https://github.com/googleapis/common-protos-java, Apache 2.0
protostuff-core 1.0.8:
https://github.com/protostuff/protostuff/protostuff-core, Apache-2.0
protostuff-runtime 1.0.8:
https://github.com/protostuff/protostuff/protostuff-core, Apache-2.0
@@ -303,7 +307,7 @@ The text of each license is the standard Apache 2.0 license.
protostuff-collectionschema 1.0.8:
https://github.com/protostuff/protostuff/protostuff-collectionschema, Apache-2.0
protostuff-core 1.0.8: https://github.com/protostuff/protostuff, Apache 2.0
protostuff-runtime 1.0.8: https://github.com/protostuff/protostuff, Apache
2.0
- reactor-core 1.0.1.RELEASE: https://github.com/reactor/reactor, Apache 2.0
+ reactor-core 3.4.30: https://github.com/reactor/reactor, Apache 2.0
reactor-spring 1.0.1.RELEASE: https://github.com/reactor/reactor, Apache
2.0
shiro-cache 1.8.0: https://shiro.apache.org, Apache 2.0
shiro-config-core 1.8.0: https://shiro.apache.org, Apache 2.0
@@ -318,33 +322,33 @@ The text of each license is the standard Apache 2.0
license.
shiro-spring-boot-starter 1.8.0: https://shiro.apache.org, Apache 2.0
shiro-spring-boot-web-starter 1.8.0: https://shiro.apache.org, Apache 2.0
shiro-web 1.8.0: https://shiro.apache.org, Apache 2.0
- simpleclient_tracer_common 0.12.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
- simpleclient_tracer_otel_agent 0.12.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
- simpleclient_tracer_otel 0.12.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
+ simpleclient_tracer_common 0.15.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
+ simpleclient_tracer_otel_agent 0.15.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
+ simpleclient_tracer_otel 0.15.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
simpleclient 0.15.0:
http://github.com/prometheus/client_java/simpleclient, Apache 2.0
- snakeyaml 1.29: http://www.snakeyaml.org, Apache 2.0
- spring-aop 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-aop, Apache 2.0
- spring-beans 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-beans, Apache 2.0
- spring-boot 2.6.8: https://spring.io, Apache 2.0
- spring-boot-actuator 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator,
Apache 2.0
- spring-boot-actuator-autoconfigure 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure,
Apache 2.0
- spring-boot-autoconfigure 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/, Apache 2.0
- spring-boot-starter 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter,
Apache 2.0
- spring-boot-starter-actuator 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator,
Apache 2.0
- spring-boot-starter-jdbc 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc,
Apache 2.0
- spring-boot-starter-json 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json,
Apache 2.0
- spring-boot-starter-logging 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging,
Apache 2.0
- spring-boot-starter-thymeleaf 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-thymeleaf,
Apache 2.0
- spring-boot-starter-tomcat 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat,
Apache 2.0
- spring-boot-starter-validation 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation,
Apache 2.0
- spring-boot-starter-web 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web,
Apache 2.0
- spring-boot-starter-websocket 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-websocket,
Apache 2.0
- spring-context 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-context, Apache
2.0
- spring-context-support 5.3.20: https://spring.io, Apache 2.0
- spring-core 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-context-support,
Apache 2.0
- spring-data-commons 2.6.4:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons,
Apache 2.0
- spring-data-ldap 2.6.4:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-ldap,
Apache 2.0
- spring-expression 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-expression,
Apache 2.0
+ snakeyaml 1.30: http://www.snakeyaml.org, Apache 2.0
+ spring-aop 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-aop, Apache 2.0
+ spring-beans 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-beans, Apache 2.0
+ spring-boot 2.7.13: https://spring.io, Apache 2.0
+ spring-boot-actuator 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator,
Apache 2.0
+ spring-boot-actuator-autoconfigure 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure,
Apache 2.0
+ spring-boot-autoconfigure 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/, Apache 2.0
+ spring-boot-starter 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter,
Apache 2.0
+ spring-boot-starter-actuator 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator,
Apache 2.0
+ spring-boot-starter-jdbc 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc,
Apache 2.0
+ spring-boot-starter-json 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json,
Apache 2.0
+ spring-boot-starter-logging 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging,
Apache 2.0
+ spring-boot-starter-thymeleaf 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-thymeleaf,
Apache 2.0
+ spring-boot-starter-tomcat 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat,
Apache 2.0
+ spring-boot-starter-validation 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation,
Apache 2.0
+ spring-boot-starter-web 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web,
Apache 2.0
+ spring-boot-starter-websocket 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-websocket,
Apache 2.0
+ spring-context 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-context, Apache
2.0
+ spring-context-support 5.3.28: https://spring.io, Apache 2.0
+ spring-core 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-context-support,
Apache 2.0
+ spring-data-commons 2.7.13:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons,
Apache 2.0
+ spring-data-ldap 2.7.13:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-ldap,
Apache 2.0
+ spring-expression 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-expression,
Apache 2.0
springfox-core 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-core, Apache 2.0
springfox-schema 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-schema, Apache 2.0
springfox-spi 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-spi, Apache 2.0
@@ -352,24 +356,24 @@ The text of each license is the standard Apache 2.0
license.
springfox-swagger2 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-swagger2/2.9.2,
Apache 2.0
springfox-swagger-common 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-swagger-common/2.9.2,
Apache 2.0
springfox-swagger-ui 2.9.2:
https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui/2.9.2,
Apache 2.0
- spring-jcl 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-jcl, Apache 2.0
- spring-jdbc 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-jdbc, Apache 2.0
- spring-ldap-core 2.3.8.RELEASE:
https://mvnrepository.com/artifact/org.springframework.ldap/spring-ldap-core,
Apache 2.0
- spring-messaging 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-messaging, Apache
2.0
+ spring-jcl 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-jcl, Apache 2.0
+ spring-jdbc 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-jdbc, Apache 2.0
+ spring-ldap-core 2.4.1:
https://mvnrepository.com/artifact/org.springframework.ldap/spring-ldap-core,
Apache 2.0
+ spring-messaging 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-messaging, Apache
2.0
spring-plugin-core 1.2.0.RELEASE:
https://mvnrepository.com/artifact/org.springframework.plugin/spring-plugin-core,
Apache 2.0
spring-plugin-metadata 1.2.0.RELEASE:
https://mvnrepository.com/artifact/org.springframework.plugin/spring-plugin-metadata,
Apache 2.0
- spring-tx 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-tx, Apache 2.0
- spring-web 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-web, Apache 2.0
- spring-webmvc 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-webmvc, Apache 2.0
- spring-websocket 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-websocket, Apache
2.0
+ spring-tx 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-tx, Apache 2.0
+ spring-web 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-web, Apache 2.0
+ spring-webmvc 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-webmvc, Apache 2.0
+ spring-websocket 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-websocket, Apache
2.0
swagger-annotations 1.5.20:
https://github.com/swagger-api/swagger-core/modules/swagger-annotations, Apache
2.0
swagger-models 1.5.20:
https://github.com/swagger-api/swagger-core/modules/swagger-models, Apache 2.0
thymeleaf 3.0.15.RELEASE: http://www.thymeleaf.org, Apache 2.0
thymeleaf-extras-java8time-3.0.4.RELEASE: http://www.thymeleaf.org, Apache
2.0
thymeleaf-spring5-3.0.15.RELEASE: http://www.thymeleaf.org, Apache 2.0
- tomcat-embed-core 9.0.63: https://tomcat.apache.org, Apache 2.0
- tomcat-embed-el 9.0.63: https://tomcat.apache.org, Apache 2.0
- tomcat-embed-websocket 9.0.63: https://tomcat.apache.org, Apache 2.0
+ tomcat-embed-core 9.0.76: https://tomcat.apache.org, Apache 2.0
+ tomcat-embed-el 9.0.76: https://tomcat.apache.org, Apache 2.0
+ tomcat-embed-websocket 9.0.76: https://tomcat.apache.org, Apache 2.0
unbescape 1.1.6.RELEASE: http://www.unbescape.org, Apache 2.0
zookeeper 3.5.7: https://github.com/apache/zookeeper, Apache 2.0
zookeeper-jute 3.5.7: https://github.com/apache/zookeeper, Apache 2.0
@@ -381,6 +385,15 @@ The text of each license is the standard Apache 2.0
license.
brpc 2022.2.0: https://github.com/baidu/starlight, Apache 2.0
apollo-client 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
apollo-openapi 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
+ apollo-core 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
+ reactor-netty-core 1.0.33
https://github.com/reactor/reactor/blob/main/LICENSE, Apache 2.0
+ reactor-netty-http 1.0.33
https://github.com/reactor/reactor-netty/blob/main/LICENSE, Apache 2.0
+ javax.inject 1 http://www.apache.org/licenses/LICENSE-2.0, Apache 2.0
+ kotlin-stdlib 1.6.21 https://kotlinlang.org, Apache 2.0
+ kotlin-stdlib-common 1.6.21 https://kotlinlang.org, Apache 2.0
+ reactor-core 3.4.30
https://github.com/reactor/reactor-core/blob/main/LICENSE, Apache 2.0
+ simpleclient_common 0.15.0
https://github.com/micrometer-metrics/micrometer/blob/main/LICENSE, Apache 2.0
+ guice 5.0.1 https://github.com/google/guice/blob/master/COPYING, Apache 2.0
========================================================================
BSD licenses
@@ -389,11 +402,14 @@ BSD licenses
The following components are provided under a BSD license. See project link
for details.
The text of each license is also included at licenses/LICENSE-[project].txt.
- asm 9.1: https://github.com/llbit/ow2-asm, BSD 3-Clause
+ asm 9.2: https://github.com/llbit/ow2-asm, BSD 3-Clause
+ asm-tree 9.2: https://asm.ow2.io/, BSD 3-Clause
+ qs 6.5.0: https://github.com/ljharb/qs, BSD 3-Clause
+ react-intl-universal 2.4.2:
https://github.com/alibaba/react-intl-universal, BSD 3-Clause
encoder 1.2.2:
https://www.owasp.org/index.php/OWASP_Java_Encoder_Project/encoder, BSD 3-Clause
kryo-shaded 4.0.0: https://github.com/EsotericSoftware/kryo/kryo-shaded,
BSD 2-Clause
minlog 1.3.0: https://github.com/EsotericSoftware/minlog, BSD 2-Clause
- postgresql 42.3.5: https://github.com/pgjdbc/pgjdbc, BSD 2-Clause
+ postgresql 42.3.8: https://github.com/pgjdbc/pgjdbc, BSD 2-Clause
protobuf-java 3.12.0: https://github.com/protocolbuffers/protobuf/, BSD
3-Clause
protobuf-java-util 3.21.1: https://github.com/protocolbuffers/protobuf/,
BSD 3-Clause
@@ -415,10 +431,10 @@ The following components are provided under the EPL
License. See project link fo
The text of each license is also included at licenses/LICENSE-[project].txt.
aspectjweaver 1.9.7:
https://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.9.7, EPL 1.0
- h2 Database 1.4.200: http://www.h2database.com/html/main.html , MPL 2.0 or
EPL 1.0
+ h2 2.1.214: http://www.h2database.com/html/main.html , MPL 2.0 or EPL 1.0
jakarta.annotation-api 1.3.5:
https://projects.eclipse.org/projects/ee4j.ca, EPL 2.0
- logback-classic 1.2.11: https://github.com/qos-ch/logback, EPL 1.0
- logback-core 1.2.11: https://github.com/qos-ch/logback, EPL 1.0
+ logback-classic 1.2.12: https://github.com/qos-ch/logback, EPL 1.0
+ logback-core 1.2.12: https://github.com/qos-ch/logback, EPL 1.0
========================================================================
MIT licenses
@@ -434,6 +450,7 @@ The text of each license is also included at
licenses/LICENSE-[project].txt.
jul-to-slf4j 1.7.36: http://www.slf4j.org, MIT
pagehelper 5.3.1: https://github.com/pagehelper/Mybatis-PageHelper, MIT
slf4j-api 1.7.36: https://www.slf4j.org, MIT
+ reactive-streams 1.0.4
https://github.com/reactive-streams/reactive-streams-jvm/blob/master/LICENSE,
MIT
========================================================================
MPL licenses
@@ -470,16 +487,6 @@ The text of each license is the standard Apache 2.0
license.
puppeteer 1.4.0: https://github.com/puppeteer/puppeteer, Apache 2.0
-========================================================================
-BSD licenses
-========================================================================
-
-The following components are provided under a BSD license. See project link
for details.
-The text of each license is also included at licenses/LICENSE-[project].txt.
-
- qs 6.5.0: https://github.com/ljharb/qs, BSD 3-Clause
- react-intl-universal 2.4.2:
https://github.com/alibaba/react-intl-universal, BSD 3-Clause
- asm-tree 9.3: https://asm.ow2.io/, BSD 3-Clause
========================================================================
ISC licenses
diff --git a/shenyu-dist/shenyu-bootstrap-dist/src/main/release-docs/LICENSE
b/shenyu-dist/shenyu-bootstrap-dist/src/main/release-docs/LICENSE
index 3ae14b4f8..6f7a2e08c 100644
--- a/shenyu-dist/shenyu-bootstrap-dist/src/main/release-docs/LICENSE
+++ b/shenyu-dist/shenyu-bootstrap-dist/src/main/release-docs/LICENSE
@@ -215,16 +215,17 @@ Apache 2.0 licenses
The following components are provided under the Apache License. See project
link for details.
The text of each license is the standard Apache 2.0 license.
- accessors-smart 2.4.8: https://www.minidev.net, Apache 2.0
+ accessors-smart 2.4.11: https://www.minidev.net, Apache 2.0
annotations 4.1.1.4: http://source.android.com, Apache 2.0
+ annotations 13.0: http://source.android.com, Apache 2.0
archaius-core 0.7.6: https://github.com/Netflix/archaius, Apache 2.0
- assertj-core 3.21.0: http://assertj.org/assertj-core, Apache 2.0
+ assertj-core 3.22.0: http://assertj.org/assertj-core, Apache 2.0
brave 5.1.0: https://zipkin.io, Apache 2.0
- brave-instrumentation-http 5.13.9: https://zipkin.io, Apache 2.0
+ brave-instrumentation-http 5.16.0: https://zipkin.io, Apache 2.0
brave-opentracing 0.31.1: https://zipkin.io, Apache 2.0
brave-tests 5.1.0: https://zipkin.io, Apache 2.0
breeze-core 0.1.4:
https://mvnrepository.com/artifact/com.weibo/breeze-core, Apache 2.0
- bouncy-castle-bc 2.10.1:
https://mvnrepository.com/artifact/org.apache.pulsar/bouncy-castle-bc, Apache
2.0
+ bouncy-castle-bc 2.10.1-pkg:
https://mvnrepository.com/artifact/org.apache.pulsar/bouncy-castle-bc, Apache
2.0
audience-annotations 0.5.0: https://yetus.apache.org/audience-annotations,
Apache 2.0
auto-value-annotations 1.7:
https://github.com/google/auto/tree/master/value, Apache 2.0
bolt 1.5.6: https://github.com/alipay/sofa-bolt, Apache 2.0
@@ -237,7 +238,7 @@ The text of each license is the standard Apache 2.0 license.
clickhouse-http-client 0.3.2-patch11:
https://mvnrepository.com/artifact/com.clickhouse/clickhouse-http-client,
Apache 2.0
collector 0.15.0: http://github.com/prometheus/jmx_exporter, Apache 2.0
commons-beanutils 1.9.4: https://github.com/apache/commons-beanutils,
Apache 2.0
- commons-cli 1.12: https://github.com/apache/commons-cli, Apache 2.0
+ commons-cli 1.2: https://github.com/apache/commons-cli, Apache 2.0
commons-codec 1.15: https://github.com/apache/commons-codec, Apache 2.0
commons-collections 3.2.2: https://github.com/apache/commons-collections,
Apache 2.0
commons-collections4 4.4: https://github.com/apache/commons-collections,
Apache 2.0
@@ -268,9 +269,9 @@ The text of each license is the standard Apache 2.0 license.
google-http-client-jackson2 1.34.0:
https://github.com/googleapis/google-http-java-client/google-http-client-jackson2,
Apache 2.0
grpc-all 1.33.1 https://github.com/grpc/grpc, Apache 2.0
grpc-alts 1.33.1 https://github.com/grpc/grpc, Apache 2.0
- grpc-api 1.28.0 https://github.com/grpc/grpc, Apache 2.0
+ grpc-api 1.33.1 https://github.com/grpc/grpc, Apache 2.0
grpc-auth 1.33.1: https://github.com/grpc/grpc, Apache 2.0
- grpc-context 1.28.0: https://github.com/grpc/grpc, Apache 2.0
+ grpc-context 1.33.1: https://github.com/grpc/grpc, Apache 2.0
grpc-core 1.33.1: https://github.com/grpc/grpc, Apache 2.0
grpc-grpclb 1.33.1: https://github.com/grpc/grpc, Apache 2.0
grpc-netty 1.33.1: https://github.com/grpc/grpc, Apache 2.0
@@ -285,31 +286,32 @@ The text of each license is the standard Apache 2.0
license.
gson 2.9.0: https://github.com/google/gson, Apache 2.0
guava 31.1-jre: https://github.com/google/guava, Apache 2.0
hessian 3.3.7: http://github.com/alipay/sofa-hessian, Apache 2.0
+ hessian 4.0.38: http://github.com/alipay/sofa-hessian, Apache 2.0
httpasyncclient 4.1.5: https://github.com/apache/httpcomponents-client ,
Apache 2.0
hibernate-validator 6.0.18.Final:
https://github.com/hibernate/hibernate-validator, Apache 2.0
httpclient 4.5.13: http://hc.apache.org/httpcomponents-client, Apache 2.0
- httpcore 4.4.15: http://hc.apache.org/httpcomponents-core-ga, Apache 2.0
- httpcore-nio 4.4.15: http://hc.apache.org/httpcomponents-core-ga, Apache
2.0
- httpmime 4.5.13: http://hc.apache.org/httpcomponents-client, Apache 2.0
+ httpcore 4.4.16: http://hc.apache.org/httpcomponents-core-ga, Apache 2.0
+ httpcore-nio 4.4.16: http://hc.apache.org/httpcomponents-core-ga, Apache
2.0
+ httpmime 4.5.14: http://hc.apache.org/httpcomponents-client, Apache 2.0
hystrix-core 1.5.18: https://github.com/Netflix/Hystrix, Apache 2.0
hystrix-metrics-event-stream 1.5.18: https://github.com/Netflix/Hystrix,
Apache 2.0
hystrix-serialization 1.5.18: https://github.com/Netflix/Hystrix, Apache
2.0
j2objc-annotations 1.3 https://github.com/google/j2objc, Apache 2.0
- jackson-annotations 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-core 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-annotations 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-core 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
jackson-coreutils 1.6: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-databind 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-dataformat-yaml 2.13.3: http://github.com/FasterXML/jackson,
Apache 2.0
- jackson-datatype-jdk8 2.13.3: http://github.com/FasterXML/jackson, Apache
2.0
- jackson-datatype-jsr310 2.13.3: http://github.com/FasterXML/jackson,
Apache 2.0
- jackson-jaxrs-base 2.13.3: http://github.com/FasterXML/jackson, Apache 2.0
- jackson-jaxrs-json-provider 2.13.3: http://github.com/FasterXML/jackson,
Apache 2.0
- jackson-module-afterburner 2.13.3: http://github.com/FasterXML/jackson,
Apache 2.0
- jackson-module-jaxb-annotations 2.13.3:
http://github.com/FasterXML/jackson, Apache 2.0
- jackson-module-parameter-names 2.13.3:
http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-databind 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-dataformat-yaml 2.13.5: http://github.com/FasterXML/jackson,
Apache 2.0
+ jackson-datatype-jdk8 2.13.5: http://github.com/FasterXML/jackson, Apache
2.0
+ jackson-datatype-jsr310 2.13.5: http://github.com/FasterXML/jackson,
Apache 2.0
+ jackson-jaxrs-base 2.13.5: http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-jaxrs-json-provider 2.13.5: http://github.com/FasterXML/jackson,
Apache 2.0
+ jackson-module-afterburner 2.13.5: http://github.com/FasterXML/jackson,
Apache 2.0
+ jackson-module-jaxb-annotations 2.13.5:
http://github.com/FasterXML/jackson, Apache 2.0
+ jackson-module-parameter-names 2.13.5:
http://github.com/FasterXML/jackson, Apache 2.0
jakarta.validation-api 2.0.1: http://beanvalidation.org, Apache 2.0
javapoet 1.8.0: https://github.com/square/javapoet, Apache 2.0
- javaassist 3.20.0-GA: https://github.com/jboss-javassist/javassist, Apache
2.0
+ javassist 3.20.0-GA: https://github.com/jboss-javassist/javassist, Apache
2.0
jboss-logging 3.4.3.Final: http://www.jboss.org, Apache 2.0
jetcd-api 0.7.3: https://github.com/etcd-io/jetcd, Apache 2.0
jetcd-common 0.7.3: https://github.com/etcd-io/jetcd, Apache 2.0
@@ -321,11 +323,11 @@ The text of each license is the standard Apache 2.0
license.
jjwt-impl 0.11.5: https://jwt.io, Apache 2.0
jjwt-jackson 0.11.5: https://jwt.io, Apache 2.0
json-patch 1.9: https://github.com/fge/json-patch, Apache 2.0 and LGPL
- json-path 2.6.0: https://github.com/jayway/JsonPath, Apache 2.0
- json-smart 2.4.8: https://www.minidev.net/, Apache 2.0
+ json-path 2.7.0: https://github.com/jayway/JsonPath, Apache 2.0
+ json-smart 2.4.11: https://www.minidev.net/, Apache 2.0
jsr305 3.0.2: http://findbugs.sourceforge.net/, Apache 2.0
- kafka-clients 3.0.1: https://github.com/apache/kafka, Apache 2.0
- lettuce-core 6.1.8.RELEASE: http://github.com/lettuce-io/lettuce-core,
Apache 2.0
+ kafka-clients 3.1.2: https://github.com/apache/kafka, Apache 2.0
+ lettuce-core 6.1.10.RELEASE: http://github.com/lettuce-io/lettuce-core,
Apache 2.0
listenablefuture 9999.0-empty-to-avoid-conflict-with-guava:
https://github.com/google/guava, Apache 2.0
log4j-api 2.17.2: https://logging.apache.org/log4j/2.x/log4j-api, Apache
2.0
log4j-1.2-api 2.17.2:
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-1.2-api,
Apache 2.0
@@ -334,54 +336,59 @@ The text of each license is the standard Apache 2.0
license.
lz4 1.3.0: https://github.com/jpountz/lz4-java, Apache 2.0
lz4-java 1.8.0: https://github.com/jpountz/lz4-java, Apache 2.0
metrics-core 3.0.1:
https://mvnrepository.com/artifact/com.codahale.metrics/metrics-core, Apache 2.0
- micrometer-core 1.8.6: https://github.com/micrometer-metrics/micrometer,
Apache 2.0
+ micrometer-core 1.9.12: https://github.com/micrometer-metrics/micrometer,
Apache 2.0
motan-core 1.2.0 https://github.com/weibocom/motan, Apache 2.0
motan-transport-netty4 1.2.0 https://github.com/weibocom/motan, Apache 2.0
motan-registry-zookeeper 1.2.0 https://github.com/weibocom/motan, Apache
2.0
motan-springsupport 1.2.0 https://github.com/weibocom/motan, Apache 2.0
msg-simple 1.1: https://github.com/fge/msg-simple, Apache 2.0 and LGPL
- netty-all 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-buffer 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-dns 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-haproxy 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-http2 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-http 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-memcache 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-mqtt 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-redis 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-smtp 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-socks 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-stomp 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-codec-xml 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-common 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-handler 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-handler-proxy 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-incubator-codec-classes-quic 0.0.26.Final: https://github.com/netty,
Apache 2.0
- netty-incubator-codec-native-quic 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-resolver 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-resolver-dns 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-resolver-dns-classes-macos 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-resolver-dns-native-macos 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-resolver-dns-native-macos 4.1.77.Final-osx-aarch_64:
https://github.com/netty, Apache 2.0
- netty-resolver-dns-native-macos 4.1.77.Final-osx-x86_64:
https://github.com/netty, Apache 2.0
- netty-transport 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-transport-classes-epoll 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-classes-kqueue 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-native-epoll 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-native-epoll 4.1.77.Final-linux-aarch_64:
https://github.com/netty, Apache 2.0
- netty-transport-native-epoll 4.1.77.Final-linux-x86_64:
https://github.com/netty, Apache 2.0
- netty-transport-native-kqueue 4.1.77.Final-osx-aarch_64:
https://github.com/netty, Apache 2.0
- netty-transport-native-kqueue 4.1.77.Final-osx-x86_64:
https://github.com/netty, Apache 2.0
- netty-transport-native-unix-common 4.1.77.Final: https://github.com/netty,
Apache 2.0
- netty-transport-rxtx 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-transport-sctp 4.1.77.Final: https://github.com/netty, Apache 2.0
- netty-transport-udt 4.1.77.Final: https://github.com/netty, Apache 2.0
+ netty-all 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-buffer 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-dns 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-haproxy 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-http2 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-http 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-memcache 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-mqtt 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-redis 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-smtp 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-socks 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-stomp 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-codec-xml 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-common 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-handler 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-handler-proxy 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-incubator-codec-classes-quic 0.0.45.Final: https://github.com/netty,
Apache 2.0
+ netty-incubator-codec-classes-quic 0.0.45.Final: https://github.com/netty,
Apache 2.0
+ netty-incubator-codec-native-quic 0.0.45.Final-linux-x86_64:
https://github.com/netty, Apache 2.0
+ netty-resolver 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-resolver-dns 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-resolver-dns-classes-macos 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-resolver-dns-native-macos 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-resolver-dns-native-macos 4.1.94.Final-osx-aarch_64:
https://github.com/netty, Apache 2.0
+ netty-resolver-dns-native-macos 4.1.94.Final-osx-x86_64:
https://github.com/netty, Apache 2.0
+ netty-transport 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-transport-classes-epoll 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-classes-kqueue 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final-linux-aarch_64:
https://github.com/netty, Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final-linux-x86_64:
https://github.com/netty, Apache 2.0
+ netty-transport-native-kqueue 4.1.94.Final-osx-aarch_64:
https://github.com/netty, Apache 2.0
+ netty-transport-native-kqueue 4.1.94.Final-osx-x86_64:
https://github.com/netty, Apache 2.0
+ netty-transport-native-unix-common 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-transport-rxtx 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-transport-sctp 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-transport-udt 4.1.94.Final: https://github.com/netty, Apache 2.0
+ netty-resolver-dns-classes-macos 4.1.94.Final: https://github.com/netty,
Apache 2.0
+ netty-resolver-dns-native-macos 4.1.94.Final-osx-x86_64
https://github.com/netty, Apache 2.0
+ netty-transport-native-epoll 4.1.94.Final-linux-x86_64
https://github.com/netty, Apache 2.0
+ netty-handler-ssl-ocsp 4.1.94.Final-linux-x86_64 https://github.com/netty,
Apache 2.0
nio-multipart-parser 1.1.0:
https://github.com/synchronoss/nio-multipart/nio-multipart-parser, Apache 2.0
nio-stream-storage 1.1.3:
https://github.com/synchronoss/nio-stream-storage, Apache 2.0
okhttp 2.7.4: https://github.com/square/okhttp, Apache 2.0
okhttp 3.14.9: https://github.com/square/okhttp, Apache 2.0
- okio 1.17.2: https://github.com/square/okio, Apache 2.0
+ okio 2.8.0: https://github.com/square/okio, Apache 2.0
opencensus-api 0.24.0:
https://github.com/census-instrumentation/opencensus-java, Apache 2.0
opencensus-contrib-http-util 0.24.0:
https://github.com/census-instrumentation/opencensus-java, Apache 2.0
opencensus-proto 0.2.0:
https://github.com/census-instrumentation/opencensus-proto, Apache 2.0
@@ -391,13 +398,13 @@ The text of each license is the standard Apache 2.0
license.
opentracing-util 0.22.0: https://github.com/opentracing/opentracing-java,
Apache 2.0
perfmark-api 0.19.0: https://github.com/perfmark/perfmark, Apache 2.0
proto-google-common-protos 1.17.0:
https://github.com/googleapis/common-protos-java, Apache 2.0
- reactor-core 3.4.18.RELEASE: https://github.com/reactor/reactor-core,
Apache 2.0
- reactor-extra 3.4.8.RELEASE: https://github.com/reactor/reactor-addons,
Apache 2.0
- reactor-netty 1.0.19.RELEASE: https://github.com/reactor/reactor-netty,
Apache 2.0
- reactor-netty-core 1.0.19.RELEASE:
https://github.com/reactor/reactor-netty, Apache 2.0
- reactor-netty-http 1.0.19.RELEASE:
https://github.com/reactor/reactor-netty, Apache 2.0
- reactor-netty-http-brave 1.0.19.RELEASE:
https://github.com/reactor/reactor-netty, Apache 2.0
- reactor-netty-incubator-quic 0.0.8.RELEASE:
https://github.com/reactor/reactor-netty, Apache 2.0
+ reactor-core 3.4.30: https://github.com/reactor/reactor-core, Apache 2.0
+ reactor-extra 3.4.10: https://github.com/reactor/reactor-addons, Apache 2.0
+ reactor-netty 1.0.33: https://github.com/reactor/reactor-netty, Apache 2.0
+ reactor-netty-core 1.0.33: https://github.com/reactor/reactor-netty,
Apache 2.0
+ reactor-netty-http 1.0.33: https://github.com/reactor/reactor-netty,
Apache 2.0
+ reactor-netty-http-brave 1.0.33: https://github.com/reactor/reactor-netty,
Apache 2.0
+ reactor-netty-incubator-quic 0.0.22:
https://github.com/reactor/reactor-netty, Apache 2.0
resilience4j-circuitbreaker 1.7.1: https://resilience4j.readme.io, Apache
2.0
resilience4j-core 1.7.1: https://resilience4j.readme.io, Apache 2.0
resilience4j-ratelimiter 1.7.1: https://resilience4j.readme.io, Apache 2.0
@@ -412,32 +419,32 @@ The text of each license is the standard Apache 2.0
license.
sentinel-core 1.8.3: https://github.com/alibaba/Sentinel/sentinel-core,
Apache 2.0
sentinel-reactor-adapter 1.8.3:
https://github.com/alibaba/Sentinel/sentinel-adapter/sentinel-reactor-adapter,
Apache 2.0
sentinel-spring-webflux-adapter 1.8.3:
https://github.com/alibaba/Sentinel/sentinel-adapter/sentinel-spring-webflux-adapter,
Apache 2.0
- simpleclient_common 0.12.0: https://github.com/prometheus/client_java,
Apache 2.0
+ simpleclient_common 0.15.0: https://github.com/prometheus/client_java,
Apache 2.0
simpleclient_hotspot 0.15.0: https://github.com/prometheus/client_java,
Apache 2.0
simpleclient_httpserver 0.15.0: https://github.com/prometheus/client_java,
Apache 2.0
- simpleclient_tracer_common 0.12.0:
https://github.com/prometheus/client_java, Apache 2.0
- simpleclient_tracer_otel_agent 0.12.0:
https://github.com/prometheus/client_java, Apache 2.0
- simpleclient_tracer_otel 0.12.0:
https://github.com/prometheus/client_java, Apache 2.0
+ simpleclient_tracer_common 0.15.0:
https://github.com/prometheus/client_java, Apache 2.0
+ simpleclient_tracer_otel_agent 0.15.0:
https://github.com/prometheus/client_java, Apache 2.0
+ simpleclient_tracer_otel 0.15.0:
https://github.com/prometheus/client_java, Apache 2.0
simpleclient 0.15.0: https://github.com/prometheus/client_java, Apache 2.0
- snakeyaml 1.29: http://www.snakeyaml.org, Apache 2.0
- snappy-java 1.1.8.1: https://github.com/xerial/snappy-java, Apache 2.0
+ snakeyaml 1.30: http://www.snakeyaml.org, Apache 2.0
+ snappy-java 1.1.8.4: https://github.com/xerial/snappy-java, Apache 2.0
sofa-common-tools 1.0.18:
https://github.com/sofastack/sofa-common-tools/sofa-common-tools, Apache 2.0
sofa-rpc-all 5.7.6: http://github.com/sofastack/sofa-rpc, Apache 2.0
- spring-aop 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-aop, Apache 2.0
- spring-beans 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-beans, Apache 2.0
- spring-boot 2.6.8: https://spring.io, Apache 2.0
- spring-boot-actuator 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator,
Apache 2.0
- spring-boot-actuator-autoconfigure 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure,
Apache 2.0
- spring-boot-autoconfigure 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/, Apache 2.0
- spring-boot-configuration-processor 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor,
Apache 2.0
- spring-boot-starter 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter,
Apache 2.0
- spring-boot-starter-actuator 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator,
Apache 2.0
- spring-boot-starter-cache 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-cache,
Apache 2.0
- spring-boot-starter-json 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json,
Apache 2.0
- spring-boot-starter-logging 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging,
Apache 2.0
- spring-boot-starter-reactor-netty 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-reactor-netty,
Apache 2.0
- spring-boot-starter-webflux 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-webflux,
Apache 2.0
- spring-boot-test 2.6.8:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test,
Apache 2.0
+ spring-aop 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-aop, Apache 2.0
+ spring-beans 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-beans, Apache 2.0
+ spring-boot 2.7.13: https://spring.io, Apache 2.0
+ spring-boot-actuator 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator,
Apache 2.0
+ spring-boot-actuator-autoconfigure 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure,
Apache 2.0
+ spring-boot-autoconfigure 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/, Apache 2.0
+ spring-boot-configuration-processor 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor,
Apache 2.0
+ spring-boot-starter 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter,
Apache 2.0
+ spring-boot-starter-actuator 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator,
Apache 2.0
+ spring-boot-starter-cache 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-cache,
Apache 2.0
+ spring-boot-starter-json 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json,
Apache 2.0
+ spring-boot-starter-logging 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging,
Apache 2.0
+ spring-boot-starter-reactor-netty 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-reactor-netty,
Apache 2.0
+ spring-boot-starter-webflux 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-webflux,
Apache 2.0
+ spring-boot-test 2.7.13:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test,
Apache 2.0
spring-cloud-alibaba-commons 2021.0.1.0:
https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-alibaba-commons,
Apache 2.0
spring-cloud-baidu-thirdparty-commons 2022.2.0:
https://github.com/baidu/spring-cloud-baidu, Apache 2.0
spring-cloud-commons 3.1.2:
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-commons,
Apache 2.0
@@ -453,26 +460,26 @@ The text of each license is the standard Apache 2.0
license.
spring-cloud-starter-netflix-archaius 2.2.10.RELEASE:
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-archaius,
Apache 2.0
spring-cloud-starter-netflix-eureka-client 3.1.2:
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client,
Apache 2.0
spring-cloud-starter-netflix-ribbon 2.2.10.RELEASE:
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-ribbon,
Apache 2.0
- spring-context 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-context, Apache
2.0
+ spring-context 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-context, Apache
2.0
spring-context-support 1.0.11: https://spring.io, Apache 2.0
- spring-context-support 5.3.20: https://spring.io, Apache 2.0
- spring-core 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-context-support,
Apache 2.0
- spring-data-commons 2.6.4:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons,
Apache 2.0
- spring-data-keyvalue 2.6.4:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-keyvalue,
Apache 2.0
- spring-data-redis 2.6.4:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis,
Apache 2.0
- spring-expression 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-expression,
Apache 2.0
- spring-jcl 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-jcl, Apache 2.0
- spring-oxm 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-oxm, Apache 2.0
+ spring-context-support 5.3.28: https://spring.io, Apache 2.0
+ spring-core 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-context-support,
Apache 2.0
+ spring-data-commons 2.7.13:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons,
Apache 2.0
+ spring-data-keyvalue 2.7.13:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-keyvalue,
Apache 2.0
+ spring-data-redis 2.7.13:
https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis,
Apache 2.0
+ spring-expression 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-expression,
Apache 2.0
+ spring-jcl 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-jcl, Apache 2.0
+ spring-oxm 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-oxm, Apache 2.0
spring-security-config 5.3.10.RELEASE:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-config,
Apache 2.0
spring-security-core 5.6.5:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-core,
Apache 2.0
- spring-security-crypto 5.6.5:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-crypto,
Apache 2.0
+ spring-security-crypto 5.7.9:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-crypto,
Apache 2.0
spring-security-oauth2-client 5.3.10.RELEASE:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-oauth2-client,
Apache 2.0
spring-security-oauth2-core 5.6.5:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-oauth2-core,
Apache 2.0
spring-security-rsa 1.0.10.RELEASE:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-rsa,
Apache 2.0
spring-security-web 5.6.5:
https://mvnrepository.com/artifact/org.springframework.security/spring-security-web,
Apache 2.0
- spring-tx 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-tx, Apache 2.0
- spring-web 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-web, Apache 2.0
- spring-webflux 5.3.20:
https://mvnrepository.com/artifact/org.springframework/spring-webflux, Apache
2.0
+ spring-tx 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-tx, Apache 2.0
+ spring-web 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-web, Apache 2.0
+ spring-webflux 5.3.28:
https://mvnrepository.com/artifact/org.springframework/spring-webflux, Apache
2.0
swagger-annotations 1.5.18:
https://github.com/swagger-api/swagger-core/modules/swagger-annotations, Apache
2.0
swagger-core 1.5.18:
https://github.com/swagger-api/swagger-core/modules/swagger-core, Apache 2.0
swagger-models 1.5.18:
https://github.com/swagger-api/swagger-core/modules/swagger-models, Apache 2.0
@@ -487,11 +494,11 @@ The text of each license is the standard Apache 2.0
license.
zipkin-sender-kafka08 2.7.4:
https://mvnrepository.com/artifact/io.zipkin.reporter/zipkin-sender-kafka08,
Apache 2.0
zipkin-sender-kafka11 2.7.4:
https://mvnrepository.com/artifact/io.zipkin.reporter2/zipkin-sender-kafka11,
Apache 2.0
zipkin-sender-urlconnection 2.7.4:
https://mvnrepository.com/artifact/io.zipkin.reporter2/zipkin-sender-urlconnection,
Apache 2.0
- zkclient 0.3: https://github.com/sgroschupf/zkclient, Apache 2.0
+ zkclient 0.11: https://github.com/sgroschupf/zkclient, Apache 2.0
zookeeper 3.5.7: https://github.com/apache/zookeeper, Apache 2.0
zookeeper-jute 3.5.7: https://github.com/apache/zookeeper, Apache 2.0
byte-buddy 1.12.6: https://github.com/raphw/byte-buddy, Apache 2.0
- byte-buddy-agent 1.12.6: https://github.com/raphw/byte-buddy, Apache 2.0
+ byte-buddy-agent 1.12.23: https://github.com/raphw/byte-buddy, Apache 2.0
disruptor 3.4.0 https://github.com/LMAX-Exchange/disruptor, Apache 2.0
eureka-client 1.10.17 https://github.com/Netflix/eureka, Apache 2.0
eureka-core 1.10.17 https://github.com/Netflix/eureka, Apache 2.0
@@ -509,7 +516,7 @@ The text of each license is the standard Apache 2.0 license.
oauth2-oidc-sdk 9.19:
https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions,
Apache 2.0
org.apache.oltu.oauth2.client 1.0.2:
https://mvnrepository.com/artifact/org.apache.oltu.oauth2/org.apache.oltu.oauth2.client,
Apache 2.0
org.apache.oltu.oauth2.common 1.0.2:
https://mvnrepository.com/artifact/org.apache.oltu.oauth2/org.apache.oltu.oauth2.common,
Apache 2.0
- reactor-test 3.4.18: https://github.com/reactor/reactor-core, Apache 2.0
+ reactor-test 3.4.30: https://github.com/reactor/reactor-core, Apache 2.0
ribbon 2.3.0: https://github.com/Netflix/ribbon, Apache 2.0
ribbon-core 2.3.0: https://github.com/Netflix/ribbon, Apache 2.0
ribbon-eureka 2.3.0: https://github.com/Netflix/ribbon, Apache 2.0
@@ -523,8 +530,8 @@ The text of each license is the standard Apache 2.0 license.
rocketmq-remoting 4.9.3: https://github.com/apache/rocketmq, Apache 2.0
rocketmq-srvutil 4.9.3:
https://mvnrepository.com/artifact/org.apache.rocketmq/rocketmq-srvutil, Apache
2.0
rxnetty 0.4.9: https://github.com/ReactiveX/RxNetty, Apache 2.0
- rxnetty-contexts-0.4.9: https://github.com/ReactiveX/RxNetty, Apache 2.0
- rxnetty-servo-0.4.9: https://github.com/ReactiveX/RxNetty, Apache 2.0
+ rxnetty-contexts 0.4.9: https://github.com/ReactiveX/RxNetty, Apache 2.0
+ rxnetty-servo 0.4.9: https://github.com/ReactiveX/RxNetty, Apache 2.0
servo-core 0.12.21: https://github.com/Netflix/servo, Apache 2.0
stax-api 1.0.1: http://stax.codehaus.org/, Apache 2.0
woodstox-core 6.2.1: https://github.com/FasterXML/woodstox, Apache 2.0
@@ -532,7 +539,6 @@ The text of each license is the standard Apache 2.0 license.
tomcat-annotations-api 9.0.29: https://tomcat.apache.org/, Apache 2.0
tomcat-embed-core 9.0.29: https://tomcat.apache.org/, Apache 2.0
jackson-jr-objects 2.10.1: http://wiki.fasterxml.com/JacksonHome, Apache
2.0
- kafka-clients 3.2.0: https://kafka.apache.org/, Apache 2.0
elasticsearch-java 8.2.3: https://github.com/elastic/elasticsearch-java,
Apache 2.0
elasticsearch-rest-client 8.2.3: https://github.com/elastic/elasticsearch,
Apache 2.0
pulsar-client 2.10.1: https://github.com/apache/pulsar, Apache 2.0
@@ -544,12 +550,16 @@ The text of each license is the standard Apache 2.0
license.
casdoor-java-sdk 1.9.0: https://github.com/casdoor/casdoor-java-sdk,
Apache 2.0
nimbus-jose-jwt 9.10: https://connect2id.com/products/nimbus-jose-jwt,
Apache 2.0
oltu 1.0.2: https://oltu.apache.org/, Apache 2.0
- httpclient 4.5.13: https://github.com/apache/httpcomponents-client, Apache
2.0
- okhttp 3.14.9: https://square.github.io/okhttp, Apache 2.0
+ httpclient 4.5.14: https://github.com/apache/httpcomponents-client, Apache
2.0
+ okhttp 4.9.3: https://square.github.io/okhttp, Apache 2.0
brpc 2022.2.0: https://github.com/baidu/starlight, Apache 2.0
+ starlight-all 2022.2.0: https://github.com/baidu/starlight, Apache 2.0
apollo-client 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
apollo-openapi 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
+ apollo-core 2.1.0:
https://github.com/apolloconfig/apollo/blob/master/LICENSE, Apache 2.0
client-java-spring-integration 17.0.2:
https://github.com/kubernetes-client/java, Apache 2.0
+ kotlin-stdlib 1.6.21 https://kotlinlang.org, Apache 2.0
+ kotlin-stdlib-common 1.6.21 https://kotlinlang.org, Apache 2.0
========================================================================
BSD licenses
@@ -570,13 +580,15 @@ The text of each license is also included at
licenses/LICENSE-[project].txt.
tars-client 1.7.2: https://github.com/TarsCloud/Tars/tars-client, BSD
3-Clause
tars-context 1.7.2: https://github.com/TarsCloud/Tars/tars-context, BSD
3-Clause
tars-net 1.7.2: https://github.com/TarsCloud/Tars/tars-net, BSD 3-Clause
- zstd-jni 1.5.0-2: https://github.com/luben/zstd-jni, BSD 2-Clause
+ zstd-jni 1.5.0-4: https://github.com/luben/zstd-jni, BSD 2-Clause
reflections 0.9.11:
https://mvnrepository.com/artifact/org.reflections/reflections/0.9.11, BSD
2-Clause
stax2-api 4.2.1: http://github.com/FasterXML/stax2-api, BSD 2-Clause
stringtemplate 3.2.1: http://www.stringtemplate.org, BSD
xstream 1.4.18:
https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream, BSD
hamcrest 2.2: https://github.com/hamcrest/JavaHamcrest ,BSD 3-Clause
hamcrest-core 2.2: https://github.com/hamcrest/JavaHamcrest ,BSD 3-Clause
+ asm 9.2: https://github.com/llbit/ow2-asm, BSD 3-Clause
+ asm-tree 9.2: https://asm.ow2.io/, BSD 3-Clause
========================================================================
CC0 licenses
@@ -587,7 +599,7 @@ The text of each license is also included at
licenses/LICENSE-[project].txt.
HdrHistogram 2.1.12: https://github.com/HdrHistogram, CC0 1.0 and
BSD-2-Clause
LatencyUtils 2.0.3: http://latencyutils.github.io/LatencyUtils, CC0 1.0
- reactive-streams 1.0.3:
https://github.com/reactive-streams/reactive-streams-jvm, CC0 1.0
+ reactive-streams 1.0.4:
https://github.com/reactive-streams/reactive-streams-jvm, CC0 1.0
xpp3_min 1.1.4c: http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/, CC0
1.0 and Public Domain
========================================================================
@@ -622,8 +634,8 @@ The text of each license is also included at
licenses/LICENSE-[project].txt.
jakarta.annotation-api 1.3.5:
https://projects.eclipse.org/projects/ee4j.ca, EPL 2.0
jakarta.el 3.0.3: https://projects.eclipse.org/projects/ee4j.el, EPL 2.0
- logback-classic 1.2.11: https://github.com/qos-ch/logback, EPL 1.0
- logback-core 1.2.11: https://github.com/qos-ch/logback, EPL 1.0
+ logback-classic 1.2.12: https://github.com/qos-ch/logback, EPL 1.0
+ logback-core 1.2.12: https://github.com/qos-ch/logback, EPL 1.0
aspectjweaver 1.9.5:
https://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.9.5, EPL 1.0
jakarta.json-api 2.0.1: https://projects.eclipse.org/projects/ee4j.jsonp,
EPL 2.0
junit 4.13.2: https://mvnrepository.com/artifact/junit/junit, EPL 1.0
@@ -665,8 +677,8 @@ Public Domain licenses
========================================================================
aopalliance 1.0:
https://mvnrepository.com/artifact/aopalliance/aopalliance, Public Domain
- jcip-annotations: 1.0-1 http://jcip.net/, Public Domain
- jcip-annotations: 1.0 http://jcip.net/, Public Domain
+ jcip-annotations 1.0-1: http://jcip.net/, Public Domain
+ jcip-annotations 1.0: http://jcip.net/, Public Domain
xmlpull 1.1.3.1: http://www.xmlpull.org, Public Domain
========================================================================
diff --git a/shenyu-e2e/pom.xml b/shenyu-e2e/pom.xml
index 79a54508c..22f63b83a 100644
--- a/shenyu-e2e/pom.xml
+++ b/shenyu-e2e/pom.xml
@@ -54,6 +54,8 @@
<rest-assured.version>5.2.0</rest-assured.version>
<jetbrains-annotations.version>23.0.0</jetbrains-annotations.version>
<apache-rat-plugin.version>0.13</apache-rat-plugin.version>
+ <spring-boot.version>2.7.13</spring-boot.version>
+ <spring-framework.version>5.3.28</spring-framework.version>
</properties>
<modules>
diff --git a/shenyu-e2e/shenyu-e2e-client/pom.xml
b/shenyu-e2e/shenyu-e2e-client/pom.xml
index 3cbff2521..985861bc2 100644
--- a/shenyu-e2e/shenyu-e2e-client/pom.xml
+++ b/shenyu-e2e/shenyu-e2e-client/pom.xml
@@ -36,13 +36,13 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
- <version>5.3.20</version>
+ <version>${spring-framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
- <version>2.6.8</version>
+ <version>${spring-boot.version}</version>
</dependency>
<dependency>
diff --git a/shenyu-e2e/shenyu-e2e-engine/pom.xml
b/shenyu-e2e/shenyu-e2e-engine/pom.xml
index cebb39eb8..3a79510ed 100644
--- a/shenyu-e2e/shenyu-e2e-engine/pom.xml
+++ b/shenyu-e2e/shenyu-e2e-engine/pom.xml
@@ -78,7 +78,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
- <version>5.3.27</version>
+ <version>${spring-framework.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
diff --git a/shenyu-examples/pom.xml b/shenyu-examples/pom.xml
index d6969131b..7938c2392 100644
--- a/shenyu-examples/pom.xml
+++ b/shenyu-examples/pom.xml
@@ -29,7 +29,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
- <version>2.6.8</version>
+ <version>2.7.13</version>
<relativePath/>
</parent>
diff --git a/shenyu-examples/shenyu-examples-grpc/pom.xml
b/shenyu-examples/shenyu-examples-grpc/pom.xml
index 60ea4bdec..f59b752ae 100644
--- a/shenyu-examples/shenyu-examples-grpc/pom.xml
+++ b/shenyu-examples/shenyu-examples-grpc/pom.xml
@@ -73,6 +73,12 @@
<artifactId>grpc-all</artifactId>
<version>${grpc.version}</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>grpc-okhttp</artifactId>
+ <groupId>io.grpc</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
diff --git a/shenyu-integrated-test/pom.xml b/shenyu-integrated-test/pom.xml
index 132eacf2c..b48392334 100644
--- a/shenyu-integrated-test/pom.xml
+++ b/shenyu-integrated-test/pom.xml
@@ -55,7 +55,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<spring-cloud.version>3.1.2</spring-cloud.version>
<gson.version>2.9.0</gson.version>
- <okhttp3.version>4.9.1</okhttp3.version>
+ <okhttp3.version>4.9.3</okhttp3.version>
<guava.version>30.1.1-jre</guava.version>
<tars-client.version>1.7.2</tars-client.version>
<sofa-rpc-all.version>5.7.6</sofa-rpc-all.version>
diff --git
a/shenyu-integrated-test/shenyu-integrated-test-grpc/src/main/resources/application-local.yml
b/shenyu-integrated-test/shenyu-integrated-test-grpc/src/main/resources/application-local.yml
index 144b2b454..945b93996 100644
---
a/shenyu-integrated-test/shenyu-integrated-test-grpc/src/main/resources/application-local.yml
+++
b/shenyu-integrated-test/shenyu-integrated-test-grpc/src/main/resources/application-local.yml
@@ -29,6 +29,8 @@ management:
enabled: false
shenyu:
+ httpclient:
+ maxInMemorySize: 64
netty:
tcp:
selectCount: 1
diff --git
a/shenyu-integrated-test/shenyu-integrated-test-http/src/main/resources/application.yml
b/shenyu-integrated-test/shenyu-integrated-test-http/src/main/resources/application.yml
index 194635a20..a31615a32 100644
---
a/shenyu-integrated-test/shenyu-integrated-test-http/src/main/resources/application.yml
+++
b/shenyu-integrated-test/shenyu-integrated-test-http/src/main/resources/application.yml
@@ -36,7 +36,7 @@ management:
shenyu:
httpclient:
- maxInMemorySize: 5
+ maxInMemorySize: 64
metrics:
enabled: true
name: prometheus
diff --git a/shenyu-protocol/shenyu-protocol-tcp/pom.xml
b/shenyu-protocol/shenyu-protocol-tcp/pom.xml
index 3f27f0e7f..39a5fc979 100644
--- a/shenyu-protocol/shenyu-protocol-tcp/pom.xml
+++ b/shenyu-protocol/shenyu-protocol-tcp/pom.xml
@@ -34,11 +34,6 @@
</properties>
<dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- </dependency>
-
<dependency>
<groupId>org.apache.shenyu</groupId>
<artifactId>shenyu-common</artifactId>
@@ -59,7 +54,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>2.11.0</version>
+ <version>${commons-io.version}</version>
</dependency>
</dependencies>