fix CVE-2023-2976 and CVE-2023-34462 (#570)
This commit is contained in:
parent
88d8e6398f
commit
b9075ce7ad
|
|
@ -141,6 +141,8 @@ Callable {
|
|||
* Add Plugin to support aerospike Java client
|
||||
* Add ClickHouse parsing to the jdbc-common plugin.
|
||||
* Support to trace redisson lock
|
||||
* Upgrade netty-codec-http2 to 4.1.94.Final
|
||||
* Upgrade guava to 32.0.1
|
||||
|
||||
#### Documentation
|
||||
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<generateGitPropertiesFilename>${project.build.outputDirectory}/skywalking-agent-version.properties</generateGitPropertiesFilename>
|
||||
<guava.version>30.1.1-jre</guava.version>
|
||||
<guava.version>32.0.1-jre</guava.version>
|
||||
<wiremock.version>2.6.0</wiremock.version>
|
||||
<netty-tcnative-boringssl-static.version>2.0.7.Final</netty-tcnative-boringssl-static.version>
|
||||
<os-maven-plugin.version>1.4.1.Final</os-maven-plugin.version>
|
||||
|
|
|
|||
|
|
@ -220,7 +220,8 @@ The text of each license is the standard Apache 2.0 license.
|
|||
Google: gson 2.8.9: https://github.com/google/gson , Apache 2.0
|
||||
Google: proto-google-common-protos 2.0.1: https://github.com/googleapis/googleapis , Apache 2.0
|
||||
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
|
||||
netty 4.1.86: https://github.com/netty/netty/blob/4.1/LICENSE.txt, Apache 2.0
|
||||
Google: guava 32.0.1: https://github.com/google/guava , Apache 2.0
|
||||
netty 4.1.94: https://github.com/netty/netty/blob/4.1/LICENSE.txt, Apache 2.0
|
||||
|
||||
========================================================================
|
||||
BSD licenses
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -88,7 +88,7 @@
|
|||
<!-- core lib dependency -->
|
||||
<bytebuddy.version>1.14.4</bytebuddy.version>
|
||||
<grpc.version>1.50.0</grpc.version>
|
||||
<netty.version>4.1.86.Final</netty.version>
|
||||
<netty.version>4.1.94.Final</netty.version>
|
||||
<gson.version>2.8.9</gson.version>
|
||||
<os-maven-plugin.version>1.6.2</os-maven-plugin.version>
|
||||
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
|
||||
|
|
|
|||
Loading…
Reference in New Issue