Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netty: upgrade from 4.1.77.Final to 4.1.79.Final and tcnative 2.0.53 to 2.0.54 #9451

Merged
merged 1 commit into from Aug 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion SECURITY.md
Expand Up @@ -411,7 +411,8 @@ grpc-netty version | netty-handler version | netty-tcnative-boringssl-static ver
1.35.x-1.41.x | 4.1.52.Final | 2.0.34.Final
1.42.x-1.43.x | 4.1.63.Final | 2.0.38.Final
1.44.x-1.47.x | 4.1.72.Final | 2.0.46.Final
1.48.x- | 4.1.77.Final | 2.0.53.Final
1.48.x-1.49.x | 4.1.77.Final | 2.0.53.Final
1.50.x- | 4.1.79.Final | 2.0.54.Final

_(grpc-netty-shaded avoids issues with keeping these versions in sync.)_

Expand Down
2 changes: 1 addition & 1 deletion examples/example-tls/pom.xml
Expand Up @@ -14,7 +14,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<grpc.version>1.50.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
<protoc.version>3.21.1</protoc.version>
<netty.tcnative.version>2.0.53.Final</netty.tcnative.version>
<netty.tcnative.version>2.0.54.Final</netty.tcnative.version>
<!-- required for jdk9 -->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Expand Up @@ -5,8 +5,8 @@ autovalue = "1.9"
checkstyle = "6.17"
googleauth = "1.4.0"
guava = "31.1-android"
netty = '4.1.77.Final'
nettytcnative = '2.0.53.Final'
netty = '4.1.79.Final'
nettytcnative = '2.0.54.Final'
opencensus = "0.31.0"
protobuf = "3.21.1"

Expand Down
28 changes: 14 additions & 14 deletions repositories.bzl
Expand Up @@ -26,20 +26,20 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
"com.google.truth:truth:1.0.1",
"com.squareup.okhttp:okhttp:2.7.5",
"com.squareup.okio:okio:1.17.5",
"io.netty:netty-buffer:4.1.77.Final",
"io.netty:netty-codec-http2:4.1.77.Final",
"io.netty:netty-codec-http:4.1.77.Final",
"io.netty:netty-codec-socks:4.1.77.Final",
"io.netty:netty-codec:4.1.77.Final",
"io.netty:netty-common:4.1.77.Final",
"io.netty:netty-handler-proxy:4.1.77.Final",
"io.netty:netty-handler:4.1.77.Final",
"io.netty:netty-resolver:4.1.77.Final",
"io.netty:netty-tcnative-boringssl-static:2.0.53.Final",
"io.netty:netty-tcnative-classes:2.0.53.Final",
"io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.77.Final",
"io.netty:netty-transport-native-unix-common:4.1.72.Final",
"io.netty:netty-transport:4.1.77.Final",
"io.netty:netty-buffer:4.1.79.Final",
"io.netty:netty-codec-http2:4.1.79.Final",
"io.netty:netty-codec-http:4.1.79.Final",
"io.netty:netty-codec-socks:4.1.79.Final",
"io.netty:netty-codec:4.1.79.Final",
"io.netty:netty-common:4.1.79.Final",
"io.netty:netty-handler-proxy:4.1.79.Final",
"io.netty:netty-handler:4.1.79.Final",
"io.netty:netty-resolver:4.1.79.Final",
"io.netty:netty-tcnative-boringssl-static:2.0.54.Final",
"io.netty:netty-tcnative-classes:2.0.54.Final",
"io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.79.Final",
"io.netty:netty-transport-native-unix-common:4.1.79.Final",
"io.netty:netty-transport:4.1.79.Final",
"io.opencensus:opencensus-api:0.24.0",
"io.opencensus:opencensus-contrib-grpc-metrics:0.24.0",
"io.perfmark:perfmark-api:0.25.0",
Expand Down