Skip to content

Commit d13f0e0

Browse files
MINOR: Bump com.google.protobuf:protobuf-bom from 3.25.5 to 4.30.0 (#666)
Bumps [com.google.protobuf:protobuf-bom](https://github.com/protocolbuffers/protobuf) from 3.25.5 to 4.30.0. Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JB Onofré <[email protected]>
1 parent 66cb737 commit d13f0e0

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

flight/flight-core/src/main/java/org/apache/arrow/flight/auth/ClientAuthWrapper.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ public AuthObserver() {
7676
@Override
7777
public void onNext(HandshakeResponse value) {
7878
ByteString payload = value.getPayload();
79-
if (payload != null) {
80-
messages.add(payload.toByteArray());
81-
}
79+
messages.add(payload.toByteArray());
8280
}
8381

8482
private Iterator<byte[]> iter =

flight/flight-core/src/main/java/org/apache/arrow/flight/auth/ServerAuthWrapper.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ public AuthObserver(StreamObserver<HandshakeResponse> responseObserver) {
8484
@Override
8585
public void onNext(HandshakeRequest value) {
8686
ByteString payload = value.getPayload();
87-
if (payload != null) {
88-
messages.add(payload.toByteArray());
89-
}
87+
messages.add(payload.toByteArray());
9088
}
9189

9290
private Iterator<byte[]> iter =

flight/flight-integration-tests/src/shade/LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ License: https://www.apache.org/licenses/LICENSE-2.0
272272

273273
--------------------------------------------------------------------------------
274274

275-
This binary artifact contains Google Protobuf 3.25.5.
275+
This binary artifact contains Google Protobuf 4.30.0.
276276

277277
Copyright: Copyright 2008 Google Inc. All rights reserved.
278278
Home page: https://protobuf.dev/
279-
License: https://github.com/protocolbuffers/protobuf/blob/v3.25.5/LICENSE (BSD)
279+
License: https://github.com/protocolbuffers/protobuf/blob/v4.30.0/LICENSE (BSD)
280280
License text:
281281

282282
| Copyright 2008 Google Inc. All rights reserved.

flight/flight-sql-jdbc-driver/src/shade/LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,11 @@ License: https://www.apache.org/licenses/LICENSE-2.0
234234

235235
--------------------------------------------------------------------------------
236236

237-
This binary artifact contains Protobuf 3.25.5.
237+
This binary artifact contains Protobuf 4.30.0.
238238

239239
Copyright: Copyright 2008 Google Inc. All rights reserved.
240240
Home page: https://protobuf.dev/
241-
License: https://github.com/protocolbuffers/protobuf/blob/v3.25.3/LICENSE (BSD)
241+
License: https://github.com/protocolbuffers/protobuf/blob/v4.30.0/LICENSE (BSD)
242242
License text:
243243

244244
| Copyright 2008 Google Inc. All rights reserved.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ under the License.
9898
<dep.guava-bom.version>33.4.0-jre</dep.guava-bom.version>
9999
<dep.netty-bom.version>4.1.119.Final</dep.netty-bom.version>
100100
<dep.grpc-bom.version>1.71.0</dep.grpc-bom.version>
101-
<dep.protobuf-bom.version>3.25.5</dep.protobuf-bom.version>
101+
<dep.protobuf-bom.version>4.30.0</dep.protobuf-bom.version>
102102
<dep.jackson-bom.version>2.18.3</dep.jackson-bom.version>
103103
<dep.hadoop.version>3.4.1</dep.hadoop.version>
104104
<dep.fbs.version>25.2.10</dep.fbs.version>

0 commit comments

Comments
 (0)