Skip to content

Commit

Permalink
Upgrade commons-io to 2.17.0 (apache#17227)
Browse files Browse the repository at this point in the history
  • Loading branch information
shigarg1 authored Oct 4, 2024
1 parent e41648f commit 93b5a83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
import org.junit.jupiter.api.io.TempDir;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.nio.file.Paths;
Expand Down Expand Up @@ -147,7 +147,7 @@ public void testDeployingSomethingToKind(@TempDir Path tempDir) throws Exception
.map(Integer::parseInt)
.collect(Collectors.toList()));
}
catch (IOException e) {
catch (UncheckedIOException e) {
throw new RuntimeException(e);
}
});
Expand Down
2 changes: 1 addition & 1 deletion extensions-core/protobuf-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</parent>

<properties>
<commons-io.version>2.11.0</commons-io.version>
<commons-io.version>2.17.0</commons-io.version>
<okio.version>3.6.0</okio.version>
</properties>

Expand Down
18 changes: 2 additions & 16 deletions licenses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -546,13 +546,13 @@ name: Apache Commons IO
license_category: binary
module: java-core
license_name: Apache License version 2.0
version: 2.11.0
version: 2.17.0
libraries:
- commons-io: commons-io
notices:
- commons-io: |
Apache Commons IO
Copyright 2002-2021 The Apache Software Foundation
Copyright 2002-2024 The Apache Software Foundation
---

Expand Down Expand Up @@ -2521,20 +2521,6 @@ notices:
---

name: Apache Commons IO
license_category: binary
module: hadoop-client
license_name: Apache License version 2.0
version: 2.4
libraries:
- commons-io: commons-io
notices:
- commons-io: |
Apache Commons IO
Copyright 2002-2012 The Apache Software Foundation
---

name: Apache Commons Logging
license_category: binary
module: hadoop-client
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Expand Down

0 comments on commit 93b5a83

Please sign in to comment.