Skip to content

Build(deps): Bump com.reown:android-bom from 1.6.13 to 1.6.14#6529

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/com.reown-android-bom-1.6.14
Open

Build(deps): Bump com.reown:android-bom from 1.6.13 to 1.6.14#6529
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/com.reown-android-bom-1.6.14

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Bumps com.reown:android-bom from 1.6.13 to 1.6.14.

Release notes

Sourced from com.reown:android-bom's releases.

BOM_1.6.14

Release version 1.6.14

Branch: master

⚠️ Breaking change — ComplianceFailed error removed

The pay module no longer special-cases sanctioned wallets. The ComplianceFailed error has been removed from the pay error types. Sanctioned-wallet / compliance responses now surface through the generic error path instead.

This change comes in via the bump to Yttrium 0.10.58.

Removed case (Kotlin):

  • Pay.GetPaymentOptionsError.ComplianceFailed

A sanctioned wallet that previously surfaced ComplianceFailed now surfaces a generic error (e.g. Http / InternalError). No compliance-specific handling remains in the SDK.

Migration

Remove any when/is branch (or catch) that references ComplianceFailed and rely on your generic error handling instead:

// Before
when (val error = result.error) {
    is Pay.GetPaymentOptionsError.ComplianceFailed -> showComplianceBlocked(error.message)
    is Pay.GetPaymentOptionsError.Http -> showGenericError(error.message)
    else -> showGenericError(error.message)
}
// After — drop the ComplianceFailed branch; it now flows into the generic handler
when (val error = result.error) {
is Pay.GetPaymentOptionsError.Http -> showGenericError(error.message)
else -> showGenericError(error.message)
}

You only need changes if your code explicitly references ComplianceFailed (an is Pay.GetPaymentOptionsError.ComplianceFailed -> branch, or a catch on that type). Code that handles only the base error / generic path needs no changes.

The equivalent removal shipped in Yttrium 0.10.58 (Swift in 0.10.57).


Full Changelog: reown-com/reown-kotlin@BOM_1.6.13...BOM_1.6.14

... (truncated)

Commits

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 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)

Bumps [com.reown:android-bom](https://github.com/reown-com/reown-kotlin) from 1.6.13 to 1.6.14.
- [Release notes](https://github.com/reown-com/reown-kotlin/releases)
- [Commits](reown-com/reown-kotlin@BOM_1.6.13...BOM_1.6.14)

---
updated-dependencies:
- dependency-name: com.reown:android-bom
  dependency-version: 1.6.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 23, 2026
Copilot AI review requested due to automatic review settings July 23, 2026 21:38
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 23, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Copilot wasn't able to review any files in this pull request.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

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.

1 participant