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

github-bot pushed a change to branch 
dependabot/maven/io.netty-netty-all-4.1.42.Final
in repository https://gitbox.apache.org/repos/asf/dubbo-benchmark.git.


 discard 3a397f6  Bump netty-all from 4.1.25.Final to 4.1.42.Final
     add 6c12d53  Update README.md
     add 7e5abfd  upgrade to dubbo 2.7.2
     add 58f95dc  add arvo、gson、fastsjon、protostuff
     add 2a25884  add grpc、pb benchmark
     add 9e919c9  Merge pull request #8 from CodingSinger/opensource
     add b662434  Bump netty-all from 4.1.25.Final to 4.1.42.Final

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   (3a397f6)
            \
             N -- N -- N   
refs/heads/dependabot/maven/io.netty-netty-all-4.1.42.Final (b662434)

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:
 README.md                                          |    4 +-
 .../dubbo/benchmark/bean/DubboUserServiceGrpc.java |  324 ++
 .../org/apache/dubbo/benchmark/bean/PagePB.java    | 4808 ++++++++++++++++++++
 .../dubbo/benchmark/bean/UserServiceDubbo.java     |   59 +
 .../dubbo/benchmark/bean/UserServiceGrpc.java      |  505 ++
 benchmark-base/pom.xml                             |  124 +
 .../java/org/apache/dubbo/benchmark/bean/User.java |    1 +
 .../serialize/SerializationOptimizerImpl.java      |    2 +-
 .../benchmark/service/GrpcUserServiceImpl.java     |  103 +
 .../dubbo/benchmark/service/PBUserServiceImpl.java |  119 +
 .../dubbo/benchmark/service/UserServiceImplPb.java |   91 +
 .../dubbo/benchmark/service/UserServicePb.java     |   16 +
 benchmark-base/src/main/proto/Page.proto           |   52 +
 benchmark.sh                                       |    6 -
 client-base/pom.xml                                |   11 -
 .../src/main/java/org/apache/dubbo/Client.java     |   16 -
 .../org/apache/dubbo/benchmark/ClientGrpc.java     |  121 +
 .../java/org/apache/dubbo/benchmark/ClientPb.java  |  122 +
 {dubbo-fst-client => dubbo-avro-client}/pom.xml    |   33 +-
 .../src/main/resources/consumer.xml                |    4 +-
 {dubbo-kryo-server => dubbo-avro-server}/pom.xml   |   33 +-
 .../src/main/resources/provider.xml                |    4 +-
 .../pom.xml                                        |   12 +-
 .../src/main/resources/consumer.xml                |    4 +-
 .../pom.xml                                        |    9 +-
 .../src/main/resources/provider.xml                |    4 +-
 {dubbo-kryo-client => dubbo-grpc-client}/pom.xml   |   22 +-
 .../src/main/resources/consumer.xml                |    9 +-
 .../pom.xml                                        |   14 +-
 .../src/main/resources/provider.xml                |    8 +-
 .../pom.xml                                        |    3 +-
 .../src/main/resources/consumer.xml                |    4 +-
 .../pom.xml                                        |    3 +-
 .../src/main/resources/provider.xml                |    4 +-
 dubbo-native-hessian-client/pom.xml                |    9 +-
 dubbo-native-hessian-server/pom.xml                |    9 +-
 {dubbo-kryo-client => dubbo-pb-client}/pom.xml     |   22 +-
 .../src/main/resources/consumer.xml                |    4 +-
 .../pom.xml                                        |   14 +-
 .../src/main/resources/provider.xml                |    6 +-
 .../pom.xml                                        |   23 +-
 .../src/main/resources/consumer.xml                |    6 +-
 .../pom.xml                                        |   19 +-
 .../src/main/resources/provider.xml                |    8 +-
 .../pom.xml                                        |   20 +-
 .../src/main/resources/consumer.xml                |    4 +-
 .../pom.xml                                        |   22 +-
 .../src/main/resources/provider.xml                |    4 +-
 pom.xml                                            |   60 +-
 server-base/pom.xml                                |    5 -
 50 files changed, 6694 insertions(+), 195 deletions(-)
 create mode 100644 
benchmark-base/build/generated/source/proto/main/java/org/apache/dubbo/benchmark/bean/DubboUserServiceGrpc.java
 create mode 100644 
