Skip to content

Commit b3eddb7

Browse files
authored
Update hbase version to fix netty CVEs. (#38241) (#38261)
1 parent b0872da commit b3eddb7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdks/java/io/hbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ test {
3434
jvmArgs "-Dtest.build.data.basedirectory=build/test-data"
3535
}
3636

37-
def hbase_version = "2.6.3-hadoop3"
37+
def hbase_version = "2.6.5-hadoop3"
3838

3939
dependencies {
4040
implementation library.java.vendored_guava_32_1_2_jre

sdks/java/io/hbase/src/test/java/org/apache/beam/sdk/io/hbase/HBaseIOTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ public void testWritingFailsBadElement() throws Exception {
436436

437437
thrown.expect(Pipeline.PipelineExecutionException.class);
438438
thrown.expectCause(Matchers.instanceOf(IllegalArgumentException.class));
439-
thrown.expectMessage("No columns to insert");
439+
thrown.expectMessage("No columns to put");
440440
p.run().waitUntilFinish();
441441
}
442442

sdks/java/io/iceberg/hive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ description = "Apache Beam :: SDKs :: Java :: IO :: Iceberg :: Hive"
2626
ext.summary = "Runtime dependencies needed for Hive catalog integration."
2727

2828
def hive_version = "3.1.3"
29-
def hbase_version = "2.6.3-hadoop3"
29+
def hbase_version = "2.6.5-hadoop3"
3030
def hadoop_version = "3.4.1"
3131
def iceberg_version = "1.6.1"
3232
def avatica_version = "1.25.0"

0 commit comments

Comments
 (0)