Skip to content

Commit 5e25049

Browse files
committed
HBASE-28793 Update hbase-thirdparty to 4.1.8
1 parent 0646151 commit 5e25049

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

hbase-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<!--Version of protobuf that hbase uses internally (we shade our pb)
3434
Must match what is out in hbase-thirdparty include.
3535
-->
36-
<internal.protobuf.version>4.26.1</internal.protobuf.version>
36+
<internal.protobuf.version>4.27.3</internal.protobuf.version>
3737
</properties>
3838
<dependencies>
3939
<dependency>

hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestsDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected void addOptions() {
7777

7878
@Override
7979
protected void processOptions(CommandLine cmd) {
80-
String testFilterString = cmd.getOptionValue(SHORT_REGEX_ARG, null);
80+
String testFilterString = cmd.getOptionValue(SHORT_REGEX_ARG);
8181
if (testFilterString != null) {
8282
intTestFilter.setPattern(testFilterString);
8383
}

hbase-protocol-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<!--Version of protobuf that hbase uses internally (we shade our pb)
3535
Must match what is out in hbase-thirdparty include.
3636
-->
37-
<internal.protobuf.version>4.26.1</internal.protobuf.version>
37+
<internal.protobuf.version>4.27.3</internal.protobuf.version>
3838
</properties>
3939
<dependencies>
4040
<!--BE CAREFUL! Any dependency added here needs to be

hbase-server/src/main/java/org/apache/hadoop/hbase/util/compaction/MajorCompactor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ public int run(String[] args) throws Exception {
420420
return -1;
421421
}
422422
String tableName = commandLine.getOptionValue("table");
423-
String cf = commandLine.getOptionValue("cf", null);
423+
String cf = commandLine.getOptionValue("cf");
424424
Set<String> families = Sets.newHashSet();
425425
if (cf != null) {
426426
Iterables.addAll(families, Splitter.on(",").split(cf));

hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestSpaceQuotasWithSnapshots.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public boolean evaluate() throws Exception {
164164
// Make sure we see the "final" new size for the table, not some intermediate
165165
waitForStableRegionSizeReport(conn, tn);
166166
final long finalSize = getRegionSizeReportForTable(conn, tn);
167-
assertNotNull("Did not expect to see a null size", finalSize);
167+
assertTrue("Table data size must be greater than zero", finalSize > 0);
168168
LOG.info("Last seen size: " + finalSize);
169169

170170
// Make sure the QuotaObserverChore has time to reflect the new region size reports
@@ -263,7 +263,7 @@ public boolean evaluate() throws Exception {
263263
// Make sure we see the "final" new size for the table, not some intermediate
264264
waitForStableRegionSizeReport(conn, tn);
265265
final long finalSize = getRegionSizeReportForTable(conn, tn);
266-
assertNotNull("Did not expect to see a null size", finalSize);
266+
assertTrue("Table data size must be greater than zero", finalSize > 0);
267267
LOG.info("Final observed size of table: " + finalSize);
268268

269269
// Make sure the QuotaObserverChore has time to reflect the new region size reports

pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@
832832
modules and cause trouble if we only rely on transitive dependencies.
833833
-->
834834
<netty3.version>3.10.6.Final</netty3.version>
835-
<netty4.version>4.1.108.Final</netty4.version>
835+
<netty4.version>4.1.112.Final</netty4.version>
836836
<!-- end HBASE-15925 default hadoop compatibility values -->
837837
<audience-annotations.version>0.15.0</audience-annotations.version>
838838
<javadoc.audience-annotations.version>0.15.0</javadoc.audience-annotations.version>
@@ -852,8 +852,8 @@
852852
Note that the version of jackson-[annotations,core,databind] must be kept in sync with the
853853
version of jackson-jaxrs-json-provider shipped in hbase-thirdparty.
854854
-->
855-
<jackson.version>2.17.0</jackson.version>
856-
<jackson.databind.version>2.17.0</jackson.databind.version>
855+
<jackson.version>2.17.2</jackson.version>
856+
<jackson.databind.version>2.17.2</jackson.databind.version>
857857
<jaxb-api.version>2.3.1</jaxb-api.version>
858858
<servlet.api.version>3.1.0</servlet.api.version>
859859
<wx.rs.api.version>2.1.1</wx.rs.api.version>
@@ -894,7 +894,7 @@
894894
-->
895895
<checkstyle.version>8.29</checkstyle.version>
896896
<exec.maven.version>3.1.0</exec.maven.version>
897-
<error-prone.version>2.26.1</error-prone.version>
897+
<error-prone.version>2.28.0</error-prone.version>
898898
<jamon.plugin.version>2.4.2</jamon.plugin.version>
899899
<lifecycle.mapping.version>1.0.0</lifecycle.mapping.version>
900900
<maven.antrun.version>1.8</maven.antrun.version>
@@ -926,7 +926,7 @@
926926
databind] must be kept in sync with the version of jackson-jaxrs-json-provider shipped in
927927
hbase-thirdparty.
928928
-->
929-
<hbase-thirdparty.version>4.1.7</hbase-thirdparty.version>
929+
<hbase-thirdparty.version>4.1.8</hbase-thirdparty.version>
930930
<!-- Coverage properties -->
931931
<jacoco.version>0.8.8</jacoco.version>
932932
<jacocoArgLine/>
@@ -1844,6 +1844,13 @@
18441844
<scope>test</scope>
18451845
</dependency>
18461846
</dependencies>
1847+
<repositories>
1848+
<repository>
1849+
<id>staging</id>
1850+
<name>staging</name>
1851+
<url>https://repository.apache.org/content/repositories/orgapachehbase-1555</url>
1852+
</repository>
1853+
</repositories>
18471854
<build>
18481855
<!-- Plugin versions are inherited from ASF parent pom: https://maven.apache.org/pom/asf/
18491856
For specific version use a property and define it in the parent pom.

0 commit comments

Comments
 (0)