Skip to content

Commit ceb0d38

Browse files
committed
Bump version to 19.4.0-alpha.1
1 parent 09e3322 commit ceb0d38

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 19.4.0-alpha.1 - 2025-11-06
4+
* [#2489](https://github.com/stripe/stripe-node/pull/2489) Update generated code for private-preview
5+
* Add support for new resources `TransitBalance`, `V2.Reporting.ReportRun`, `V2.Reporting.Report`
6+
* Add support for `create` and `retrieve` methods on resource `V2.Reporting.ReportRun`
7+
* Add support for `retrieve` method on resource `V2.Reporting.Report`
8+
* Add support for `create` and `refill` test helper methods on resource `Capital.FinancingOffer`
9+
* Add support for `allocated_funds` on `Charge`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, and `PaymentIntentUpdateParams`
10+
* Add support for thin events `V2ReportingReportRunCreatedEvent`, `V2ReportingReportRunFailedEvent`, `V2ReportingReportRunSucceededEvent`, and `V2ReportingReportRunUpdatedEvent` with related object `V2.Reporting.ReportRun`
11+
312
## 19.3.0-beta.1 - 2025-10-29
413

514
This release changes the pinned API version to `2025-10-29.preview`.
@@ -316,6 +325,8 @@ This release changes the pinned API version to `2025-09-30.preview`. It is built
316325
* Add support for thin event `V2CoreClaimableSandboxCreatedEvent` with related object `V2.Core.ClaimableSandbox`
317326
* Add support for thin events `V2MoneyManagementRecipientVerificationCreatedEvent` and `V2MoneyManagementRecipientVerificationUpdatedEvent` with related object `V2.MoneyManagement.RecipientVerification`
318327
* Add support for error code `account_rate_limit_exceeded` on `RateLimitError`
328+
* Remove support for resources `V2.Reporting.ReportRun`, `V2.Reporting.Report`
329+
* Remove support for thin events `V2ReportingReportRunCreatedEvent`, `V2ReportingReportRunFailedEvent`, `V2ReportingReportRunSucceededEvent`, and `V2ReportingReportRunUpdatedEvent` with related object `V2.Reporting.ReportRun`
319330

320331
## 19.0.0 - 2025-09-30
321332
This release changes the pinned API version to `2025-09-30.clover` and contains breaking changes (prefixed with ⚠️ below)

VERSION

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

0 commit comments

Comments
 (0)