You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gi...@apache.org on 2021/04/19 12:56:14 UTC

[commons-lang] branch dependabot/maven/jmh.version-1.29 updated (29231b9 -> fad6fda)

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

github-bot pushed a change to branch dependabot/maven/jmh.version-1.29
in repository https://gitbox.apache.org/repos/asf/commons-lang.git.


 discard 29231b9  Bump jmh.version from 1.27 to 1.29
     add 79eb89e  Add and use EnumUtils.getFirstEnumIgnoreCase(Class, String, Function, E).
     add 5e5af7a  Sort members.
     add d1e9e59  Add test for SystemUtils.USER_NAME.
     add 320486f  Remove dead comments.
     add 4e18561  Add and use Suppliers.
     add f0ed760  Bump actions/cache from v2.1.4 to v2.1.5 (#742)
     add d14cc4a  Bump spotbugs from 4.2.2 to 4.2.3 (#744)
     add a35ecb3  Bump checkstyle from 8.41 to 8.41.1 (#739)
     add 9723b57  Checkstyle.
     add 6ad3961  Bump actions/setup-java from v1.4.3 to v2.
     add 5d51fc2  Typo.
     add 2978cb6  DMI: Random object created and used only once (DMI_RANDOM_USED_ONLY_ONCE); Better multi-threaded behavior.
     add 03f5597  spotbugs-maven-plugin 4.2.2 -> 4.2.3.
     add c4019e7  Workaround https://github.com/spotbugs/spotbugs/issues/1504
     add 07f7143  Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.
     add a5d4660  Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.
     add fad6fda  Bump jmh.version from 1.27 to 1.29

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   (29231b9)
            \
             N -- N -- N   refs/heads/dependabot/maven/jmh.version-1.29 (fad6fda)

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:
 .github/workflows/maven.yml                        |  13 +-
 pom.xml                                            |   6 +-
 spotbugs-exclude-filter.xml                        |  14 +
 src/changes/changes.xml                            |  13 +-
 .../java/org/apache/commons/lang3/ArrayUtils.java  |  23 +-
 .../java/org/apache/commons/lang3/EnumUtils.java   |  25 +-
 .../java/org/apache/commons/lang3/ObjectUtils.java |   5 +-
 .../apache/commons/lang3/RandomStringUtils.java    | 408 ++++++++--------
 .../java/org/apache/commons/lang3/RandomUtils.java | 149 +++---
 .../java/org/apache/commons/lang3/StringUtils.java |   5 +-
 .../{FailableSupplier.java => Suppliers.java}      |  21 +-
 .../org/apache/commons/lang3/EnumUtilsTest.java    | 117 +++--
 .../org/apache/commons/lang3/ObjectUtilsTest.java  |   4 -
 .../org/apache/commons/lang3/SystemUtilsTest.java  | 540 +++++++++++----------
 .../SuppliersTest.java}                            |  28 +-
 15 files changed, 734 insertions(+), 637 deletions(-)
 copy src/main/java/org/apache/commons/lang3/function/{FailableSupplier.java => Suppliers.java} (69%)
 copy src/test/java/org/apache/commons/lang3/{builder/ReflectionToStringBuilderSummaryTest.java => function/SuppliersTest.java} (67%)