Skip to content
Open
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
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,34 @@ This release changes the pinned API version to 2026-06-24.preview.
* Add support for `cancel_pricing_lines` and `proration_behavior` on `V2::Billing::ContractCancelParams`
* Add support for event notifications `V2MoneyManagementDebitDisputeFailedEvent`, `V2MoneyManagementDebitDisputeSubmittedEvent`, and `V2MoneyManagementDebitDisputeSucceededEvent` with related object `V2::MoneyManagement::DebitDispute`

## 19.3.0 - 2026-06-24
This release changes the pinned API version to 2026-06-24.dahlia.

* [#1896](https://github.com/stripe/stripe-ruby/pull/1896) Update generated code
* Add support for `release_details` on `Reserve::Hold`
* Change `Billing::CreditGrant.priority` to be required
* Add support for `buyer_id` on `Charge::PaymentMethodDetail::Bizum`, `ConfirmationToken::PaymentMethodPreview::Bizum`, `ConfirmationToken::PaymentMethodPreview::Blik`, `PaymentAttemptRecord::PaymentMethodDetail::Bizum`, `PaymentMethod::Bizum`, `PaymentMethod::Blik`, and `PaymentRecord::PaymentMethodDetail::Bizum`
* Add support for `transaction_link_id` on `Charge::PaymentMethodDetail::Card`
* Add support for `fingerprint` on `Charge::PaymentMethodDetail::Pix`, `ConfirmationToken::PaymentMethodPreview::Pix`, `PaymentMethod::Pix`, and `SetupAttempt::PaymentMethodDetail::Pix`
* Add support for `sunbit` on `Checkout::Session::PaymentMethodOption`, `Checkout::SessionCreateParams::PaymentMethodOption`, `PaymentIntent::PaymentMethodOption`, `PaymentIntentConfirmParams::PaymentMethodOption`, `PaymentIntentCreateParams::PaymentMethodOption`, and `PaymentIntentUpdateParams::PaymentMethodOption`
* Add support for `billing_cycle_anchor_config` on `Checkout::SessionCreateParams::SubscriptionDatum`
* Add support for `wechat_pay` on `Checkout::Session::PaymentMethodOption`
* Add support for `mastercard_compliance` on `Dispute::Evidence::EnhancedEvidence`, `Dispute::EvidenceDetail::EnhancedEligibility`, and `DisputeUpdateParams::Evidence::EnhancedEvidence`
* Add support for `status_details` on `FinancialConnections::Account`
* ⚠️ Remove support for `stored_credential_usage` on `PaymentAttemptRecord::PaymentMethodDetail::Card` and `PaymentRecord::PaymentMethodDetail::Card`
* ⚠️ Change `PaymentAttemptRecord::PaymentMethodDetail::Card.description` and `PaymentRecord::PaymentMethodDetail::Card.description` to be optional
* ⚠️ Change `PaymentAttemptRecord::PaymentMethodDetail::Card.iin` and `PaymentRecord::PaymentMethodDetail::Card.iin` to be optional
* ⚠️ Change `PaymentAttemptRecord::PaymentMethodDetail::Card.issuer` and `PaymentRecord::PaymentMethodDetail::Card.issuer` to be optional
* Add support for `setup_future_usage` on `PaymentIntent::PaymentMethodOption::Satispay`, `PaymentIntentConfirmParams::PaymentMethodOption::Satispay`, `PaymentIntentCreateParams::PaymentMethodOption::Satispay`, and `PaymentIntentUpdateParams::PaymentMethodOption::Satispay`
* Change `PaymentRecordReportRefundParams.refunded` to be optional
* Add support for `satispay` on `SetupAttempt::PaymentMethodDetail`
* Add support for `custom_fields`, `description`, and `footer` on `Subscription::InvoiceSetting`, `SubscriptionCreateParams::InvoiceSetting`, and `SubscriptionUpdateParams::InvoiceSetting`
* Add support for `payment_method_options` and `payment_method` on `TopupCreateParams`
* Add support for `mode` on `V2::Commerce::ProductCatalogImport`
* Add support for `sunbit_payments` on `V2::Core::Account::Configuration::Merchant::Capability`, `V2::Core::AccountCreateParams::Configuration::Merchant::Capability`, and `V2::Core::AccountUpdateParams::Configuration::Merchant::Capability`
* Add support for `crypto_money_manager` and `money_manager` on `V2::Core::AccountUpdateParams::Identity::Attestation::TermsOfService`
* ⚠️ Remove support for `crypto_storer` and `storer` on `V2::Core::AccountUpdateParams::Identity::Attestation::TermsOfService`

## 19.3.0-alpha.4 - 2026-06-17
* [#1878](https://github.com/stripe/stripe-ruby/pull/1878) Update generated code for private-preview
* Add support for `retrieve` method on resource `Radar::CustomerEvaluation`
Expand Down
2 changes: 1 addition & 1 deletion CODEGEN_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7dcbffa9da7d760e864ed104012ca01ad08d6f8a
bff9fc945bc9edc0afe143d62d3cc377ea8f5f1e
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def self.field_remappings
attr_reader :receipt_url
# A nested object containing information about the destination of the InboundTransfer.
attr_reader :to
# A list of history objects, representing changes in the state of the InboundTransfer.
# A list of history objects, representing changes in the state of the InboundTransfer. The most recent entry's type indicates the current status of the InboundTransfer.
attr_reader :transfer_history

def self.inner_class_types
Expand Down
2 changes: 1 addition & 1 deletion rbi/stripe.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -103232,7 +103232,7 @@ module Stripe
# A nested object containing information about the destination of the InboundTransfer.
sig { returns(To) }
def to; end
# A list of history objects, representing changes in the state of the InboundTransfer.
# A list of history objects, representing changes in the state of the InboundTransfer. The most recent entry's type indicates the current status of the InboundTransfer.
sig { returns(T::Array[TransferHistory]) }
def transfer_history; end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ module Stripe
# A nested object containing information about the destination of the InboundTransfer.
sig { returns(To) }
def to; end
# A list of history objects, representing changes in the state of the InboundTransfer.
# A list of history objects, representing changes in the state of the InboundTransfer. The most recent entry's type indicates the current status of the InboundTransfer.
sig { returns(T::Array[TransferHistory]) }
def transfer_history; end
end
Expand Down
Loading