Releases: tansengming/stripe-rails
Releases · tansengming/stripe-rails
Version 1.1.2
- Fixes js partial crash if stripe_js_version is not defined
Version 1.1.1
- Make stripe-ruby-mock an optional dependency (thanks @gaffneyc)
Version 1.1.0
Version 1.0.2
Version 1.0.1
- Fixes a bug with Stripe JS V3, i.e.
Stripe.setPublishableKey
is no longer a function. Thanks to @kartikluke for reporting this.
Version 1.0.0 (Breaky McBreakface)
- [BREAKING] Update to latest stripe events (thanks @hopsoft). Note that if you are using the
after_customer_card_created
,after_customer_card_updated
orafter_customer_card_deleted
callbacks, you MUST update them toafter_customer_source_created
,after_customer_source_updated
orafter_customer_source_deleted
respectively. You also need to start using Stripe API Version > 2015-02-18 or else the webhook might not work as expected. - [BREAKING] Updates to the latest version of Stripe JS. If you were using
stripe_javascript_tag
without specifying the version number, note that it will now default to Stripe JS v3. This version is incompatible with the previous default. - The gem will only be tested on Rails 4 and 5 from now on.
- Gem will henceforth only be tested on Ruby >= 2.1.9.
- add statement descriptor to plan attributes (thanks @jbender)
- Relax version constraint on the responders gem