forked from apache/commons-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] master from apache:master #531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pull
wants to merge
3,473
commits into
scope-demo:master
Choose a base branch
from
apache:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Add SystemProperties.getInt(Class, String, IntSupplier) - Add SystemProperties.getLong(Class, String, LongSupplier)
- org.apache.commons.lang3.SystemProperties.AWT_TOOLKIT - org.apache.commons.lang3.SystemProperties.JAVA_AWT_FONTS - org.apache.commons.lang3.SystemProperties.JAVA_AWT_GRAPHICSENV - org.apache.commons.lang3.SystemProperties.JAVA_AWT_HEADLESS - org.apache.commons.lang3.SystemProperties.JAVA_AWT_PRINTERJOB - org.apache.commons.lang3.SystemProperties.JAVA_COMPILER - org.apache.commons.lang3.SystemProperties.JAVA_ENDORSED_DIRS - org.apache.commons.lang3.SystemProperties.JAVA_EXT_DIRS Deprecate methods for obsolete system propery constant - org.apache.commons.lang3.SystemProperties.getAwtToolkit() - org.apache.commons.lang3.SystemProperties.getJavaAwtFonts() - org.apache.commons.lang3.SystemProperties.getJavaAwtGraphicsenv() - org.apache.commons.lang3.SystemProperties.getJavaAwtHeadless() - org.apache.commons.lang3.SystemProperties.getJavaAwtPrinterjob() - org.apache.commons.lang3.SystemProperties.getJavaCompiler() - org.apache.commons.lang3.SystemProperties.getJavaEndorsedDirs() - org.apache.commons.lang3.SystemProperties.getJavaExtDirs() - org.apache.commons.lang3.SystemUtils.isJavaAwtHeadless()
- Deprecate constants for obsolete system property SystemUtils.JAVA_AWT_FONTS - Deprecate constants for obsolete system property SystemUtils.JAVA_AWT_GRAPHICSENV - Deprecate constants for obsolete system property SystemUtils.JAVA_AWT_HEADLESS - Deprecate constants for obsolete system property SystemUtils.JAVA_AWT_PRINTERJOB - Deprecate constants for obsolete system property SystemUtils.JAVA_COMPILER - Deprecate constants for obsolete system property SystemUtils.JAVA_ENDORSED_DIRS - Deprecate constants for obsolete system property SystemUtils.JAVA_EXT_DIRS
Pick up #1449 and complete the change
Replace Java 25-ea with Java 26-ea
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.7.3 to 4.7.4. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](actions/dependency-review-action@595b5ae...31c9f17) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-version: 4.7.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.3 to 3.30.4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@192325c...303c0ae) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…s usage in getFirstEnum() (#1454) * Optimize ObjectToStringComparator.compare() method * Fix inverted logic in isEnum() method and correct its usage in getFirstEnum()
usage in getFirstEnum() #1454
The JDK ticket https://bugs.openjdk.org/browse/JDK-8326627 says: From https://docs.oracle.com/javase%2F9%2Fdocs%2Fapi%2F%2F/java/lang/Float.html#valueOf-java.lang.String-, https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.10.2, and https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-Digits, fullwidth Unicode digits are not applicable. Moved to JDK as an enhancement. Tested on Java 8, 11, 17, 21, and 25
The JDK ticket https://bugs.openjdk.org/browse/JDK-8326627 says: From https://docs.oracle.com/javase%2F9%2Fdocs%2Fapi%2F%2F/java/lang/Float.html#valueOf-java.lang.String-, https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.10.2, and https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-Digits, fullwidth Unicode digits are not applicable. Moved to JDK as an enhancement. Tested on Java 8, 11, 17, 21, and 25
digits for inputs with a decimal point
…est and RandomStringUtils (#1528)
…vadoc reference in RandomStringUtils
…n input setStrs is null (#1530) * Fix CharSet.getInstance(final String... setStrs) returns null instead of EMPTY when input setStrs is null * Remove unused import assertNull from CharSetTest Removed unused import statement for assertNull. --------- Co-authored-by: Gary Gregory <garydgregory@users.noreply.github.com>
input setStrs is null #1530
- StringBuilder Performance Gain: 160-205% improvement (2-3x faster) - StringBuffer Performance Gain: 300-4,250% improvement (4-44x faster) - String: ~1-2% improvement (essentially identical) - This change was suggested by Claude Sonnet 4.5
- Add SystemUtils.IS_JAVA_27 - Available now: OpenJDK JDK 27 Early-Access Builds
- Add SystemUtils.IS_JAVA_27 - Available now: OpenJDK JDK 27 Early-Access Builds
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )