This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/shenyu-e2e/shenyu-e2e-client/org.springframework-spring-web-6.0.0
in repository https://gitbox.apache.org/repos/asf/shenyu.git
omit 328259758 Bump spring-web from 5.3.20 to 6.0.0 in
/shenyu-e2e/shenyu-e2e-client
add 10375c520 [Task]add client duplicate jar check (#4156) (#4240)
add 7761acaba fix unused executing of plugin chain (#4254)
add f79710d66 added array method of expression in mock plugin (#4256)
add d6b3de859 [ISSUE #4029] add api doc upgrade sql (#4257)
add e60d93ef4 [type:refactor] decoupled sign plugin (#4261)
add 183493156 [ISSUE #4243] to avoid load the same ext plugins repeatedly
(#4260)
add a098c3e42 [Task]support diff nacos namespace (#4258)
add 0e301d4c0 Fix appAuth delete bug (#4268)
add 90882afb6 [ISSUE #4049] remove validation of field `enabled` (#4269)
add 459d7af4c [bugfix]fix #4253 issue in Cryptor-Request Plugin (#4267)
add b40664d4a [type:refactor] added more test and fixed checkParam (#4275)
add a649de655 [Task] add sdk grpc examples (#3925) (#4248)
add 4bc72fd3e Bump spring-web from 5.3.20 to 6.0.0 in
/shenyu-e2e/shenyu-e2e-client
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (328259758)
\
N -- N -- N
refs/heads/dependabot/maven/shenyu-e2e/shenyu-e2e-client/org.springframework-spring-web-6.0.0
(4bc72fd3e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
db/init/oracle/schema.sql | 3 +-
db/upgrade/2.5.0-upgrade-2.5.1-mysql.sql | 126 +++++++++-
db/upgrade/2.5.0-upgrade-2.5.1-oracle.sql | 266 ++++++++++++++++++++-
db/upgrade/2.5.0-upgrade-2.5.1-pg.sql | 189 ++++++++++++++-
.../apache/shenyu/admin/model/dto/AuthPathDTO.java | 2 -
.../admin/service/impl/AppAuthServiceImpl.java | 14 +-
.../apache/shenyu/common/constant/Constants.java | 5 +
.../apache/shenyu/common/utils/VersionUtils.java | 45 ++++
shenyu-examples/shenyu-examples-sdk/pom.xml | 1 +
.../pom.xml | 9 +-
.../shenyu-examples-sdk-grpc-consumer}/Dockerfile | 2 +-
.../shenyu-examples-sdk-grpc-consumer}/pom.xml | 62 ++---
.../src/main/http/sdk-grpc-test-api.http} | 21 +-
.../ShenyuSdkGrpcConsumerApplication.java} | 10 +-
.../sdk/grpc/consumer/api/ShenyuGrpcClientApi.java | 51 ++++
.../ShenyuSdkGrpcConsumerController.java} | 52 ++--
.../sdk/grpc/consumer/dto/EchoRequest.java | 28 +--
.../sdk/grpc/consumer/dto/EchoResponse.java} | 78 +++---
.../examples/sdk/grpc/consumer/dto/GrpcData.java | 26 +-
.../sdk/grpc/consumer/dto/HelloRequest.java | 28 +--
.../sdk/grpc/consumer/dto/HelloResponse.java | 26 +-
.../src/main/resources/application.yaml | 6 +-
.../shenyu-examples-sdk-grpc-provider}/Dockerfile | 2 +-
.../shenyu-examples-sdk-grpc-provider}/pom.xml | 22 +-
.../ShenyuSdkGrpcProviderApplication.java} | 10 +-
.../src/main/resources/application.yml | 2 +-
.../http/combination/CryptorRequestPluginTest.java | 141 ++++++++---
.../plugin/api/exception/ResponsiveException.java | 65 ++---
.../plugin/api/utils/WebFluxResultUtils.java | 45 +++-
.../shenyu/plugin/base/AbstractShenyuPlugin.java | 15 +-
.../plugin/base/support/RequestDecorator.java} | 9 +-
.../shenyu/plugin/base/utils/ResponseUtils.java | 4 +-
.../plugin/base/utils/ServerWebExchangeUtils.java | 63 +++++
.../cryptor/decorator/CryptorRequestDecorator.java | 56 -----
.../decorator/CryptorResponseDecorator.java | 2 +-
.../cryptor/request/CryptorRequestPlugin.java | 63 ++---
.../cryptor/response/CryptorResponsePlugin.java | 6 +-
.../shenyu/plugin/cryptor/utils/CryptorUtil.java | 49 +++-
.../shenyu/plugin/cryptor/utils/JsonUtil.java | 19 --
.../apache/dubbo/cache/ApacheDubboConfigCache.java | 118 ++++++---
.../dubbo/handler/ApacheDubboMetaDataHandler.java | 2 +-
.../dubbo/proxy/ApacheDubboProxyService.java | 18 +-
.../dubbo/cache/ApacheDubboConfigCacheTest.java | 2 +-
.../plugin/mock/generator/ExpressionGenerator.java | 6 +-
.../apache/shenyu/plugin/mock/util/MockUtil.java | 40 +++-
.../mock/generator/ExpressionGeneratorTest.java | 14 ++
.../org/apache/shenyu/plugin/sign/SignPlugin.java | 70 +++---
.../ShenyuAlibabaDubboClientConfiguration.java | 7 +-
.../ShenyuApacheDubboClientConfiguration.java | 7 +-
.../client/grpc/ShenyuGrpcClientConfiguration.java | 7 +-
.../motan/ShenyuMotanClientConfiguration.java | 5 +
.../client/sofa/ShenyuSofaClientConfiguration.java | 5 +
.../ShenyuSpringWebSocketClientConfiguration.java | 5 +
.../ShenyuSpringCloudClientConfiguration.java | 7 +-
.../ShenyuSpringMvcClientConfiguration.java | 5 +
.../client/tars/ShenyuTarsClientConfiguration.java | 5 +
.../shenyu/web/loader/ShenyuPluginLoader.java | 14 ++
.../shenyu/web/loader/ShenyuPluginLoaderTest.java | 13 +
58 files changed, 1458 insertions(+), 515 deletions(-)
copy shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-springcloud =>
shenyu-examples-sdk-grpc}/pom.xml (86%)
copy shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-http =>
shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer}/Dockerfile (95%)
copy
shenyu-examples/{shenyu-examples-websocket/shenyu-example-spring-reactive-websocket
=>
shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer}/pom.xml
(61%)
copy
shenyu-examples/{shenyu-examples-https/src/main/http/https-test-api-local.http
=>
shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/http/sdk-grpc-test-api.http}
(75%)
copy
shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-http/src/main/java/org/apache/shenyu/examples/sdk/http/ShenyuSdkHttpExampleApplication.java
=>
shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/ShenyuSdkGrpcConsumerApplication.java}
(83%)
create mode 100644
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/api/ShenyuGrpcClientApi.java
copy
shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-http/src/main/java/org/apache/shenyu/examples/sdk/http/controller/ShenyuHttpSdkExampleController.java
=>
shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/controller/ShenyuSdkGrpcConsumerController.java}
(50%)
copy
shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/event/DataEvent.java
=>
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/dto/EchoRequest.java
(70%)
copy
shenyu-examples/{shenyu-examples-springcloud/src/main/java/org/apache/shenyu/examples/springcloud/dto/EntityResult.java
=>
shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/dto/EchoResponse.java}
(61%)
copy
shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/event/DataEvent.java
=>
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/dto/GrpcData.java
(73%)
copy
shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/event/DataEvent.java
=>
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/dto/HelloRequest.java
(70%)
copy
shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/event/DataEvent.java
=>
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer/src/main/java/org/apache/shenyu/examples/sdk/grpc/consumer/dto/HelloResponse.java
(72%)
copy
shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-springcloud/shenyu-examples-sdk-springcloud-consumer
=>
shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-consumer}/src/main/resources/application.yaml
(90%)
copy shenyu-examples/shenyu-examples-sdk/{shenyu-examples-sdk-http =>
shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-provider}/Dockerfile (95%)
copy
{shenyu-spring-boot-starter/shenyu-spring-boot-starter-plugin/shenyu-spring-boot-starter-plugin-casdoor
=>
shenyu-examples/shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-provider}/pom.xml
(77%)
copy
shenyu-examples/{shenyu-examples-websocket/shenyu-example-spring-reactive-websocket/src/main/java/org/apache/shenyu/examples/websocket/TestReactiveWebsocketApplication.java
=>
shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-provider/src/main/java/org/apache/shenyu/examples/sdk/grpc/provider/ShenyuSdkGrpcProviderApplication.java}
(77%)
copy shenyu-examples/{shenyu-examples-grpc =>
shenyu-examples-sdk/shenyu-examples-sdk-grpc/shenyu-examples-sdk-grpc-provider}/src/main/resources/application.yml
(97%)
copy shenyu-common/src/main/java/org/apache/shenyu/common/enums/RetryEnum.java
=>
shenyu-plugin/shenyu-plugin-api/src/main/java/org/apache/shenyu/plugin/api/exception/ResponsiveException.java
(52%)
rename
shenyu-plugin/{shenyu-plugin-sign/src/main/java/org/apache/shenyu/plugin/sign/decorator/SignRequestDecorator.java
=>
shenyu-plugin-base/src/main/java/org/apache/shenyu/plugin/base/support/RequestDecorator.java}
(83%)
create mode 100644
shenyu-plugin/shenyu-plugin-base/src/main/java/org/apache/shenyu/plugin/base/utils/ServerWebExchangeUtils.java
delete mode 100644
shenyu-plugin/shenyu-plugin-cryptor/src/main/java/org/apache/shenyu/plugin/cryptor/decorator/CryptorRequestDecorator.java