freecodecamp
freecodecamp copied to clipboard
chore(deps): bump react-stripe-elements from 2.0.3 to 6.1.2 in /client
Bumps react-stripe-elements from 2.0.3 to 6.1.2.
Release notes
Sourced from react-stripe-elements's releases.
v6.1.2
Bug Fixes
- Fix a bug where the
elements
prop is not injected byinjectStripe
when using asyncStripe
and mounting only aCardCvcElement
orCardExpiry
Element. (#519 )v6.1.1
Changes
- Register package version with Stripe instance (#512)
v6.1.0
New Features
Added the
auBankAccount
andfpxBank
elements. These elements will not have automatic Element detection/insertion. To use them you will need to useelements.getElement
and pass them directly to other Stripe.js methods (e.g.stripe.confirmFpxPayment
):const FpxForm = injectStripe(({stripe, elements}) => { const handleSubmit = async (event) => { event.preventDefault(); const {error} = await stripe.confirmFpxPayment('{{CLIENT_SECRET}}', { payment_method: { fpx: elements.getElement('fpxBank'), }, }); }
return ( <form onSubmit={handleSubmit}> <FpxBankElement accountHolderType="individual" /> <button>Pay</button> </form> ); });
v6.0.1
Version bump that fixes some typos, no changes.
v6.0.0
New Features
injectStripe
now injects a reference to the Elements instance created by<Elements>
as the propelements
.The primary reason you would want an Elements instance is to use
elements.getElement()
, which provides an easy way to get a reference to an Element. You will need to get a reference to an Element to useconfirmCardPayment
,confirmCardSetup()
, orcreatePaymentMethod()
.Note that the old API for
createPaymentMethod
will continue to work and provide automatic element injection, but we are updating documentation and examples to use the new argument shape:</tr></table>
... (truncated)
Changelog
Sourced from react-stripe-elements's changelog.
Changelog
react-stripe-elements
adheres to Semantic Versioning.v6.1.1 - 2020-04-01
Changes
- Register package version with Stripe instance (#512)
v6.1.0 - 2020-02-14
New Features
Added the
auBankAccount
andfpxBank
elements. These elements will not have automatic Element detection/insertion. To use them you will need to useelements.getElement
and pass them directly to other Stripe.js methods (e.g.stripe.confirmFpxPayment
):const FpxForm = injectStripe(({stripe, elements}) => { const handleSubmit = async (event) => { event.preventDefault(); const {error} = await stripe.confirmFpxPayment('{{CLIENT_SECRET}}', { payment_method: { fpx: elements.getElement('fpxBank'), }, }); };
return ( <form onSubmit={handleSubmit}> <FpxBankElement accountHolderType="individual" /> <button>Pay</button> </form> ); });
v6.0.1 - 2019-11-13
Version bump that fixes some typos, no changes.
v6.0.0 - 2019-11-13
New Features
injectStripe
now injects a reference to the Elements instance created by<Elements>
as the propelements
.
... (truncated)
Commits
53814ea
v6.1.2809258a
register all elements (#519)bcd8f80
Add v6.1.1 changelog notes1d39eeb
v6.1.1828930c
Register package version with Stripe instance (#512)550b1c3
Remove React Stripe.js beta note4d4d1b0
Add notification about React Stripe.js (#507)16719a5
add v6.1.0 to changelog215a9ea
v6.1.025765d1
Merge pull request #505 from stripe/add-auBankAccount-and-fpxBank-elements- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by dweedon-stripe, a new releaser for react-stripe-elements since your current version.
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 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)
The following labels could not be found: dependabot
, platform: client
.