Skip to content

Commit ac69b96

Browse files
MariamalmesferMariam-Almesfer
authored andcommitted
Fix CVE-2025-48924: Remove commons-lang from presto-pinot
1 parent a07aa74 commit ac69b96

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2719,6 +2719,11 @@
27192719
</exclusion>
27202720
</exclusions>
27212721
</dependency>
2722+
<dependency>
2723+
<groupId>net.hydromatic</groupId>
2724+
<artifactId>aggdesigner-algorithm</artifactId>
2725+
<version>6.1</version>
2726+
</dependency>
27222727
</dependencies>
27232728
</dependencyManagement>
27242729

presto-accumulo/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,6 @@
232232
<artifactId>guice</artifactId>
233233
</dependency>
234234

235-
<dependency>
236-
<groupId>commons-lang</groupId>
237-
<artifactId>commons-lang</artifactId>
238-
<version>2.6</version>
239-
</dependency>
240-
241235
<dependency>
242236
<groupId>org.apache.commons</groupId>
243237
<artifactId>commons-lang3</artifactId>

presto-accumulo/src/main/java/com/facebook/presto/accumulo/index/Indexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import org.apache.accumulo.core.iterators.user.SummingCombiner;
4747
import org.apache.accumulo.core.security.Authorizations;
4848
import org.apache.accumulo.core.security.ColumnVisibility;
49-
import org.apache.commons.lang.ArrayUtils;
49+
import org.apache.commons.lang3.ArrayUtils;
5050
import org.apache.commons.lang3.tuple.Pair;
5151
import org.apache.hadoop.io.Text;
5252

presto-accumulo/src/main/java/com/facebook/presto/accumulo/io/AccumuloRecordCursor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import org.apache.accumulo.core.data.Value;
3131
import org.apache.accumulo.core.iterators.FirstEntryInRowIterator;
3232
import org.apache.accumulo.core.iterators.user.WholeRowIterator;
33-
import org.apache.commons.lang.StringUtils;
33+
import org.apache.commons.lang3.StringUtils;
3434
import org.apache.hadoop.io.Text;
3535

3636
import java.io.IOException;

presto-accumulo/src/main/java/com/facebook/presto/accumulo/model/Row.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import com.google.common.base.Splitter;
2222
import com.google.common.collect.ImmutableList;
2323
import com.google.common.collect.ImmutableMap;
24-
import org.apache.commons.lang.StringUtils;
24+
import org.apache.commons.lang3.StringUtils;
2525

2626
import java.sql.Date;
2727
import java.sql.Time;

0 commit comments

Comments
 (0)