Skip to content

Commit 76e9440

Browse files
committed
Bump version to 20.4.0-beta.1
1 parent 169f809 commit 76e9440

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Changelog
22

3+
## 20.4.0-beta.1 - 2026-01-28
4+
This release changes the pinned API version to `2026-01-28.preview`.
5+
6+
* [#2552](https://github.com/stripe/stripe-node/pull/2552) Update generated code for beta
7+
* Add support for new resource `FinancialConnections.Authorization`
8+
* Add support for `retrieve` method on resource `FinancialConnections.Authorization`
9+
* Add support for `detach_payment` method on resource `Invoice`
10+
* Remove support for `cancel`, `list_line_items`, and `reopen` methods on resource `Order`
11+
* Remove support for `attach_cadence` method on resource `Subscription`
12+
* Add support for `additional_files` and `site` on `Account.settings.paypay_payments`, `AccountCreateParams.settings.paypay_payments`, and `AccountUpdateParams.settings.paypay_payments`
13+
* Remove support for `capital` on `Account.settings`
14+
* Change type of `Charge.payment_method_details.stripe_balance.source_type`, `ConfirmationToken.payment_method_preview.stripe_balance.source_type`, `PaymentAttemptRecord.payment_method_details.stripe_balance.source_type`, `PaymentMethod.stripe_balance.source_type`, and `PaymentRecord.payment_method_details.stripe_balance.source_type` from `enum('bank_account'|'card'|'fpx')` to `enum('bank_account'|'card'|'fpx') | null`
15+
* Add support for new value `pl_nip` on enums `Checkout.Session.collected_information.tax_ids[].type`, `Order.tax_details.tax_ids[].type`, and `QuotePreviewInvoice.customer_tax_ids[].type`
16+
* Add support for new value `capital.financing_summary.line_of_credit_update` on enum `Event.type`
17+
* Add support for `authorization` and `status_details` on `FinancialConnections.Account`
18+
* Add support for `relink_options` on `FinancialConnections.SessionCreateParams` and `FinancialConnections.Session`
19+
* Change `FinancialConnections.SessionCreateParams.account_holder` to be optional
20+
* Add support for `relink_result` on `FinancialConnections.Session`
21+
* Remove support for `billing_cadence` on `InvoiceCreatePreviewParams`, `SubscriptionCreateParams`, `SubscriptionUpdateParams`, and `Subscription`
22+
* Remove support for `billing_cadence_details` on `Invoice.parent` and `QuotePreviewInvoice.parent`
23+
* Remove support for value `billing_cadence_details` from enums `Invoice.parent.type` and `QuotePreviewInvoice.parent.type`
24+
* Add support for new value `pl_nip` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
25+
* Add support for `car_rental_data`, `flight_data`, and `lodging_data` on `PaymentIntent.payment_details`
26+
* Change `QuotePreviewInvoice.payment_settings.payment_method_options.payto` to be required
27+
* Add support for new value `capital.financing_summary.line_of_credit_update` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
28+
* Add support for new values `ae_bank_account`, `ag_bank_account`, `bh_bank_account`, `gm_bank_account`, `hk_bank_account`, `kh_bank_account`, `lc_bank_account`, `mc_bank_account`, `mg_bank_account`, `my_bank_account`, `qa_bank_account`, `rw_bank_account`, `th_bank_account`, `tt_bank_account`, and `vn_bank_account` on enum `V2.Core.Account.configuration.recipient.default_outbound_destination.type`
29+
* Add support for `alternative_reference` on `V2.Core.Vault.GbBankAccount`, `V2.Core.Vault.UsBankAccount`, and `V2.MoneyManagement.PayoutMethod`
30+
* Add support for `account_holder_address` and `account_holder_name` on `V2.MoneyManagement.FinancialAddress.credentials.us_bank_account`
31+
* Add support for `fingerprint` on `V2.MoneyManagement.PayoutMethod.card`
32+
* Add support for snapshot event `InvoicePaymentDetachedEvent` with resource `InvoicePayment`
33+
* Add support for error code `request_blocked` on `QuotePreviewInvoice.last_finalization_error`
34+
* Add support for error codes `blocked_payout_method` and `unsupported_payout_method` on `BlockedByStripeError`
35+
* Add support for error code `invalid_payout_method_data` on `InvalidPayoutMethodError`
36+
* Add support for error code `limit_payout_method` on `QuotaExceededError`
37+
338
## 20.2.0 - 2026-01-16
439
* [#2551](https://github.com/stripe/stripe-node/pull/2551) Update generated code
540
* Add support for event notifications `V2CoreAccountClosedEvent`, `V2CoreAccountCreatedEvent`, `V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationCustomerUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientUpdatedEvent`, `V2CoreAccountIncludingDefaultsUpdatedEvent`, `V2CoreAccountIncludingFutureRequirementsUpdatedEvent`, `V2CoreAccountIncludingIdentityUpdatedEvent`, `V2CoreAccountIncludingRequirementsUpdatedEvent`, and `V2CoreAccountUpdatedEvent` with related object `V2.Core.Account`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.2.0-beta.2
1+
20.4.0-beta.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "20.2.0-beta.2",
3+
"version": "20.4.0-beta.1",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function createStripe(
6161
platformFunctions: PlatformFunctions,
6262
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6363
): typeof Stripe {
64-
Stripe.PACKAGE_VERSION = '20.2.0-beta.2';
64+
Stripe.PACKAGE_VERSION = '20.4.0-beta.1';
6565
Stripe.API_VERSION = ApiVersion;
6666
Stripe.USER_AGENT = {
6767
bindings_version: Stripe.PACKAGE_VERSION,

0 commit comments

Comments
 (0)