Skip to content

Commit

Permalink
Update dependency commons-cli:commons-cli to v1.7.0 (#2408)
Browse files Browse the repository at this point in the history
  • Loading branch information
solrbot authored Apr 18, 2024
1 parent dc4ab76 commit abf6e8f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ Dependency Upgrades

* SOLR-17214: Update forbiddenapis to 3.7 (hossman)

* GITHUB#2408: Update commons-cli to 1.7 (Eric Pugh)

Other Changes
---------------------
* SOLR-17126: Cut over System.getProperty to EnvUtils.getProperty (janhoy)
Expand Down
2 changes: 1 addition & 1 deletion solr/core/src/java/org/apache/solr/cli/PostLogsTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public List<Option> getOptions() {
public void runImpl(CommandLine cli) throws Exception {
String url = cli.getOptionValue("url");
String rootDir = cli.getOptionValue("rootdir");
String credentials = cli.getOptionValue("credentials", null);
String credentials = cli.getOptionValue("credentials");
runCommand(url, rootDir, credentials);
}

Expand Down
1 change: 0 additions & 1 deletion solr/licenses/commons-cli-1.6.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/commons-cli-1.7.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6504b3f17e8bc5adc6b6c8deecc90144d0154075
2 changes: 1 addition & 1 deletion versions.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ com.sun.activation:jakarta.activation:1.2.2 (1 constraints: ba0dac35)
com.sun.istack:istack-commons-runtime:3.0.12 (1 constraints: eb0d9a43)
com.tdunning:t-digest:3.3 (1 constraints: aa04232c)
com.zaxxer:SparseBitSet:1.2 (1 constraints: 0d081e75)
commons-cli:commons-cli:1.6.0 (1 constraints: 09050236)
commons-cli:commons-cli:1.7.0 (1 constraints: 0a050536)
commons-codec:commons-codec:1.16.1 (11 constraints: a39748dd)
commons-collections:commons-collections:3.2.2 (1 constraints: 09050236)
commons-io:commons-io:2.15.1 (9 constraints: a265d622)
Expand Down
2 changes: 1 addition & 1 deletion versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ com.j256.simplemagic:simplemagic=1.17
com.jayway.jsonpath:json-path=2.9.0
com.lmax:disruptor=3.4.4
com.tdunning:t-digest=3.3
commons-cli:commons-cli=1.6.0
commons-cli:commons-cli=1.7.0
commons-codec:commons-codec=1.16.1
commons-collections:commons-collections=3.2.2
commons-io:commons-io=2.15.1
Expand Down

0 comments on commit abf6e8f

Please sign in to comment.