aboutsummaryrefslogtreecommitdiff
path: root/src/changes
AgeCommit message (Collapse)Author
2022-03-07[LANG-1462] Use TimeZone from calendar in DateFormatUtils.Gary Gregory
Adapted from PR #863 by mbuiakova with: - No SpotBugs failure - Refactored common code - Moved new test method to proper location in test class.
2022-03-07Deprecate Validate#notNull(Object) in favor of usingGary Gregory
Objects#requireNonNull(Object, String). Note that the NPE message are now specific in which parameter is null instead of using a whole sentence to report what the exception class says, and less US English-centric.
2022-03-04Bump commons.pmd-impl.version from 6.42.0 to 6.43.0 #861Gary Gregory
2022-03-04Bump actions/checkout from 2 to 3 #859Gary Gregory
2022-02-25Bump maven-pmd-plugin from 3.15.0 to 3.16.0 #858Gary Gregory
2022-02-24Bump org.junit-pioneer:junit-pioneer from 1.5.0 to 1.6.1.Gary Gregory
2022-02-24Bump maven-javadoc-plugin from 3.3.1 to 3.3.2.Gary Gregory
2022-02-24Add JavaVersion for Java 18 since a release candidate is available.Gary Gregory
2022-01-30StrBuilder.StrBuilderReader.skip(long): Throw an exception when anGary Gregory
implicit narrowing conversion in a compound assignment would result in information loss or a numeric error such as an overflows.
2022-01-30Throw an exception when an implicit narrowing conversion in a compoundGary Gregory
assignment would result in information loss or a numeric error such as an overflows.
2021-12-29Bump checkstyle from 9.2 to 9.2.1 #843.Gary Gregory
2021-12-28Add support for detection of Aarch64.Gary Gregory
- Add Processor.Type.AARCH_64. - Add Processor.isAarch64(). - Update ArchUtils.getProcessor(String) for "aarch64".
2021-12-24Bump jmh.version from 1.33 to 1.34 #842.Gary Gregory
2021-12-08Add ArrayUtils.containsAny(Object[], Object...).Gary Gregory
Primitive versions are TODOs.
2021-12-08ArrayUtils.toPrimitive(Boolean...) null array elements map to false,Gary Gregory
like Boolean.parseBoolean(null) and its callers return false. This also happens to address issues with catching NPEs reported by Spotbugs 4.5.1 .
2021-12-08Bump animal-sniffer-maven-plugin from 1.19 to 1.20.Gary Gregory
2021-12-08Bump maven-bundle-plugin from 5.1.1 to 5.1.2.Gary Gregory
Pick up maven-bundle-plugin from parent.
2021-12-08Add constructors that require non-null inputs inGary Gregory
org.apache.commons.lang3.tuple. - Add ImmutablePair.ofNonNull(L, R) - Add ImmutableTriple.ofNonNull(L, M, R) - Add MutablePair.ofNonNull(L, R) - Add MutableTriple.ofNonNull(L, M, R) - Add Pair.ofNonNull(L, R) - Add Triple.ofNonNull(L, M, R)
2021-12-04Fix NullPointerException in ThreadUtils.getSystemThreadGroup() when theGary Gregory
current thread is stopped.
2021-12-03Add Streams.instancesOf(Class, Collection).Gary Gregory
2021-11-30Bump commons.japicmp.version 0.15.3 -> 0.15.4.Gary Gregory
2021-11-30Add FluentBitSet.Gary Gregory
2021-11-29Bump pmd-java8 from 6.40.0 to 6.41.0 #837.Gary Gregory
2021-11-29Bump checkstyle from 9.1 to 9.2.Gary Gregory
2021-11-29Normalize descriptions.Gary Gregory
2021-11-29Move entry.Gary Gregory
2021-11-29Bump junit-bom from 5.8.1 to 5.8.2 #836.Gary Gregory
2021-11-27Bump biz.aQute.bndlib from 6.0.0 to 6.1.0dependabot[bot]
Bumps [biz.aQute.bndlib](https://github.com/bndtools/bnd) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/bndtools/bnd/releases) - [Changelog](https://github.com/bndtools/bnd/blob/master/docs/ADDING_RELEASE_DOCS.md) - [Commits](https://github.com/bndtools/bnd/compare/6.0.0...6.1.0) --- updated-dependencies: - dependency-name: biz.aQute.bnd:biz.aQute.bndlib dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-24Bump spotbugs-maven-plugin from 4.4.2.2 to 4.5.0.0dependabot[bot]
Bumps [spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.4.2.2 to 4.5.0.0. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.4.2.2...spotbugs-maven-plugin-4.5.0.0) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-24Bump actions/cache from 2.1.6 to 2.1.7dependabot[bot]
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-19Add EnumUtils.getEnumMap(Class, Function). #730.Gary Gregory
Provides a different implementation than #730.
2021-11-18Add Streams.failableStream(Collection) and deprecate misnamedGary Gregory
stream(Collection). Add Streams.failableStream(Stream) and deprecate misnamed stream(Stream).
2021-11-18Add Streams.nullSafeStream(Collection).Gary Gregory
Add Streams.toStream(Collection).
2021-11-17Use Set instead of List for checking the contains() method #734.Gary Gregory
2021-11-17Use final. #816Gary Gregory
2021-11-17Add MethodInvokers.Gary Gregory
2021-11-16Add UncheckedIllegalAccessException.Gary Gregory
2021-11-15Add and use ClassUtils.isPublic(Class).Gary Gregory
2021-11-15Bump junit-pioneer from 1.4.2 to 1.5.0 #832.Gary Gregory
2021-11-13Add UncheckedReflectiveOperationException.Gary Gregory
2021-11-12Bump spotbugs-maven-plugin from 4.4.1 to 4.4.2.2 #822Gary Gregory
2021-11-12Bump actions/checkout from 2.3.5 to 2.4.0 #825.Gary Gregory
2021-11-03Bump checkstyle from 9.0.1 to 9.1dependabot[bot]
Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 9.0.1 to 9.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-9.0.1...checkstyle-9.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-10-31[LANG-1664] ChangelogBruno P. Kinoshita
2021-10-25Bump spotbugs-maven-plugin from 4.4.2 to 4.4.2.2.Gary Gregory
2021-10-25Bump spotbugs-maven-plugin from 4.4.1 to 4.4.2.Gary Gregory
2021-10-25Bump maven-javadoc-plugin from 3.3.0 to 3.3.1.Gary Gregory
2021-10-25Add ComparableUtils.max(A, A) and ComparableUtils.min(A, A).Gary Gregory
2021-10-22Bump actions/checkout from 2.3.4 to 2.3.5 #819.Gary Gregory
2021-10-17LANG-1659 - Add null-safe ObjectUtils.isArray() #754.Gary Gregory