Skip to content

Commit 8f487f6

Browse files
Dilli-Babu-Godariyingsu00
authored andcommitted
Upgrade io.grpc library to 1.70.0
Upgraded io.grpc library from 1.68.0 to 1.70.0. As part of this upgrade, the following dependencies were updated: - io.grpc:grpc-protobuf-lite: 1.68.0 → 1.70.0 - io.grpc:grpc-protobuf: 1.53.0 → 1.70.0 - io.grpc:grpc-stub: 1.53.0 → 1.70.0 - io.grpc:grpc-core: 1.53.0 → 1.70.0 - io.grpc:grpc-api: 1.53.0 → 1.70.0 Additionally, to resolve upper bound issues, the following dependencies were updated: - com.google.errorprone:error_prone_annotations: 2.28.0 to 2.36.0 - com.google.auth:google-auth-library-oauth2-http: 1.23.0 to 1.31.0 - com.google.auth:google-auth-library-credentials: 1.23.0 to 1.31.0 - com.google.auto.value:auto-value-annotations: 1.10.4 to 1.11.0 - com.google.http-client:google-http-client: 1.43.3 to 1.45.3 - com.google.http-client:google-http-client-gson: 1.43.3 to 1.45.3 - com.google.j2objc:j2objc-annotations: 2.8 to 3.0.0
1 parent e98ef49 commit 8f487f6

File tree

4 files changed

+42
-16
lines changed

4 files changed

+42
-16
lines changed

pom.xml

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,17 @@
7676
<dep.docker-java.version>3.3.0</dep.docker-java.version>
7777
<dep.jayway.version>2.9.0</dep.jayway.version>
7878
<dep.ratis.version>3.1.3</dep.ratis.version>
79-
<dep.errorprone.version>2.28.0</dep.errorprone.version>
79+
<dep.errorprone.version>2.36.0</dep.errorprone.version>
8080
<dep.guava.version>32.1.0-jre</dep.guava.version>
8181
<dep.jackson.version>2.15.4</dep.jackson.version>
82-
<dep.j2objc.version>2.8</dep.j2objc.version>
82+
<dep.j2objc.version>3.0.0</dep.j2objc.version>
8383
<dep.avro.version>1.11.4</dep.avro.version>
8484
<dep.commons.compress.version>1.26.2</dep.commons.compress.version>
8585
<dep.protobuf-java.version>3.25.5</dep.protobuf-java.version>
8686
<dep.netty.version>4.1.118.Final</dep.netty.version>
8787
<dep.snakeyaml.version>2.0</dep.snakeyaml.version>
8888
<dep.jetty.version>9.4.56.v20240826</dep.jetty.version>
89-
<dep.gson.version>2.11.0</dep.gson.version>
89+
<dep.gson.version>2.12.1</dep.gson.version>
9090
<dep.commons.lang3.version>3.17.0</dep.commons.lang3.version>
9191
<dep.guice.version>5.1.0</dep.guice.version>
9292
<dep.arrow.version>17.0.0</dep.arrow.version>
@@ -102,7 +102,7 @@
102102
<air.test.parallel>methods</air.test.parallel>
103103
<air.test.thread-count>2</air.test.thread-count>
104104
<air.test.jvmsize>4g</air.test.jvmsize>
105-
<grpc.version>1.68.0</grpc.version>
105+
<grpc.version>1.70.0</grpc.version>
106106
<air.javadoc.lint>-missing</air.javadoc.lint>
107107
</properties>
108108

@@ -508,6 +508,36 @@
508508
<version>${project.version}</version>
509509
</dependency>
510510

511+
<dependency>
512+
<groupId>io.grpc</groupId>
513+
<artifactId>grpc-context</artifactId>
514+
<version>${grpc.version}</version>
515+
</dependency>
516+
517+
<dependency>
518+
<groupId>io.grpc</groupId>
519+
<artifactId>grpc-protobuf-lite</artifactId>
520+
<version>${grpc.version}</version>
521+
</dependency>
522+
523+
<dependency>
524+
<groupId>io.grpc</groupId>
525+
<artifactId>grpc-auth</artifactId>
526+
<version>${grpc.version}</version>
527+
</dependency>
528+
529+
<dependency>
530+
<groupId>io.grpc</groupId>
531+
<artifactId>grpc-alts</artifactId>
532+
<version>${grpc.version}</version>
533+
</dependency>
534+
535+
<dependency>
536+
<groupId>io.grpc</groupId>
537+
<artifactId>grpc-grpclb</artifactId>
538+
<version>${grpc.version}</version>
539+
</dependency>
540+
511541
<dependency>
512542
<groupId>io.grpc</groupId>
513543
<artifactId>grpc-protobuf</artifactId>

presto-bigquery/pom.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414

1515
<properties>
1616
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
17-
<grpc.version>1.68.0</grpc.version>
17+
<google.auth.library.version>1.33.1</google.auth.library.version>
18+
<google.auto.value.version>1.11.0</google.auto.value.version>
19+
<google.http.client.version>1.46.3</google.http.client.version>
1820
</properties>
1921

2022
<dependencyManagement>
@@ -48,7 +50,7 @@
4850
<dependency>
4951
<groupId>com.google.auth</groupId>
5052
<artifactId>google-auth-library-oauth2-http</artifactId>
51-
<version>1.23.0</version>
53+
<version>${google.auth.library.version}</version>
5254
</dependency>
5355

5456
<dependency>
@@ -92,7 +94,7 @@
9294
<dependency>
9395
<groupId>com.google.auth</groupId>
9496
<artifactId>google-auth-library-credentials</artifactId>
95-
<version>1.23.0</version>
97+
<version>${google.auth.library.version}</version>
9698
</dependency>
9799

98100
<dependency>
@@ -104,19 +106,19 @@
104106
<dependency>
105107
<groupId>com.google.auto.value</groupId>
106108
<artifactId>auto-value-annotations</artifactId>
107-
<version>1.10.4</version>
109+
<version>${google.auto.value.version}</version>
108110
</dependency>
109111

110112
<dependency>
111113
<groupId>com.google.http-client</groupId>
112114
<artifactId>google-http-client</artifactId>
113-
<version>1.43.3</version>
115+
<version>${google.http.client.version}</version>
114116
</dependency>
115117

116118
<dependency>
117119
<groupId>com.google.http-client</groupId>
118120
<artifactId>google-http-client-gson</artifactId>
119-
<version>1.43.3</version>
121+
<version>${google.http.client.version}</version>
120122
</dependency>
121123

122124
<dependency>

presto-pinot-toolkit/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
<properties>
1616
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
17-
<grpc.version>1.68.0</grpc.version>
1817
</properties>
1918

2019
<dependencies>
@@ -331,7 +330,6 @@
331330
<dependency>
332331
<groupId>io.grpc</groupId>
333332
<artifactId>grpc-api</artifactId>
334-
<version>${grpc.version}</version>
335333
<exclusions>
336334
<exclusion>
337335
<groupId>com.google.guava</groupId>
@@ -351,7 +349,6 @@
351349
<dependency>
352350
<groupId>io.grpc</groupId>
353351
<artifactId>grpc-protobuf</artifactId>
354-
<version>${grpc.version}</version>
355352
<exclusions>
356353
<exclusion>
357354
<groupId>com.google.guava</groupId>
@@ -375,13 +372,11 @@
375372
<dependency>
376373
<groupId>io.grpc</groupId>
377374
<artifactId>grpc-stub</artifactId>
378-
<version>${grpc.version}</version>
379375
</dependency>
380376

381377
<dependency>
382378
<groupId>io.grpc</groupId>
383379
<artifactId>grpc-netty-shaded</artifactId>
384-
<version>${grpc.version}</version>
385380
</dependency>
386381
<dependency>
387382
<groupId>org.apache.calcite</groupId>

presto-pinot/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
<properties>
1616
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
17-
<grpc.version>1.68.0</grpc.version>
1817
</properties>
1918

2019
<dependencies>

0 commit comments

Comments
 (0)