forked from pool/apache-commons-cli
Compare commits
53 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
|
|
a7f78630e6 | ||
|
|
6ef1a74d65 | ||
| 21061722a2 | |||
| be5026a6f9 | |||
| 8215e7a6df | |||
| e3205839e2 | |||
| 98b938722b | |||
| 26a5a84904 | |||
| c6be8f19a5 | |||
| aa95e86505 | |||
| df323051e5 | |||
| 705d915665 | |||
| 810a4e9070 | |||
| 9c421fd069 | |||
| b7ba0fb35d | |||
| 7060754b65 | |||
| 404f1b6f08 | |||
| e9e2fe2c31 | |||
| 2329bc3ac7 | |||
| a4eef552a1 | |||
| b510b4b6bf | |||
| 8592327d62 | |||
| 01351b5130 | |||
| e455110afc | |||
| 76df5fe8e1 | |||
| a05bd95fbe | |||
|
|
27ac5bbbcf | ||
| a7795341bb | |||
| 7017bad02b | |||
| e1f43791a9 | |||
| e49c5531f2 | |||
| 3cce15978f | |||
| e6ba3ff8d7 | |||
| 2f3f2cc7da | |||
| 104f2988f8 | |||
| 703dce3370 | |||
| e91ede15d7 | |||
| 7f838f6536 | |||
| f4406baa96 | |||
| 7c8c5b1b51 | |||
| e7b19b7674 | |||
| f5e3ad6a06 | |||
| a563044348 | |||
|
|
024da1d4a3 | ||
|
|
9fb073a523 | ||
| ba9dc483c9 | |||
|
|
e27b39286b | ||
| 53a92e5bd7 | |||
|
|
6a2fa5d92c | ||
|
|
ffad62becc | ||
|
|
f60699a6f4 | ||
|
|
6b14a03c6c | ||
| 0290ff0a97 |
@@ -8,7 +8,7 @@
|
||||
|
||||
<property name="project.artifactId" value="commons-cli"/>
|
||||
<property name="project.groupId" value="commons-cli"/>
|
||||
<property name="project.version" value="1.8.0"/>
|
||||
<property name="project.version" value="1.10.0"/>
|
||||
|
||||
<property name="compiler.release" value="8"/>
|
||||
<property name="compiler.source" value="1.${compiler.release}"/>
|
||||
|
||||
@@ -1,3 +1,74 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 5 07:25:32 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Update to 1.10.0
|
||||
* New Features
|
||||
+ CLI-339: Help formatter extension in the new package #314.
|
||||
+ CommandLine.Builder implements Supplier<CommandLine>.
|
||||
+ DefaultParser.Builder implements Supplier<DefaultParser>.
|
||||
+ CLI-340: Add CommandLine.getParsedOptionValues() #334.
|
||||
+ CLI-333: org.apache.commons.cli.Option.Builder implements
|
||||
Supplier<Option>.
|
||||
* Fixed Bugs
|
||||
+ Deprecate CommandLine.Builder() in favor of
|
||||
CommandLine.builder().
|
||||
+ Deprecate DeprecatedAttributes.Builder() in favor of
|
||||
DeprecatedAttributes.builder().
|
||||
+ Refactor default parser test #294.
|
||||
+ Port to JUnit 5.
|
||||
+ Generics for Converter should use Exception not Throwable.
|
||||
+ Pick up maven-antrun-plugin version from parent POM
|
||||
org.apache:apache.
|
||||
+ Javadoc is missing its Overview page.
|
||||
+ Get mockito version from parent pom (#351).
|
||||
+ Remove -nouses directive from maven-bundle-plugin. OSGi
|
||||
package imports now state 'uses' definitions for package
|
||||
imports, this doesn't affect JPMS
|
||||
(from org.apache.commons:commons-parent:80).
|
||||
+ Deprecate PatternOptionBuilder.PatternOptionBuilder().
|
||||
+ CLI-341: HelpFormatter infinite loop with 0 width input.
|
||||
+ CLI-349: Fail faster with a more precise NullPointerException:
|
||||
Option.processValue() throws NullPointerException when passed
|
||||
null value with value separator configured.
|
||||
+ CLI-344: Fail faster with a more precise NullPointerException:
|
||||
DefaultParser.parse() throws NullPointerException when options
|
||||
parameter is null.
|
||||
+ CLI-347: Options.addOptionGroup(OptionGroup) does not remove
|
||||
required options from requiredOpts list.
|
||||
+ org.apache.commons.cli.Option.Builder.get() should throw
|
||||
IllegalStateException instead of IllegalArgumentException.
|
||||
+ org.apache.commons.cli.Option.processValue(String) should
|
||||
throw IllegalStateException instead of
|
||||
IllegalArgumentException.
|
||||
+ org.apache.commons.cli.OptionBuilder.create() should throw
|
||||
IllegalStateException instead of IllegalArgumentException.
|
||||
* Updates
|
||||
+ Bump org.apache.commons:commons-parent from 72 to 85 #302,
|
||||
#304, #310, #315, #320, #327, #371.
|
||||
+ [test] Bump commons-io:commons-io from 2.16.1 to 2.20.0 #309,
|
||||
#337.
|
||||
+ [test] Bump org.apache.commons:commons-text from 1.12.0 to
|
||||
1.14.0 #344.
|
||||
+ Update site documentation to
|
||||
https://maven.apache.org/xsd/xdoc-2.0.xsd.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 7 09:47:59 UTC 2024 - Gus Kenion <gus.kenion@suse.com>
|
||||
|
||||
- Update to 1.9.0
|
||||
* New features
|
||||
+ Add OptionGroup.isSelected().
|
||||
+ You can now extend HelpFormatter.Builder.
|
||||
+ Add 'since' attribute to Option to track when an Option was
|
||||
introduced #292
|
||||
* Fixed bugs
|
||||
+ CLI-334: Fix Javadoc pathing #280.
|
||||
+ CLI-335: Updated properties documentation #285.
|
||||
+ CLI-336: Deprecation not always reported #284.
|
||||
+ Replace internal StringBuffer with StringBuilder.
|
||||
* Updates
|
||||
+ Bump org.apache.commons:commons-parent from 70 to 72 #283.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 12 12:14:19 UTC 2024 - Gus Kenion <gus.kenion@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package apache-commons-cli
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -19,7 +19,7 @@
|
||||
%global base_name cli
|
||||
%global short_name commons-%{base_name}
|
||||
Name: apache-commons-cli
|
||||
Version: 1.8.0
|
||||
Version: 1.10.0
|
||||
Release: 0
|
||||
Summary: Command Line Interface Library for Java
|
||||
License: Apache-2.0
|
||||
|
||||
BIN
commons-cli-1.10.0-src.tar.gz
LFS
Normal file
BIN
commons-cli-1.10.0-src.tar.gz
LFS
Normal file
Binary file not shown.
BIN
commons-cli-1.7.0-src.tar.gz
LFS
BIN
commons-cli-1.7.0-src.tar.gz
LFS
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ff484c5b318df2d451c0f746a44f4839cedc953f4d4143c04176a3436e0a1ba
|
||||
size 180524
|
||||
Reference in New Issue
Block a user