Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Stripe3DS2 to f0993d0eb37daa11301867b779dc72d05f687934 #1257

Merged
merged 2 commits into from
Jul 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## ??
* Removes querying the Advertising Identifier (IDFA).
* Adds customizable UIStatusBarStyle to STDSUICustomization.

## 16.0.1 2019-07-25
* Migrates Stripe3DS2.framework to libStripe3DS2.a, resolving an issue with App Store validation. [#1246]( https://github.com/stripe/stripe-ios/pull/1246)
* Fixes a crash in STPPaymentHandler. [#1244](https://github.com/stripe/stripe-ios/pull/1244)
Expand Down
Binary file modified InternalFrameworks/Stripe3DS2.bundle/Assets.car
Binary file not shown.
Binary file modified InternalFrameworks/libStripe3DS2.a
Binary file not shown.
12 changes: 11 additions & 1 deletion Stripe/PublicHeaders/STDSUICustomization.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ NS_ASSUME_NONNULL_BEGIN
*/
@property (nonatomic) STDSTextFieldCustomization *textFieldCustomization;

/// The primary background color of all UIViewControllers the SDK display. Defaults to white.
/**
The primary background color of all UIViewControllers the SDK display.
Defaults to white.
*/
@property (nonatomic) UIColor *backgroundColor;

/**
Expand Down Expand Up @@ -79,6 +82,13 @@ NS_ASSUME_NONNULL_BEGIN
*/
@property (nonatomic) STDSSelectionCustomization *selectionCustomization;


/**
The preferred status bar style for all UIViewControllers the SDK display.
Defaults to UIStatusBarStyleDefault.
*/
@property (nonatomic) UIStatusBarStyle preferredStatusBarStyle;

#pragma mark - Progress View

/**
Expand Down