[ANNOUNCE] Apache Commons Configuration 2.10.1

2024-03-20 Thread Gary Gregory
Introducing Apache Commons Configuration 2.10.1 The Apache Commons Configuration software library provides a generic configuration interface that enables an application to read configuration data from a variety of sources. Tools to assist in the reading of configuration/preferences files in vario

[RESULT][VOTE] Release Apache Commons Configuration 2.10.1 based on RC1

2024-03-20 Thread Gary Gregory
This vote passes with the following binding +1 votes: - Bruno Kinoshita (know) - Gary Gregory (ggregory) - Rob Tompkins (chtompki) Gary On Tue, Mar 19, 2024 at 5:40 PM Rob Tompkins wrote: > > +1 > > > On Mar 18, 2024, at 9:35 AM, Gary Gregory wrote: > > > > My +1 > > > > Gary > > > >> On Sun,

Re: [VOTE] Release Apache Commons Logging 1.3.1 based on RC2

2024-03-20 Thread Rob Tompkins
+1 looks good > On Mar 17, 2024, at 11:44 AM, Gary Gregory wrote: > > We have fixed a few bugs and added some enhancements since Apache > Commons Logging 1.3.0 was released, so I would like to release Apache > Commons Logging 1.3.1. > > (Note that the new release candidate is labeled 1.3.1 and

Re: Interest in CollectionUtils feature

2024-03-20 Thread Gary D. Gregory
Oops, obviously: Stream.of(array).filter(e -> !e.isEmpty()).findFirst(); On 2024/03/20 13:18:49 Gary Gregory wrote: > Hello Marco, > > Good call coming to the mailing list first :-) > > There is a mismatch in concepts in the proposed API IMO. > > But I can't tell for sure since you don't descr

Re: Interest in CollectionUtils feature

2024-03-20 Thread Gary Gregory
Hello Marco, Good call coming to the mailing list first :-) There is a mismatch in concepts in the proposed API IMO. But I can't tell for sure since you don't describe the method: there are no input, output, and edge case descriptions. I would propose the method with what the Javadoc would look

Re: Interest in CollectionUtils feature

2024-03-20 Thread Elliotte Rusty Harold
At first glance, my impression is that this need isn't common or complex enough to justify inclusion. It could probably be straight-forwardedly implemented with lambdas by someone who does need it. That said, if it is added, the signature should probably be CollectionUtils.firstNonEmpty(Collectio

Re: [VOTE] Release Apache Commons VFS Project 2.10.0 based on RC1

2024-03-20 Thread Rob Tompkins
+1 > On Mar 10, 2024, at 6:02 PM, Gary Gregory wrote: > > We have fixed a few bugs and added some enhancements since Apache > Commons VFS Project 2.9.0 was released, so I would like to release > Apache Commons VFS Project 2.10.0. > > Apache Commons VFS Project 2.10.0 RC1 is available for review

Interest in CollectionUtils feature

2024-03-20 Thread Marco Dell'Anna
Hi, I would like to have a CollectionUtils.firstNotEmpty(List... lists) method. Since commons-collections/CONTRIBUTING.md at master · apache/commons-collections · GitHub says: * If you're planning to implement a new feature