Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC2

2020-01-22 Thread William Speirs
Works for me... Carl, let me know how I can help. On Wed, Jan 22, 2020 at 12:37 AM Carl Hall wrote: > I’m in favor of releasing 1.8 because it’s ready and has had the most > attention in recent months/years. > After such, we put eyes on the 2.0 branch to ensure it is ready to be the > successive

Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC2

2020-01-22 Thread Carl Hall
Thanks, Bill. Looking for 2 more positive votes to proceed. :) I'd like to hear from Gary given his concerns on this thread. > On Jan 22, 2020, at 6:00 AM, William Speirs wrote: > > Works for me... Carl, let me know how I can help. > > On Wed, Jan 22, 2020 at 12:37 AM Carl Hall wrote: > >>

Release of Commons Crypto

2020-01-22 Thread Alex Remily
How do we go about getting a release for Commons Crypto?

Re: [codec] Base32/Base64 trailing bit validation is incomplete

2020-01-22 Thread Alex Herbert
This has turned out to be non-trivial. Current progress in in PR [1]. Easy - Added a property to BaseNCodec to enable strict decoding All other properties of the codec are set in the constructor and are final. So using a property is a change. I can change to overloaded constructors but there

Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC2

2020-01-22 Thread William Speirs
Sorry, meant to say: +1 On Wed, Jan 22, 2020 at 7:34 PM Carl Hall wrote: > Thanks, Bill. Looking for 2 more positive votes to proceed. :) I'd like > to hear from Gary given his concerns on this thread. > > > > On Jan 22, 2020, at 6:00 AM, William Speirs wrote: > > > > Works for me... Carl, let

Re: some questions (/bug?) about commons-vfs2 make me confused.

2020-01-22 Thread Xeno Amess
and there comes one more question: how to transfer a FileObject(vfs) to a File(in Java) (if possible)? I know that sonds insane but sometimes we just need a function like this. I tried try { result = new File(fileObject.getURL().toURI()); } catch (URISyntaxException | FileSystemException e) {

Re: some questions (/bug?) about commons-vfs2 make me confused.

2020-01-22 Thread Bernd Eckenfels
Hello, If you represent a local file then I think you can use fileObj.getName().getPathDecoded() However it might be a good idea to add a method like File fileSystemManager.toFile(FileObject) As the reverse of FileObject fsm.toFileObject(File). Ps: usage questions are better on commons-