Skip to content

Commit 9de40bf

Browse files
Bump version to 20.5.0-alpha.4
1 parent 24b21aa commit 9de40bf

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

CHANGELOG.md

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

3+
## 20.5.0-alpha.4 - 2026-03-18
4+
* [#2605](https://github.com/stripe/stripe-node/pull/2605) Update generated code for private-preview
5+
* Add support for `simulate_crypto_deposit` test helper method on resource `PaymentIntent`
6+
* Add support for `deposit_options` and `mode` on `PaymentIntent.payment_method_options.crypto`, `PaymentIntentConfirmParams.payment_method_options.crypto`, `PaymentIntentCreateParams.payment_method_options.crypto`, and `PaymentIntentUpdateParams.payment_method_options.crypto`
7+
* Add support for `crypto_display_details` on `PaymentIntent.next_action`
8+
* [#2599](https://github.com/stripe/stripe-node/pull/2599) Update generated code for private-preview
9+
* Add support for new resources `Orchestration.PaymentAttempt` and `Radar.CustomerEvaluation`
10+
* Add support for `retrieve` method on resource `Orchestration.PaymentAttempt`
11+
* Add support for `create` and `update` methods on resource `Radar.CustomerEvaluation`
12+
* Add support for `approve` method on resource `Checkout.Session`
13+
* Add support for `report_authenticated`, `report_canceled`, `report_failed`, `report_guaranteed`, `report_informational`, and `report_refund` methods on resource `PaymentAttemptRecord`
14+
* Add support for `create_us_paper_check_on_application` on `AccountSessionCreateParams.components.check_scanning.features`
15+
* ⚠️ Change `AccountSignals.delinquency` to be optional
16+
* Add support for `approval_method` on `Checkout.SessionCreateParams` and `Checkout.Session`
17+
* Add support for `current_attempt` on `Checkout.Session`
18+
* Add support for `selected_fulfillment_option_overrides` on `DelegatedCheckout.RequestedSessionUpdateParams.fulfillment_details`
19+
* Add support for `pricing_plan_subscription_details` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
20+
* ⚠️ Remove support for `license_fee_subscription_details` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
21+
* ⚠️ Remove support for `pricing_plan_subscription` and `pricing_plan_version` on `InvoiceItem.parent.rate_card_subscription_details` and `InvoiceLineItem.parent.rate_card_subscription_details`
22+
* Add support for new value `pricing_plan_subscription_details` on enum `InvoiceItem.parent.type`
23+
* ⚠️ Remove support for value `license_fee_subscription_details` from enum `InvoiceItem.parent.type`
24+
* Add support for new value `discounts` on enum `InvoiceItem.frozen_fields`
25+
* Add support for new value `pricing_plan_subscription_details` on enum `InvoiceLineItem.parent.type`
26+
* ⚠️ Remove support for value `license_fee_subscription_details` from enum `InvoiceLineItem.parent.type`
27+
* Add support for `token_details` on `Issuing.Authorization`
28+
* Add support for `failure_code` on `PaymentRecordReportPaymentAttemptFailedParams`, `PaymentRecordReportPaymentAttemptParams.failed`, and `PaymentRecordReportPaymentParams.failed`
29+
* Change `PaymentRecordReportPaymentAttemptCanceledParams.canceled_at` to be optional
30+
* Change `PaymentRecordReportPaymentAttemptFailedParams.failed_at` to be optional
31+
* Change `PaymentRecordReportPaymentAttemptGuaranteedParams.guaranteed_at` to be optional
32+
* Change `PaymentRecordReportRefundParams.refunded` to be optional
33+
* ⚠️ Remove support for value `now` from enums `QuoteCreateParams.subscription_data.billing_schedules[].bill_from.type`, `QuoteCreateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`, `QuoteUpdateParams.subscription_data.billing_schedules[].bill_from.type`, and `QuoteUpdateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`
34+
* ⚠️ Change `Radar.IssuingAuthorizationEvaluationCreateParams.card_details.bin_country` to be required
35+
* Add support for `recurring_interval` on `SharedPayment.GrantedTokenCreateParams.testHelpers.usage_limits`
36+
* Change `SharedPayment.GrantedTokenCreateParams.testHelpers.usage_limits.expires_at` to be optional
37+
* Add support for `home_rule_tax` on `Tax.Registration.country_options.us` and `Tax.RegistrationCreateParams.country_options.us`
38+
* Add support for new value `home_rule_tax` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
39+
340
## 20.5.0-alpha.3 - 2026-03-11
441
* [#2594](https://github.com/stripe/stripe-node/pull/2594) Update generated code for private-preview
542
* Add support for new resource `Radar.IssuingAuthorizationEvaluation`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.5.0-alpha.3
1+
20.5.0-alpha.4

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.5.0-alpha.3",
3+
"version": "20.5.0-alpha.4",
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.5.0-alpha.3';
64+
Stripe.PACKAGE_VERSION = '20.5.0-alpha.4';
6565
Stripe.API_VERSION = ApiVersion;
6666
const aiAgent =
6767
typeof process !== 'undefined' && process.env

0 commit comments

Comments
 (0)