Skip to content

Commit

Permalink
add migration guide and changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxdesmarais committed Feb 20, 2025
1 parent eaa1e04 commit 1eb4fea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
* Remove `fetchPaymentMethodNonces` methods and parser
* BraintreePayPal
* Update PayPal app URL query scheme from `paypal-app-switch-checkout` to `paypal`
* BraintreeAmericanExpress
* Update initalizer to `BTAmericanExpressClient(authorization:)`

## 6.27.0 (2025-01-23)
* BraintreePayPal
Expand Down
8 changes: 8 additions & 0 deletions V7_MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ _Documentation for v7 will be published to https://developer.paypal.com/braintre
1. [3D Secure](#3d-secure)]
1. [PayPal](#paypal)
1. [PayPal Native Checkout](#paypal-native-checkout)
1. [American Express](#american-express)

## Supported Versions

Expand Down Expand Up @@ -68,3 +69,10 @@ For the App Switch flow, you must update your `info.plist` with a simplified URL
## PayPal Native Checkout
The PayPal Native Checkout integration is no longer supported. Please remove it from your app and
use the [PayPal (web)](https://developer.paypal.com/braintree/docs/guides/paypal/overview/ios/v6) integration.

## American Express
Update initazlier for `BTAmericanExpressClient`:
```diff
- var amexClient = BTAmericanExpressClient(apiClient: apiClient)
+ var amexClient = BTAmericanExpressClient(authorization: authorization)
```

0 comments on commit 1eb4fea

Please sign in to comment.