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/11/24 03:14:52 UTC

[commons-lang] branch dependabot/maven/com.github.spotbugs-spotbugs-4.5.0 updated (aa3160a -> c3015e2)

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

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


 discard aa3160a  Bump spotbugs from 4.2.3 to 4.5.0
     add 6004a7d  Bump actions/checkout from 2.3.5 to 2.4.0 (#825)
     add 346dadd  Bump actions/checkout from 2.3.5 to 2.4.0 #825.
     add 052468d  Bump spotbugs-maven-plugin from 4.4.1 to 4.4.2.2 (#822)
     add ffc32f6  Bump spotbugs-maven-plugin from 4.4.1 to 4.4.2.2 #822
     add 6dc8492  Javadoc typo.
     add 03b84cb  Remove useless parentheses.
     add 9d40f8a  Add UncheckedReflectiveOperationException.
     add a4c8295  Add UncheckedReflectiveOperationException.
     add bef0c8a  Sort test methods.
     add e9555ff  Internal refactoring.
     add e151438  Add test case.
     add 525b1df  Add test case.
     add 9208f1d  Fix Javadoc link.
     add f322976  Bump junit-pioneer from 1.4.2 to 1.5.0 (#832)
     add 99ad9d9  Bump junit-pioneer from 1.4.2 to 1.5.0 #832.
     add 9fce1d6  Better argument names.
     add 6bda5d1  Javadoc.
     add 3853339  Internal refactoring.
     add 88500be  Add and use ClassUtils.isPublic(Class).
     add ae4225c  Organize imports.
     add 053e263  Add UncheckedIllegalAccessException.
     add f75f5b9  Add MethodInvokers.
     add e299a18  Make final var when is possible. (#816)
     add 8c42549  Use final. #816
     add ca4e62f  Use Set instead of List for checking the contains() method (#734)
     add 4af0444  Use Set instead of List for checking the contains() method #734.
     add 4f059ec  Sort members.
     add 51ad9f9  Javadoc.
     add ff415c8  Add Streams.nullSafeStream(Collection). Add Streams.toStream(Collection).
     add a0d2058  Fix typos in param names.
     add 8f48ed8  Add Streams.failableStream(Collection) and deprecate misnamed stream(Collection).
     add 6cb2e5a  Parameterize PMD plugin with its underlying implementation version and use latest.
     add 5c61f79  Fix broken link.
     add d5c7094  Drop version label.
     add adacce0  Drop useless parens.
     add 897f2e3  Drop useless parens and use lambda.
     add 7f9472e  Fix Javadoc typo.
     add 70abafc  Sort members.
     add 8a4d1b8  Add EnumUtils.getEnumMap(Class, Function). #730.
     add 1f06eb4  Refactor some test fixtures.
     add dc146ca  Parameterize tests to validate supplementary character input.
     add 2e6b228  Bump actions/cache from 2.1.6 to 2.1.7
     add d917f84  Bump spotbugs-maven-plugin from 4.4.2.2 to 4.5.0.0
     add c3015e2  Bump spotbugs from 4.2.3 to 4.5.0

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   (aa3160a)
            \
             N -- N -- N   refs/heads/dependabot/maven/com.github.spotbugs-spotbugs-4.5.0 (c3015e2)

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                        |   4 +-
 pom.xml                                            |  29 +-
 src/changes/changes.xml                            |  20 +-
 .../java/org/apache/commons/lang3/ArrayUtils.java  |   2 +-
 .../java/org/apache/commons/lang3/ClassUtils.java  |  13 +-
 .../java/org/apache/commons/lang3/EnumUtils.java   |  83 +++--
 .../java/org/apache/commons/lang3/LocaleUtils.java |   4 +-
 .../java/org/apache/commons/lang3/Streams.java     |   6 +-
 .../org/apache/commons/lang3/arch/Processor.java   |   2 +-
 .../lang3/exception/UncheckedException.java        |   2 +-
 ...n.java => UncheckedIllegalAccessException.java} |   7 +-
 ... => UncheckedReflectiveOperationException.java} |   6 +-
 .../commons/lang3/function/MethodInvokers.java     | 259 ++++++++++++++
 .../commons/lang3/reflect/ConstructorUtils.java    |   3 +-
 .../apache/commons/lang3/reflect/FieldUtils.java   |   6 +-
 .../apache/commons/lang3/reflect/MemberUtils.java  |  42 ++-
 .../apache/commons/lang3/reflect/MethodUtils.java  |  30 +-
 .../apache/commons/lang3/reflect/TypeUtils.java    |   2 +-
 .../org/apache/commons/lang3/stream/Streams.java   | 378 ++++++++++++++-------
 .../org/apache/commons/lang3/time/DateUtils.java   |   4 +-
 src/site/xdoc/index.xml                            |   4 +-
 .../apache/commons/lang3/ArrayUtilsAddTest.java    |   2 +-
 .../org/apache/commons/lang3/EnumUtilsTest.java    |  48 +++
 .../commons/lang3/StringUtilsContainsTest.java     |  26 +-
 .../lang3/StringUtilsEqualsIndexOfTest.java        |  13 +-
 .../org/apache/commons/lang3/StringUtilsTest.java  | 106 +++---
 .../org/apache/commons/lang3/Supplementary.java    |  49 +++
 ...eptionTest.java => CustomCheckedException.java} |  24 +-
 ...tionTest.java => CustomUncheckedException.java} |  24 +-
 ...va => UncheckedIllegalAccessExceptionTest.java} |   6 +-
 ...UncheckedReflectiveOperationExceptionTest.java} |   6 +-
 .../AnnotationTestFixture.java}                    |   7 +-
 .../lang3/function/BooleanConsumerTest.java        |   1 +
 .../lang3/function/FailableFunctionsTest.java      |  16 +-
 .../commons/lang3/function/MethodFixtures.java     | 222 ++++++++++++
 .../function/MethodInvokersBiConsumerTest.java     |  56 +++
 .../function/MethodInvokersBiFunctionTest.java     |  65 ++++
 .../MethodInvokersFailableBiConsumerTest.java      |  62 ++++
 .../MethodInvokersFailableBiFunctionTest.java      |  69 ++++
 .../MethodInvokersFailableFunctionTest.java        |  84 +++++
 ...ava => MethodInvokersFailableSupplierTest.java} |  25 +-
 .../lang3/function/MethodInvokersFunctionTest.java | 101 ++++++
 ...rsTest.java => MethodInvokersSupplierTest.java} |  27 +-
 .../org/apache/commons/lang3/function/Objects.java |  80 ++---
 .../apache/commons/lang3/function/ObjectsTest.java |  86 ++---
 .../commons/lang3/function/TriConsumerTest.java    |   2 +-
 .../{TriConsumerTest.java => TriFunctionTest.java} |  22 +-
 .../apache/commons/lang3/math/FractionTest.java    |   4 +-
 .../commons/lang3/reflect/TypeUtilsTest.java       |   2 +-
 .../apache/commons/lang3/stream/StreamsTest.java   |  74 ++--
 .../commons/lang3/time/DateUtilsRoundingTest.java  |  67 ++--
 51 files changed, 1772 insertions(+), 510 deletions(-)
 copy src/main/java/org/apache/commons/lang3/exception/{UncheckedInterruptedException.java => UncheckedIllegalAccessException.java} (86%)
 copy src/main/java/org/apache/commons/lang3/exception/{UncheckedInterruptedException.java => UncheckedReflectiveOperationException.java} (86%)
 create mode 100644 src/main/java/org/apache/commons/lang3/function/MethodInvokers.java
 create mode 100644 src/test/java/org/apache/commons/lang3/Supplementary.java
 copy src/test/java/org/apache/commons/lang3/exception/{UncheckedInterruptedExceptionTest.java => CustomCheckedException.java} (69%)
 copy src/test/java/org/apache/commons/lang3/exception/{UncheckedInterruptedExceptionTest.java => CustomUncheckedException.java} (68%)
 copy src/test/java/org/apache/commons/lang3/exception/{UncheckedExceptionTest.java => UncheckedIllegalAccessExceptionTest.java} (85%)
 copy src/test/java/org/apache/commons/lang3/exception/{UncheckedInterruptedExceptionTest.java => UncheckedReflectiveOperationExceptionTest.java} (84%)
 copy src/test/java/org/apache/commons/lang3/{reflect/testbed/Annotated.java => function/AnnotationTestFixture.java} (86%)
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodFixtures.java
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersBiConsumerTest.java
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersBiFunctionTest.java
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersFailableBiConsumerTest.java
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersFailableBiFunctionTest.java
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersFailableFunctionTest.java
 copy src/test/java/org/apache/commons/lang3/function/{SuppliersTest.java => MethodInvokersFailableSupplierTest.java} (55%)
 create mode 100644 src/test/java/org/apache/commons/lang3/function/MethodInvokersFunctionTest.java
 copy src/test/java/org/apache/commons/lang3/function/{SuppliersTest.java => MethodInvokersSupplierTest.java} (52%)
 copy src/test/java/org/apache/commons/lang3/function/{TriConsumerTest.java => TriFunctionTest.java} (76%)