Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 12, 2025

Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.18.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 12, 2025
newtork added 2 commits July 31, 2025 10:41
…ndency-bundles/bom/org.apache.commons-commons-lang3-3.18.0
Comment on lines 123 to 125
methodName = StringUtils.removeStart(methodName, "to");
methodName = StringUtils.removeStart(methodName, "_");
methodName = removeStartIgnoreCase(methodName, "to");
methodName = removeStartIgnoreCase(methodName, "_");
Copy link
Contributor

@newtork newtork Jul 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately we cannot use the suggested new method, since they have just been introduced with their latest update.

That means any "updated" / non-deprecated API would risk a runtime exceptions for users who still use an older version of commons-lang3 with Cloud SDK 5.21.0

Options have been:

  • suppress deprecation warning
  • use suggest new API (incompatibility risk)
  • use custom code to replace deprecated API (I chose this option)

@@ -58,7 +58,7 @@ public static boolean requiresUserTokenExchange( @Nonnull final DestinationPrope
requiresUserTokenExchange( @Nonnull final AuthenticationType authType, @Nullable final String systemUser )
{
// Handle special case for SAML Bearer Assertion and SAP Assertion SSO
if( !StringUtils.isBlank(systemUser)
if( !StringUtils.isBlankOrEmpty(systemUser)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Comment)

StringUtils isEmpty isBlank
null true true
"" true true
" " false true

@newtork newtork enabled auto-merge (squash) July 31, 2025 13:43
@newtork newtork merged commit d283f4c into main Jul 31, 2025
14 checks passed
@newtork newtork deleted the dependabot/maven/dependency-bundles/bom/org.apache.commons-commons-lang3-3.18.0 branch July 31, 2025 13:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants