Skip to content

Commit 5063985

Browse files
authored
Bump up grpc (#650)
1 parent e71b9e8 commit 5063985

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Release Notes.
1414
* Optimize spring-cloud-gateway 2.1.x, 3.x witness class.
1515
* Support report MongoDB instance info in Mongodb 4.x plugin.
1616
* To compatible upper and lower case Oracle TNS url parse.
17-
* Fix config length limitation.
1817
* Support collecting ZGC memory pool metrics. Require OAP 9.7.0 to support these new metrics.
1918
* Upgrade netty-codec-http2 to 4.1.100.Final
2019
* Add a netty-http 4.1.x plugin to trace HTTP requests.
@@ -25,6 +24,7 @@ Release Notes.
2524
* Add JDK21 plugin tests for Spring 6.
2625
* Bump Lombok to 1.18.30 to adopt JDK21 compiling.
2726
* Fix PostgreSQL Jdbc URL parsing exception.
27+
* Bump up grpc version.
2828

2929
#### Documentation
3030
* Fix JDK requirement in the compiling docs.

apm-sniffer/apm-sdk-plugin/rocketMQ-5.x-plugin/pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@
4040
<version>${rocketmq-client.version}</version>
4141
<scope>provided</scope>
4242
</dependency>
43+
<dependency>
44+
<groupId>org.apache.skywalking</groupId>
45+
<artifactId>apm-agent-core</artifactId>
46+
<version>${project.version}</version>
47+
<scope>provided</scope>
48+
<exclusions>
49+
<exclusion>
50+
<groupId>io.grpc</groupId>
51+
<artifactId>grpc-netty</artifactId>
52+
</exclusion>
53+
</exclusions>
54+
</dependency>
4355
</dependencies>
4456

4557
<build>
@@ -50,4 +62,4 @@
5062
</plugins>
5163
</build>
5264

53-
</project>
65+
</project>

dist-material/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ The following components are provided under the Apache License. See project link
216216
The text of each license is the standard Apache 2.0 license.
217217

218218
raphw (byte-buddy) 1.14.9: http://bytebuddy.net/ , Apache 2.0
219-
Google: grpc-java 1.50.0: https://github.com/grpc/grpc-java, Apache 2.0
219+
Google: grpc-java 1.53.0: https://github.com/grpc/grpc-java, Apache 2.0
220220
Google: gson 2.8.9: https://github.com/google/gson , Apache 2.0
221221
Google: proto-google-common-protos 2.0.1: https://github.com/googleapis/googleapis , Apache 2.0
222222
Google: jsr305 3.0.2: http://central.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom , Apache 2.0

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@
8787

8888
<!-- core lib dependency -->
8989
<bytebuddy.version>1.14.9</bytebuddy.version>
90-
<grpc.version>1.50.0</grpc.version>
90+
<grpc.version>1.53.0</grpc.version>
9191
<netty.version>4.1.100.Final</netty.version>
9292
<gson.version>2.8.9</gson.version>
9393
<os-maven-plugin.version>1.6.2</os-maven-plugin.version>
9494
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
9595
<com.google.protobuf.protoc.version>3.21.7</com.google.protobuf.protoc.version>
96-
<protoc-gen-grpc-java.plugin.version>1.50.0</protoc-gen-grpc-java.plugin.version>
96+
<protoc-gen-grpc-java.plugin.version>1.53.0</protoc-gen-grpc-java.plugin.version>
9797
<netty-tcnative-boringssl-static.version>2.0.48.Final</netty-tcnative-boringssl-static.version>
9898
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
9999
<objenesis.version>3.1</objenesis.version>

0 commit comments

Comments
 (0)