Skip to content

Commit 297320b

Browse files
cgrindel-self-hosted-renovate[bot]cgrindelmergify[bot]
authored
chore(deps): update dependency stripe/stripe-ios-spm to from: "24.11.1" (#1585)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [stripe/stripe-ios-spm](https://redirect.github.com/stripe/stripe-ios-spm) | minor | `from: "24.9.0"` -> `from: "24.11.1"` | --- ### Release Notes <details> <summary>stripe/stripe-ios-spm (stripe/stripe-ios-spm)</summary> ### [`v24.11.1`](https://redirect.github.com/stripe/stripe-ios-spm/releases/tag/24.11.1) [Compare Source](https://redirect.github.com/stripe/stripe-ios-spm/compare/24.11.0...24.11.1) #### 24.11.1 2025-04-14 ##### PaymentSheet - \[Added] Added support for PayNow and PromptPay to Embedded Payment Element (private preview). - \[Fixed] Fixed theming issues in the native Link experience (private preview). ### [`v24.11.0`](https://redirect.github.com/stripe/stripe-ios-spm/releases/tag/24.11.0) [Compare Source](https://redirect.github.com/stripe/stripe-ios-spm/compare/24.10.0...24.11.0) #### 24.11.0 2025-04-07 ##### PaymentSheet - \[Added] Added `rowSelectionBehavior` API to Embedded Payment Element (private preview). - \[Changed] The native Link experience (private preview) is now available as a payment method even if you collect billing details via `billingDetailsCollectionConfiguration`. ### [`v24.10.0`](https://redirect.github.com/stripe/stripe-ios-spm/releases/tag/24.10.0) [Compare Source](https://redirect.github.com/stripe/stripe-ios-spm/compare/24.9.0...24.10.0) #### 24.10.0 2025-03-31 ##### PaymentSheet - \[Added] Added `LinkConfiguration` to allow control over Link in PaymentSheet. - \[Fixed] Improved reliability of expiration date detection when scanning cards. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45NC4xIiwidXBkYXRlZEluVmVyIjoiMzguOTQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Co-authored-by: Chuck Grindel <[email protected]> Co-authored-by: Chuck Grindel <[email protected]> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent bf9476d commit 297320b

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

examples/stripe_example/Package.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"kind" : "remoteSourceControl",
66
"location" : "https://github.com/stripe/stripe-ios-spm.git",
77
"state" : {
8-
"revision" : "8ed42915acecf4910cc3da4d61d1866d3e5ec40a",
9-
"version" : "24.11.1"
8+
"revision" : "eb2be6cd414ed575598561c96d929fa379ab62ac",
9+
"version" : "24.12.0"
1010
}
1111
}
1212
],

examples/stripe_example/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
dependencies: [
88
.package(
99
url: "https://github.com/stripe/stripe-ios-spm.git",
10-
from: "24.9.0"
10+
from: "24.11.1"
1111
),
1212
]
1313
)

examples/stripe_example/PaymentSheet/PaymentSheetExample/CustomerSheetTestPlaygroundController.swift

-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ class CustomerSheetTestPlaygroundController: ObservableObject {
143143
case .allowVisa:
144144
configuration.cardBrandAcceptance = .allowed(brands: [.visa])
145145
}
146-
configuration.updatePaymentMethodEnabled = settings.paymentMethodUpdate == .enabled
147146
return configuration
148147
}
149148

examples/stripe_example/PaymentSheet/PaymentSheetExample/PlaygroundController.swift

+1-3
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class PlaygroundController: ObservableObject {
190190
configuration.cardBrandAcceptance = .allowed(brands: [.visa])
191191
}
192192

193-
configuration.updatePaymentMethodEnabled = settings.paymentMethodUpdate == .enabled
193+
// configuration.updatePaymentMethodEnabled = .enabled
194194

195195
switch settings.style {
196196
case .automatic:
@@ -290,8 +290,6 @@ class PlaygroundController: ObservableObject {
290290
configuration.cardBrandAcceptance = .allowed(brands: [.visa])
291291
}
292292

293-
configuration.updatePaymentMethodEnabled = settings.paymentMethodUpdate == .enabled
294-
295293
return configuration
296294
}
297295

0 commit comments

Comments
 (0)