This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/maven/org.apache.commons-commons-rng-bom-1.7
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


    omit 98225502 Build(deps): Bump org.apache.commons:commons-rng-bom from 1.6 
to 1.7
     add aa17e806 Bump actions/checkout from 6.0.2 to 7.0.0
     add db9dfb0e Bump github/codeql-action/upload-sarif from 4.35.1 to 4.36.2
     add e3839f9f Bump github/codeql-action from 4.36.2 to 4.36.3
     add 5db09aa7 Bump github/codeql-action from 4.36.3 to 4.37.0
     add 3b422ceb Bump actions/setup-java from 5.4.0 to 5.5.0
     add 4b08ff4c Build(deps): Bump org.apache.commons:commons-parent from 99 
to 102
     add db8fc677 Merge pull request #216 from 
apache/dependabot/maven/org.apache.commons-commons-parent-102
     add ac9ef797 Build(deps): Bump codecov/codecov-action from 6.0.0 to 7.0.0
     add 693bee9e Merge pull request #215 from 
apache/dependabot/github_actions/codecov/codecov-action-7.0.0
     add f14f741a Bump actions/setup-java from 5.5.0 to 5.6.0
     add 0d9843b3 Bump github/codeql-action from 4.37.0 to 4.37.1
     add 17dd9fa9 Bump org.apache.commons:commons-parent from 102 to 103.
     add 94a3de21 Better use of JUnit API.
     add b4a2cddc Better use of JUnit API.
     add ba0a7032 Bump github/codeql-action from 4.37.1 to 4.37.3
     add b38c8d95 Bump GH CI actions/checkout from 7.0.0 to 7.0.1
     add 1374765e Bump ossf/scorecard-action from 2.4.3 to 2.4.4.
     add e4d0927b Bump github/codeql-action from 4.37.3 to 4.37.6.
     add da227b05 Bump actions/setup-java from 5.6.0 to 5.7.0
     add e6233319 Bump codeql-action from 4.37.6 to 4.37.7
     add b8184f4f Update build workflow
     add 8ac25c90 NUMBERS-209: Compute Trigamma on negative arguments using 
reflection formula
     add 55b5539c NUMBERS-210: BrentSolver to validate convergence arguments
     add 0d098352 Do not throw exceptions from public BrentSolver constructor
     add a4b3841d NUMBERS-211: Ensure convergence at machine precision
     add c160e588 NUMBERS-212: Detect modulo 2^32 overflow during construction
     add 7d6f68ea NUMBERS-213: Restore signed zeros within the [from, to) range
     add ff171f40 Checkstyle: Remove deprecated JavadocStyle check
     add 4e0f4208 Checkstyle: Remove unnecessary parentheses
     add 5d9315e7 PMD fix: Remove public keyword from package-private class
     add 068e2c11 PMD: Increase declaration usage max distance threshold
     add 055e06fe Add summary javadoc
     add 6be39335 Checkstyle: Add SummaryJavadoc check
     add 280c4ee4 Update commons-parent 103 to 104
     add a8958055 Checkstyle: Suppress checks in the examples module
     add 7dede04c Add missing backslash
     add 11aa928b Bump github/codeql-action/init from 4.37.7 to 4.37.8
     add 5f08caf4 Set up default protection ruleset for default and release 
branches
     add 68d94018 Bump actions/setup-java from 5.7.0 to 6.0.0.
     add f971927c Partition KBM to return the exact pivot range
     add 283f8de2 Fix checkstyle
     add 1efb412e Build(deps): Bump org.apache.commons:commons-rng-bom from 1.6 
to 1.7

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (98225502)
            \
             N -- N -- N   
refs/heads/dependabot/maven/org.apache.commons-commons-rng-bom-1.7 (1efb412e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |  31 ++++--
 .github/workflows/codeql-analysis.yml              |   8 +-
 .github/workflows/coverage.yml                     |   6 +-
 .github/workflows/maven.yml                        |   8 +-
 .github/workflows/scorecards-analysis.yml          |   6 +-
 .../org/apache/commons/numbers/angle/Angle.java    |   7 +-
 .../numbers/arrays/KeyUpdatingInterval.java        |   2 +-
 .../numbers/arrays/MultidimensionalCounter.java    |  39 +++++--
 .../apache/commons/numbers/arrays/Selection.java   |  15 ++-
 .../apache/commons/numbers/arrays/SortInPlace.java |  10 +-
 .../arrays/MultidimensionalCounterTest.java        |  24 +++++
 .../commons/numbers/arrays/SelectionTest.java      |  33 ++++++
 .../numbers/combinatorics/Combinations.java        |   8 +-
 .../apache/commons/numbers/complex/Complex.java    |   8 +-
 .../java/org/apache/commons/numbers/core/Norm.java |  13 +--
 .../org/apache/commons/numbers/core/Precision.java |   4 +-
 .../numbers/examples/jmh/arrays/Partition.java     |   8 +-
 .../numbers/examples/jmh/arrays/PartitionTest.java |  32 +++++-
 .../org/apache/commons/numbers/field/FP64.java     |   2 +-
 .../commons/numbers/fraction/BigFraction.java      |   4 +-
 .../fraction/GeneralizedContinuedFraction.java     |   2 +-
 .../commons/numbers/fraction/UserGuideTest.java    |   2 +-
 .../apache/commons/numbers/gamma/InvGamma1pm1.java |   2 +-
 .../apache/commons/numbers/gamma/LogGamma1p.java   |   2 +-
 .../org/apache/commons/numbers/gamma/Trigamma.java |  17 ++++
 .../apache/commons/numbers/gamma/TrigammaTest.java | 112 ++++++++++++---------
 .../commons/numbers/quaternion/Quaternion.java     |  12 +--
 .../apache/commons/numbers/quaternion/Slerp.java   |   2 +-
 .../commons/numbers/quaternion/QuaternionTest.java |   2 +-
 .../commons/numbers/quaternion/UserGuideTest.java  |   2 +-
 .../commons/numbers/rootfinder/BrentSolver.java    |  93 +++++++++++++++--
 .../numbers/rootfinder/SolverException.java        |   6 ++
 .../numbers/rootfinder/BrentSolverTest.java        |  75 ++++++++++++++
 doc/release/release.howto.txt                      |   2 +-
 pom.xml                                            |   2 +-
 src/changes/changes.xml                            |  26 +++++
 src/conf/checkstyle/checkstyle-suppressions.xml    |   3 +
 src/conf/checkstyle/checkstyle.xml                 |   2 +-
 src/conf/pmd/pmd-ruleset.xml                       |   5 +
 39 files changed, 495 insertions(+), 142 deletions(-)

Reply via email to