Skip to content

Update dependency @stripe/react-stripe-js to v6#1111

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/stripe-react-stripe-js-6.x
Open

Update dependency @stripe/react-stripe-js to v6#1111
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/stripe-react-stripe-js-6.x

Conversation

@renovate

@renovate renovate Bot commented Mar 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@stripe/react-stripe-js ^3.7.0^6.0.0 age confidence

Release Notes

stripe/react-stripe-js (@​stripe/react-stripe-js)

v6.6.0

Compare Source

New features
  • AP for EwPI: Add CSE to base types in react-stripe-js (#​682)

v6.5.0

Compare Source

New features
  • Return event handler result from wrapper (#​681)
  • Expose onCancel prop on Checkout ExpressCheckoutElement (#​680)

v6.4.0

Compare Source

New features
  • Add availablepaymentmethodschange functionality (#​674)
Fixes
Changed

v6.3.0

Compare Source

New features

PR #​672

  • Added useCheckoutElements(): use this inside <CheckoutElementsProvider>.
  • Added useCheckoutForm(): use this inside <CheckoutFormProvider>.
  • Both new hooks throw a clear runtime error if called under the wrong provider.
  • useCheckout() is now deprecated in favor of the two hooks above. It will keep working under both providers for backward compatibility and is planned for removal in the next major release (v7.0.0).

v6.2.0

Compare Source

New features
  • add contactDetails element (#​670)
Changes
  • Bump lodash from 4.17.23 to 4.18.1 (#​669)

v6.1.0

Compare Source

New features
  • feat: add React components for Stripe Issuing Elements (#​664)
Changed
  • Bump picomatch from 2.2.2 to 2.3.2 (#​666)
  • Bump handlebars from 4.7.7 to 4.7.9 (#​668)

v6.0.0

Compare Source

Changed
  • Type updates for Dahlia (#​665)
  • Update react providers for the upcoming checkout sdk changes (#​658)
  • point to stripe-js V9 RC + rename to createEmbeddedCheckoutPage (#​660)

v5.6.1

Compare Source

Fixes
  • Fail fast if hub GitHub auth is invalid during publish (#​656)
Changed
  • Bump rollup from 4.22.4 to 4.59.0 (#​657)

v5.6.0

Compare Source

New features
Changed
  • Bump lodash from 4.17.21 to 4.17.23 (#​652)

v5.5.0

Compare Source

New features
  • Add full PaymentFormElement props and options support (#​654)
Fixes

v5.4.1

Compare Source

Changed
  • Bump min-document from 2.19.0 to 2.19.2 (#​644)
  • Bump js-yaml from 3.14.1 to 3.14.2 (#​641)

v5.4.0

Compare Source

New features
  • Add PaymentForm Element (#​643)
  • Removes beta comment from CurrencySelector element. (#​642)
  • Export disclosure components with typing (#​640)

v5.3.0

Compare Source

New features
  • Add Issuing disclosure React component (#​633)
Fixes
  • Add onChange to Shipping and Billing Address Element (#​637)
Changed
  • [EwCS]: Update storybook with loadActionsResult (#​632)

v5.2.0

Compare Source

  • v5.1.0
  • Add Financial Account for Platforms disclosure React component (#​630)
New features
Fixes
Changed

v5.0.0

Compare Source

Stripe.js Clover changelog: https://docs.stripe.com/changelog?category=stripejs

Fixes
  • export StripeCheckoutValue from checkout entrypoint #​625 (#​625)
Changed
  • Remove Clover element types (#​626)
  • [breaking] Update CheckoutProvider to use new shape (#​615)
  • [EwCS] update storybook example to v4 (#​622)

v4.0.2

Compare Source

Changed
  • Add release candidate logic to publish script (#​618)

v4.0.1

Compare Source

Fixes
  • Fix Shipping/BillingAddressElement Render (#​616)
Changed
  • Bump sha.js from 2.4.11 to 2.4.12 (#​610)
  • Bump cipher-base from 1.0.4 to 1.0.6 (#​614)

v4.0.0

Compare Source

Changed
  • [breaking] split out custom checkout imports (#​609)
  • Update useCheckout to return loading/error states (#​606)
Upgrade guidance
Import changes

Checkout paths changed:
Note: this only applies to Elements with Checkout Sessions API integrations.

import {useCheckout, PaymentElement} from '@&#8203;stripe/react-stripe-js';

to

import {useCheckout, PaymentElement} from '@&#8203;stripe/react-stripe-js/checkout';
useCheckout changes

Previously:

  • CheckoutProvider renders children if initCheckout succeeded, and null otherwise.
  • useCheckout() returns the SDK if initCheckout succeeded, and throws an error otherwise.

Now (>= v4.0.0):

  • CheckoutProvider renders children unconditionally.
  • useCheckout() returns a disjoint union describing the asynchronous state. The new return value now looks like:
type useCheckout = () =>
  | {type: 'loading'}
  | {
      type: 'success';
      checkout: CheckoutValue;
    }
  | {type: 'error'; error: {message: string}};

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch 2 times, most recently from e7492a2 to 1677233 Compare April 1, 2026 17:34
@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch from 1677233 to 3fa09cf Compare April 14, 2026 16:42
@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch 2 times, most recently from 3d0d1f2 to eb7b405 Compare April 29, 2026 11:07
@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch 2 times, most recently from df8c901 to 8b33e87 Compare May 18, 2026 17:12
@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch 2 times, most recently from b21c824 to 16e678a Compare May 29, 2026 21:59
@renovate renovate Bot force-pushed the renovate/stripe-react-stripe-js-6.x branch from 16e678a to 135e224 Compare June 2, 2026 22:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants