Re: Math: Yearly patch for commons-math3

2022-12-06 Thread Jochen Wiedmann
Hi, David, if you want to be sure, that commons-math3 is being maintained, then I suggest that you take a look at the Git repository log. That should be sufficient: https://gitbox.apache.org/repos/asf?p=commons-math.git;a=log Jochen On Tue, Dec 6, 2022 at 3:57 PM Darrell Merryweather wrote: >

Re: [Lang] "CalendarUtilsTest" fails, or not...

2022-12-06 Thread Gary Gregory
Interesting, the GH builds are green: https://github.com/apache/commons-lang/actions But the environment is different from yours: Maven home: /usr/share/apache-maven-3.8.6 Java version: 11.0.17, vendor: Eclipse Adoptium, runtime: /usr/lib/jvm/temurin-11-jdk-amd64 Default locale: en, platform

[Lang] "CalendarUtilsTest" fails, or not...

2022-12-06 Thread Gilles Sadowski
Hello. Running $ JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 mvn test [... skipped ...] [ERROR] Failures: [ERROR] CalendarUtilsTest.testGetDayOfMonth:32 expected: <7> but was: <6> [ERROR] CalendarUtilsTest.testGetDayOfYear:37 expected: <341> but was: <340> [INFO] [ERROR] Tests run: 7330,

Re: [All] Main site is outdated

2022-12-06 Thread Gilles Sadowski
Le mer. 7 déc. 2022 à 00:31, sebb a écrit : > > On Tue, 6 Dec 2022 at 22:28, Gilles Sadowski wrote: > > > > Hello. > > > > Homepage > >https://commons.apache.org/ > > contains inconsistent information: Some "(maven-central) badges" display > > a version number but the link points to another

Re: [All] Main site is outdated

2022-12-06 Thread Alex Herbert
On Tue, 6 Dec 2022 at 23:31, sebb wrote: > > On Tue, 6 Dec 2022 at 22:28, Gilles Sadowski wrote: > > > > Hello. > > > > Homepage > >https://commons.apache.org/ > > contains inconsistent information: Some "(maven-central) badges" display > > a version number but the link points to another

Re: [All] Main site is outdated

2022-12-06 Thread sebb
On Tue, 6 Dec 2022 at 22:28, Gilles Sadowski wrote: > > Hello. > > Homepage >https://commons.apache.org/ > contains inconsistent information: Some "(maven-central) badges" display > a version number but the link points to another (usually older) one. See e.g. > * RNG > * Geometry > *

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Emmanuel Bourg
I would rather keep the ArrayUtils.shuffle() methods not deprecated, and mention RNG in the Javadoc for more advanced usages. Adding a 100KB dependency just to shuffle an array isn't optimal. Emmanuel Bourg Le 06/12/2022 à 21:40, Gary Gregory a écrit : I am ok with both LANG and TEXT

[ANNOUNCE] Apache Commons BCEL 6.7.0

2022-12-06 Thread Gary Gregory
The Apache Commons BCEL team is pleased to announce the release of Apache Commons BCEL 6.7.0! The Byte Code Engineering Library (BCEL) is intended to give users a convenient way to analyze, create, and manipulate compiled .class files. Classes are represented by objects containing all the

Re: commons-math4 release date

2022-12-06 Thread Gilles Sadowski
Hello. Le mar. 6 déc. 2022 à 14:47, Darrell Merryweather a écrit : > > Hi > > Is there an estimated release date for the commons-math version 4.0 release? All dependencies for this new major version have now been released. So, a release could be done at any time now provided all issues targeted

[All] Main site is outdated

2022-12-06 Thread Gilles Sadowski
Hello. Homepage https://commons.apache.org/ contains inconsistent information: Some "(maven-central) badges" display a version number but the link points to another (usually older) one. See e.g. * RNG * Geometry * Imaging * Numbers * Compress * Pool * JCS * Math * Configuration *

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Gary Gregory
I am ok with both LANG and TEXT deprecating to RNG. Gary On Tue, Dec 6, 2022, 13:21 Alex Herbert wrote: > On Tue, 6 Dec 2022 at 17:22, Gary Gregory wrote: > > > > I agree this should be in rng. > > > > Does rng duplicate all of the lang APIs such that we can deprecate the > lang > > methods?

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Alex Herbert
On Tue, 6 Dec 2022 at 17:22, Gary Gregory wrote: > > I agree this should be in rng. > > Does rng duplicate all of the lang APIs such that we can deprecate the lang > methods? In short, yes. (cd src/main && git grep -c Random) - ArrayUtils - RandomStringUtils - RandomUtils The proposed

Re: Math: Yearly patch for commons-math3

2022-12-06 Thread Rob Tompkins
> On Dec 6, 2022, at 12:26 PM, Gary Gregory wrote: > > "even if its only updating the copyright headers" > > You must be joking, you know we are volunteers here. I can't imagine you'd > be willing to pay for this from a commercial vendor or consultant which > makes the request show a lack

Re: Math: Yearly patch for commons-math3

2022-12-06 Thread Gary Gregory
"even if its only updating the copyright headers" You must be joking, you know we are volunteers here. I can't imagine you'd be willing to pay for this from a commercial vendor or consultant which makes the request show a lack of respect for our time and resources. Gary On Tue, Dec 6, 2022,

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Gary Gregory
I agree this should be in rng. Does rng duplicate all of the lang APIs such that we can deprecate the lang methods? Gary On Tue, Dec 6, 2022, 09:36 Alex Herbert wrote: > Currently the [rng] sampler package can only shuffle primitive int[] > arrays: > > o.a.c.rng.sampling.PermutationSampler:

Math: Yearly patch for commons-math3

2022-12-06 Thread Darrell Merryweather
Hi As part of our FOSS compliance, we need to ensure that 3rd party libraries are well maintained, to ensure, from a security perspective, we will have no future issues. We are currently using commons-math3 in some of our developments, and we were hoping someone might be able to include a

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Alex Herbert
On Tue, 6 Dec 2022 at 14:38, Bruno Kinoshita wrote: > > Hi Alex, > > I also don't have a use case for this right now. What about creating a JIRA > issue to wait to see if someone has the need for this feature? Maybe users > will confirm they need it, or provide other suggestions? > > -Bruno I do

Re: [rng][lang] Shuffling arrays

2022-12-06 Thread Bruno Kinoshita
Hi Alex, I also don't have a use case for this right now. What about creating a JIRA issue to wait to see if someone has the need for this feature? Maybe users will confirm they need it, or provide other suggestions? -Bruno On Tue, 6 Dec 2022 at 15:36, Alex Herbert wrote: > Currently the

[rng][lang] Shuffling arrays

2022-12-06 Thread Alex Herbert
Currently the [rng] sampler package can only shuffle primitive int[] arrays: o.a.c.rng.sampling.PermutationSampler: public static void shuffle(UniformRandomProvider rng, int[] list) public static void shuffle(UniformRandomProvider rng, int[] list, int start, boolean towardHead) I would

commons-math4 release date

2022-12-06 Thread Darrell Merryweather
Hi Is there an estimated release date for the commons-math version 4.0 release? Thanks Darrell

Re: [VOTE] Release Apache Commons Statistics 1.0 based on RC1

2022-12-06 Thread Gilles Sadowski
Le mar. 6 déc. 2022 à 13:06, Alex Herbert a écrit : > > FYI > > On Mon, 5 Dec 2022 at 00:46, Alex Herbert wrote: > > > I am wondering why the module page on the site I uploaded does not > > render correctly. > > I have deployed the 1.0 release to the live site. The module page > renders

Re: [VOTE] Release Apache Commons Statistics 1.0 based on RC1

2022-12-06 Thread Alex Herbert
FYI On Mon, 5 Dec 2022 at 00:46, Alex Herbert wrote: > I am wondering why the module page on the site I uploaded does not > render correctly. I have deployed the 1.0 release to the live site. The module page renders correctly:

[VOTE][RESULT] Release Apache Commons BCEL 6.7.0 based on RC1

2022-12-06 Thread Gary Gregory
This vote passes with the following binding +1 votes: - Bruno Kinoshita - Alex Herbert - Gary Gregory Gary On Tue, Dec 6, 2022 at 6:10 AM Gary Gregory wrote: > > My +1 > > Gary > > On Mon, Nov 28, 2022 at 12:13 PM Gary Gregory wrote: > > > > We have fixed a few bugs and added some

Re: [VOTE] Release Apache Commons BCEL 6.7.0 based on RC1

2022-12-06 Thread Gary Gregory
My +1 Gary On Mon, Nov 28, 2022 at 12:13 PM Gary Gregory wrote: > > We have fixed a few bugs and added some enhancements since Apache > Commons BCEL 6.6.1 was released, so I would like to release Apache > Commons BCEL 6.7.0. > > Apache Commons BCEL 6.7.0 RC1 is available for review here: >