Skip to content

Commit 776f9df

Browse files
committed
Bump version to 20.5.0-alpha.3
1 parent c70426d commit 776f9df

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## 20.5.0-alpha.3 - 2026-03-11
4+
* [#2594](https://github.com/stripe/stripe-node/pull/2594) Update generated code for private-preview
5+
* Add support for new resource `Radar.IssuingAuthorizationEvaluation`
6+
* Add support for `create` method on resource `Radar.IssuingAuthorizationEvaluation`
7+
* Add support for new value `fee_credits` on enum `BalanceTransaction.balance_type`
8+
* ⚠️ Rename `affiliate_attributions` to `affiliate_attribution` on `DelegatedCheckout.RequestedSessionConfirmParams` and `DelegatedCheckout.RequestedSessionCreateParams`
9+
* Add support for `amount_to_counter` on `Dispute`
10+
* Add support for `frozen_fields` on `InvoiceItem`
11+
* Add support for new value `next_billing_period_start` on enums `V2.Billing.IntentAction.apply.effective_at.type` and `V2.Billing.IntentCreateParams.actions[].apply.effective_at.type`
12+
* Add support for `consumer` on `V2.Core.Account.configuration.card_creator.capabilities`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator`
13+
* Add support for `fifth_third` on `V2.Core.Account.configuration.card_creator.capabilities.commercial`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities.commercial`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities.commercial`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial`
14+
* Add support for `prepaid_card` on `V2.Core.Account.configuration.card_creator.capabilities.commercial.cross_river_bank`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities.commercial.cross_river_bank`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities.commercial.cross_river_bank`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`
15+
* Add support for new values `commercial.cross_river_bank.prepaid_card`, `commercial.fifth_third.charge_card`, `consumer.celtic.revolving_credit_card`, `consumer.cross_river_bank.prepaid_card`, and `consumer.lead.prepaid_card` on enums `V2.Core.Account.future_requirements.entries[].impact.restricts_capabilities[].capability` and `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
16+
* Add support for `payment_method_data` on `V2.Payments.OffSessionPaymentCreateParams`
17+
* Change `V2.Payments.OffSessionPaymentCreateParams.payment_method` to be optional
18+
* Add support for new values `commercial.cross_river_bank.prepaid_card`, `commercial.fifth_third.charge_card`, `consumer.celtic.revolving_credit_card`, `consumer.cross_river_bank.prepaid_card`, and `consumer.lead.prepaid_card` on enum `EventsV2CoreAccountIncludingConfigurationCardCreatorCapabilityStatusUpdatedEvent.updated_capability`
19+
320
## 20.5.0-alpha.2 - 2026-03-04
421
This release changes the pinned API version to `2026-03-04.preview`.
522

VERSION

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

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

0 commit comments

Comments
 (0)