-
#1837 Better type hints in your editor!!
- Added type hints for method parameters
- Improved type hints for resource properties that are not primitive types. Take for example, the invoice settings in Customer resource. Previously, you could not reference inner fields like
custom_fields
oncustomer->invoice_settings
without PHPStan complaining. This is now fixed.
-
#1818 Support for APIs in the new API version 2025-03-31.basil
This release changes the pinned API version to
2025-03-31.basil
.⚠️ Breaking changes due to changes in the Stripe API
Please review details for the breaking changes and alternatives in the Stripe API changelog before upgrading.
- Remove support for resources
UsageRecordSummary
andUsageRecord
- Remove support for
create
method on resourceUsageRecord
- Remove support for
all
method on resourceUsageRecordSummary
- Remove support for
upcomingLines
andupcoming
methods on resourceInvoice
- Remove support for
invoice
onCharge
andPaymentIntent
- Remove support for
shipping_details
onCheckout.Session
- Remove support for
refund
onCreditNote
- Remove support for
tax_amounts
onCreditNoteLineItem
,CreditNote
, andInvoiceLineItem
- Remove support for
amount_excluding_tax
andunit_amount_excluding_tax
onCreditNoteLineItem
andInvoiceLineItem
- Remove support for
application_fee_amount
,charge
,paid_out_of_band
,paid
,payment_intent
,quote
,subscription
,subscription_details
,subscription_proration_date
,tax
,total_tax_amounts
, andtransfer_data
onInvoice
- Remove support for
discount
onInvoice
andSubscription
- Remove support for
invoice_item
,proration_details
,proration
,tax_rates
, andtype
onInvoiceLineItem
- Remove support for
plan
,price
, andsubscription_item
onInvoiceItem
andInvoiceLineItem
- Remove support for
subscription
,unit_amount_decimal
, andunit_amount
onInvoiceItem
- Remove support for
aggregate_usage
onPlan
- Remove support for
billing_thresholds
onSubscriptionItem
andSubscription
- Remove support for
current_period_end
andcurrent_period_start
onSubscription
⚠️ Other Breaking changes in the SDK
- #1826 configure max_nextwork_retries at the client level
- Allow setting
maxNetworkRetries
at theStripeClient
level via a new argument to theRequestOptions
constructor- ⚠️ (potentially breaking) a client's configuration for
maxNetworkRetries
is set during client initialization. Subsequent calls toStripe::setMaxNetworkRetries()
after client creation won't affect that client.
- ⚠️ (potentially breaking) a client's configuration for
- Allow setting
maxNetworkRetries
per-request via themax_network_retries
config argument. This works for both the service and resource based patterns. In both cases, an explicitly passed value takes precedence over the global (or client) value.
- Allow setting
- #1835 Removed the protected method _searchResource as it is no longer used
- ⚠️ Removed
_searchResource
method andSearch
trait. Use the publicsearch
method onCharge
,Customer
,Invoice
,PaymentIntent
,Price
,Product
, andSubscription
resource.
- ⚠️ Removed
- #1832 Added requestCollection and requestSearchResult to StripeClientInterface
- ⚠️ Added
requestSearchResult
,requestCollection
toStripeClientInterface
. Developers building custom StripeClient will now have to implement these new methods.- Refer to our implementation in BaseStripeClient for guidance.
- ⚠️ Added
Additions
- Add support for new resource
InvoicePayment
- Add support for
all
andretrieve
methods on resourceInvoicePayment
- Add support for new values
forwarding_api_retryable_upstream_error
andsetup_intent_mobile_wallet_unsupported
on enumsInvoice.last_finalization_error.code
,PaymentIntent.last_payment_error.code
,SetupAttempt.setup_error.code
,SetupIntent.last_setup_error.code
, andStripeError.code
- Add support for new values
stripe_balance_payment_debit_reversal
andstripe_balance_payment_debit
on enumBalanceTransaction.type
- Add support for new value
last
on enumBilling.Meter.default_aggregation.formula
- Add support for
presentment_details
onCharge
,Checkout.Session
,PaymentIntent
, andRefund
- Add support for
optional_items
onCheckout.Session
andPaymentLink
- Add support for
permissions
onCheckout.Session
- Add support for new value
custom
on enumCheckout.Session.ui_mode
- Add support for new values
billie
,nz_bank_account
, andsatispay
on enumsConfirmationToken.payment_method_preview.type
andPaymentMethod.type
- Add support for
refunds
onCreditNote
- Add support for
total_taxes
onCreditNote
andInvoice
- Add support for
taxes
onCreditNoteLineItem
andInvoiceLineItem
- Add support for
checkout_session
onCustomerBalanceTransaction
- Add support for new values
checkout_session_subscription_payment_canceled
andcheckout_session_subscription_payment
on enumCustomerBalanceTransaction.type
- Add support for new value
invoice.overpaid
on enumEvent.type
- Add support for
amount_overpaid
,confirmation_secret
, andpayments
onInvoice
- Add support for
parent
onInvoiceItem
,InvoiceLineItem
, andInvoice
- Add support for new values
klarna
andnz_bank_account
on enumsInvoice.payment_settings.payment_method_types
andSubscription.payment_settings.payment_method_types
- Add support for
pricing
onInvoiceItem
andInvoiceLineItem
- Add support for new value
network_fallback
on enumIssuing.Authorization.request_history[].reason
- Add support for new value
expired
on enumIssuing.Authorization.status
- Add support for new value
expired
on enumPaymentIntent.cancellation_reason
- Add support for new values
billie
andsatispay
on enumPaymentLink.payment_method_types
- Add support for
billie
,nz_bank_account
, andsatispay
onPaymentMethodConfiguration
andPaymentMethod
- Add support for new value
canceled
on enumReview.closed_reason
- Add support for
current_period_end
andcurrent_period_start
onSubscriptionItem
- Add support for
wifi
onTerminal.Configuration
- Remove support for resources