Ouch Morroco 6.8

2023-09-08 Thread Jim Showalter

Re: [commons-crypto] OpenSSL 3.x, FIPS, digests, and HMAC

2023-09-08 Thread Alex Remily
Gary, Can you have a look at this? https://github.com/apache/commons-crypto/pull/242 Alex On Sun, Aug 27, 2023 at 8:38 AM Gary Gregory wrote: > On Fri, Aug 25, 2023 at 9:48 PM Alex Remily wrote: > > > > Breakup > > the current module into different maven modules? Not support both?> > > > >

Re: Fileupload2 on home page

2023-09-08 Thread Gary Gregory
Sounds good to me. Gary On Fri, Sep 8, 2023 at 6:27 PM sebb wrote: > > The latest release of Fileupload uses different Maven coordinates. > This has broken the link to maven search on the Commons home page, as > well as the badge not agreeing with the version. > > Whilst it would be possible to

Fileupload2 on home page

2023-09-08 Thread sebb
The latest release of Fileupload uses different Maven coordinates. This has broken the link to maven search on the Commons home page, as well as the badge not agreeing with the version. Whilst it would be possible to fix this, I wonder whether it might not be better to show both old (1.5) and new

[RESULT][VOTE] Release Apache Commons Compress 1.24.0 based on RC1

2023-09-08 Thread Gary Gregory
This vote passes with the following binding +1s: - Henri Biestro - Rob Tompkins - Gary Gregory Gary On Fri, Sep 8, 2023 at 6:22 PM Gary Gregory wrote: > > My +1 > > Gary > > On Fri, Sep 8, 2023 at 4:37 PM Rob Tompkins wrote: > > > > +1 > > Build works on java 11, 17, > > Signatures all check

Re: [VOTE] Release Apache Commons Compress 1.24.0 based on RC1

2023-09-08 Thread Gary Gregory
My +1 Gary On Fri, Sep 8, 2023 at 4:37 PM Rob Tompkins wrote: > > +1 > Build works on java 11, 17, > Signatures all check out, > Reports all look good. > > Cheers, and thanks a ton for all the good work! > -Rob > > > On Sep 4, 2023, at 9:22 AM,Gary Gregory wrote: > > > > We have fixed a few

Re: [ANNOUNCE] Apache Commons FileUpload 2.0.0-M1

2023-09-08 Thread sebb
FTR: Note that this release uses different Maven coordinates: org.apache.commons commons-fileupload2 2.0.0-M2-SNAPSHOT The previous release (1.5) used: commons-fileupload commons-fileupload 1.5 On Fri, 21 Jul 2023 at 17:28, wrote: > > Hello Gary, > > does that include Milestone

Re: [VOTE] Release Apache Commons Compress 1.24.0 based on RC1

2023-09-08 Thread Rob Tompkins
+1 Build works on java 11, 17, Signatures all check out, Reports all look good. Cheers, and thanks a ton for all the good work! -Rob > On Sep 4, 2023, at 9:22 AM,Gary Gregory wrote: > > We have fixed a few bugs and added one enhancement since Apache > Commons Compress 1.23.0 was released, so I

Re: [VOTE] Release Apache Commons JCS 3.2 based on rc1 (2nd round with fixed links)

2023-09-08 Thread Thomas Vandahl
Could I have one more (positive :-) PMC vote please? > Am 03.09.2023 um 17:51 schrieb Thomas Vandahl : > > We have fixed quite a few bugs and added some significant enhancements since > Apache Commons JCS 3.1 was released, so I would like to release Apache > Commons JCS 3.2. > > Apache

Re: [collections] AbstractLinkedList is source incompatible with JDK 21

2023-09-08 Thread Alex Herbert
On Fri, 8 Sept 2023 at 13:46, Alex Herbert wrote: > The problem then becomes how to support AbstractLinkedList and > CursorableLinkedList. Currently collections4 will not be source > compatible with JDK 21. Any downstream project that extends these > classes will not be source compatible with

Re: [collections] AbstractLinkedList is source incompatible with JDK 21

2023-09-08 Thread Matt Benson
On second thought, maybe it was too early and some consideration should be given to whether and how Java 9+ modules (with which I do not profess expertise) could address this issue without the baby/bathwater situation of migrating the package of the whole library. Matt On Fri, Sep 8, 2023, 8:46

Re: [collections] AbstractLinkedList is source incompatible with JDK 21

2023-09-08 Thread Matt Benson
IMO the version bump is warranted/I'd select option 2 (although if it's not too early for me I don't see these options as being mutually exclusive). Matt On Fri, Sep 8, 2023, 7:46 AM Alex Herbert wrote: > JDK 21 has added these methods to java.util.List: > > default public void addFirst(E o) >

[collections] AbstractLinkedList is source incompatible with JDK 21

2023-09-08 Thread Alex Herbert
JDK 21 has added these methods to java.util.List: default public void addFirst(E o) default public void addLast(E o) These are source incompatible with Commons Collections AbstractLinkedList: public boolean addFirst(E o) public boolean addLast(E o) This affects AbstractLinkedList and any list