benchmark-base/build/generated/source/proto/main/java/org/apache/dubbo/benchmark/bean/PagePB.java
 create mode 100644 
benchmark-base/build/generated/source/proto/main/java/org/apache/dubbo/benchmark/bean/UserServiceDubbo.java
 create mode 100644 
benchmark-base/build/generated/source/proto/main/java/org/apache/dubbo/benchmark/bean/UserServiceGrpc.java
 create mode 100644 
benchmark-base/src/main/java/org/apache/dubbo/benchmark/service/GrpcUserServiceImpl.java
 create mode 100644 
benchmark-base/src/main/java/org/apache/dubbo/benchmark/service/PBUserServiceImpl.java
 create mode 100644 
benchmark-base/src/main/java/org/apache/dubbo/benchmark/service/UserServiceImplPb.java
 create mode 100644 
benchmark-base/src/main/java/org/apache/dubbo/benchmark/service/UserServicePb.java
 create mode 100644 benchmark-base/src/main/proto/Page.proto
 delete mode 100644 client-base/src/main/java/org/apache/dubbo/Client.java
 create mode 100644 
client-base/src/main/java/org/apache/dubbo/benchmark/ClientGrpc.java
 create mode 100644 
client-base/src/main/java/org/apache/dubbo/benchmark/ClientPb.java
 copy {dubbo-fst-client => dubbo-avro-client}/pom.xml (55%)
 copy {dubbo-fst-client => dubbo-avro-client}/src/main/resources/consumer.xml 
(94%)
 copy {dubbo-kryo-server => dubbo-avro-server}/pom.xml (53%)
 copy {dubbo-fst-server => dubbo-avro-server}/src/main/resources/provider.xml 
(92%)
 copy {dubbo-fst-client => dubbo-fastjson-client}/pom.xml (85%)
 copy {dubbo-fst-client => 
dubbo-fastjson-client}/src/main/resources/consumer.xml (94%)
 copy {dubbo-kryo-server => dubbo-fastjson-server}/pom.xml (88%)
 copy {dubbo-fst-server => 
dubbo-fastjson-server}/src/main/resources/provider.xml (91%)
 copy {dubbo-kryo-client => dubbo-grpc-client}/pom.xml (79%)
 copy {dubbo-hessianlite-client => 
dubbo-grpc-client}/src/main/resources/consumer.xml (69%)
 copy {dubbo-native-hessian-server => dubbo-grpc-server}/pom.xml (78%)
 copy {dubbo-hessianlite-server => 
dubbo-grpc-server}/src/main/resources/provider.xml (71%)
 copy {dubbo-hessianlite-client => dubbo-gson-client}/pom.xml (95%)
 copy {dubbo-native-hessian-client => 
dubbo-gson-client}/src/main/resources/consumer.xml (90%)
 copy {dubbo-hessianlite-server => dubbo-gson-server}/pom.xml (95%)
 copy {dubbo-hessianlite-server => 
dubbo-gson-server}/src/main/resources/provider.xml (90%)
 copy {dubbo-kryo-client => dubbo-pb-client}/pom.xml (79%)
 copy {dubbo-hessianlite-client => 
dubbo-pb-client}/src/main/resources/consumer.xml (85%)
 copy {dubbo-native-hessian-server => dubbo-pb-server}/pom.xml (78%)
 copy {dubbo-hessianlite-server => 
dubbo-pb-server}/src/main/resources/provider.xml (79%)
 copy {dubbo-kryo-client => dubbo-protobuf-json-client}/pom.xml (79%)
 copy {dubbo-native-hessian-client => 
dubbo-protobuf-json-client}/src/main/resources/consumer.xml (82%)
 copy {dubbo-native-hessian-server => dubbo-protobuf-json-server}/pom.xml (78%)
 copy {dubbo-native-hessian-server => 
dubbo-protobuf-json-server}/src/main/resources/provider.xml (77%)
 copy {dubbo-kryo-client => dubbo-protostuff-client}/pom.xml (74%)
 copy {dubbo-native-hessian-client => 
dubbo-protostuff-client}/src/main/resources/consumer.xml (90%)
 copy {dubbo-kryo-client => dubbo-protostuff-server}/pom.xml (72%)
 copy {dubbo-native-hessian-server => 
dubbo-protostuff-server}/src/main/resources/provider.xml (89%)

Reply via email to