Skip to content

Commit

Permalink
Update changelog, migrating
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-stripe committed Jul 19, 2019
1 parent 69dbe7b commit 0d1bd85
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 16.0.0 2019-??-??
## 16.0.0 2019-07-18
* Migrates STPPaymentCardTextField.cardParams property type from STPCardParams to STPPaymentMethodCardParams
* STPAddCardViewController:
* Migrates addCardViewController:didCreateSource:completion: and addCardViewController:didCreateToken:completion: to addCardViewController:didCreatePaymentMethod:completion
Expand All @@ -14,6 +14,8 @@
* Deprecates `STPPaymentIntentAction`, replaced by `STPIntentAction`
* Deprecates `STPPaymentIntentActionType`, replaced by `STPIntentActionType`
* Deprecates `STPPaymentIntentActionRedirectToURL`, replaced by `STPIntentActionTypeRedirectToURL`
* Adds support for SetupIntents. See https://stripe.com/docs/payments/cards/saving-cards#saving-card-without-payment
* Adds support for 3DS2 authentication. See https://stripe.com/docs/mobile/ios/authentication

## 15.0.1 2019-04-16
* Adds configurable support for JCB (Apple Pay). [#1158](https://github.com/stripe/stripe-ios/pull/1158)
Expand Down
5 changes: 2 additions & 3 deletions MIGRATING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Migration Guides

### Migrating from versions < 16.0.0
* The following have been migrated from Source/Token to PaymentMethod:
* The following have been migrated from Source/Token to PaymentMethod. If you have integrated with any of these things, you must also migrate to PaymentMethod and the Payment Intent API. See https://stripe.com/docs/payments/payment-methods#transitioning. See CHANGELOG.md for more details.
* UI components
* STPPaymentCardTextField
* STPAddCardViewController
Expand All @@ -13,8 +13,7 @@
* STPPaymentResult
* Standard Integration example project
* `STPPaymentIntentAction*` types have been renamed to `STPIntentAction*`. Xcode should offer a deprecation warning & fix-it to help you migrate.

If you have integrated with any of these things, you must also migrate to PaymentMethod and the Payment Intent API. See https://stripe.com/docs/payments/payment-methods#transitioning. See CHANGELOG.md for more details.
* `STPPaymentHandler` supports 3DS2 authentication, and is recommended instead of `STPRedirectContext`. See https://stripe.com/docs/mobile/ios/authentication

### Migrating from versions < 15.0.0
* "PaymentMethod" has a new meaning: https://stripe.com/docs/api/payment_methods/object. All things referring to "PaymentMethod" have been renamed to "PaymentOption" (see CHANGELOG.md for the full list). `STPPaymentMethod` and `STPPaymentMethodType` have been rewritten to match this new API object.
Expand Down

0 comments on commit 0d1bd85

Please sign in to comment.