Skip to content

Commit a2ea51b

Browse files
committed
Bump version to 19.4.0-alpha.2
1 parent c64b4e2 commit a2ea51b

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

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

3+
## 19.4.0-alpha.2 - 2025-11-13
4+
This release changes the pinned API version to `2025-10-29.preview`.
5+
6+
* [#2501](https://github.com/stripe/stripe-node/pull/2501) Update generated code for private-preview
7+
* Add support for new resource `Issuing.Program`
8+
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Issuing.Program`
9+
* Add support for `schedule` on `Discount`
10+
* Add support for `applicable_fees` on `DelegatedCheckout.RequestedSession.total_details`
11+
* Add support for `schedule_details` on `Invoice.parent`, `InvoiceItem.parent`, `InvoiceLineItem.parent`, and `QuotePreviewInvoice.parent`
12+
* Add support for new value `schedule_details` on enum `InvoiceItem.parent.type`
13+
* Add support for `billing_schedules` on `InvoiceCreatePreviewParams.schedule_details`, `QuotePreviewSubscriptionSchedule`, `SubscriptionScheduleCreateParams`, `SubscriptionScheduleUpdateParams`, and `SubscriptionSchedule`
14+
* Add support for new value `schedule_details` on enums `Invoice.parent.type` and `QuotePreviewInvoice.parent.type`
15+
* Add support for new value `schedule_details` on enum `InvoiceLineItem.parent.type`
16+
* Add support for `latest_invoice` on `QuotePreviewSubscriptionSchedule` and `SubscriptionSchedule`
17+
* Add support for `phase_effective_at` on `QuotePreviewSubscriptionSchedule.default_settings`, `SubscriptionSchedule.default_settings`, `SubscriptionScheduleCreateParams.default_settings`, and `SubscriptionScheduleUpdateParams.default_settings`
18+
* [#2494](https://github.com/stripe/stripe-node/pull/2494) Update generated code for private-preview
19+
* Remove support for resource `V2.Tax.AutomaticRule`
20+
* Remove support for `create`, `deactivate`, `find`, `retrieve`, and `update` methods on resource `V2.Tax.AutomaticRule`
21+
* Add support for `self_reported_income` and `self_reported_monthly_housing_payment` on `AccountCreateParams.individual`, `AccountCreatePersonParams`, `AccountUpdateParams.individual`, `AccountUpdatePersonParams`, `Person`, `TokenCreateParams.account.individual`, and `TokenCreateParams.person`
22+
* Add support for new values `amendment_end`, `line_ends_at`, `schedule_end`, and `upcoming_invoice` on enums `InvoiceCreatePreviewParams.subscription_details.billing_schedules[].bill_until.type`, `Subscription.billing_schedules[].bill_until.type`, `SubscriptionCreateParams.billing_schedules[].bill_until.type`, and `SubscriptionUpdateParams.billing_schedules[].bill_until.type`
23+
* Add support for `billing_schedules` and `phase_effective_at` on `Quote.subscription_data_overrides[]`, `Quote.subscription_data`, `QuoteCreateParams.subscription_data_overrides[]`, `QuoteCreateParams.subscription_data`, `QuoteUpdateParams.subscription_data_overrides[]`, and `QuoteUpdateParams.subscription_data`
24+
* Add support for `bill_from` on `Subscription.billing_schedules[]`
25+
* Add support for `amendment_end` and `line_ends_at` on `Subscription.billing_schedules[].bill_until`
26+
327
## 19.4.0-alpha.1 - 2025-11-06
428
* [#2489](https://github.com/stripe/stripe-node/pull/2489) Update generated code for private-preview
529
* Add support for new resources `TransitBalance`, `V2.Reporting.ReportRun`, `V2.Reporting.Report`

VERSION

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

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": "19.4.0-alpha.1",
3+
"version": "19.4.0-alpha.2",
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
@@ -60,7 +60,7 @@ export function createStripe(
6060
platformFunctions: PlatformFunctions,
6161
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6262
): typeof Stripe {
63-
Stripe.PACKAGE_VERSION = '19.4.0-alpha.1';
63+
Stripe.PACKAGE_VERSION = '19.4.0-alpha.2';
6464
Stripe.API_VERSION = ApiVersion;
6565
Stripe.USER_AGENT = {
6666
bindings_version: Stripe.PACKAGE_VERSION,

0 commit comments

Comments
 (0)