Skip to content

Commit 5d3b345

Browse files
Bump version to 18.4.0-beta.2
1 parent 970eaff commit 5d3b345

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

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

3+
## 18.4.0-beta.2 - 2025-07-09
4+
* [#2367](https://github.com/stripe/stripe-node/pull/2367) Pull in V2 FinancialAccount changes for June release
5+
* Add support for `close` and `create` methods on resource `V2.MoneyManagement.FinancialAccount`
6+
* Add support for new value `storer` on enums `V2.Core.Account.applied_configurations` and `V2.Core.AccountCloseParams.applied_configurations`
7+
* Add support for `storer` on `V2.Core.Account.configuration`, `V2.Core.AccountCreateParams.configuration`, and `V2.Core.AccountUpdateParams.configuration`
8+
* Add support for new values `financial_addresses.bank_accounts`, `holds_currencies.gbp`, `inbound_transfers.financial_accounts`, `outbound_payments.bank_accounts`, `outbound_payments.cards`, `outbound_payments.financial_accounts`, `outbound_transfers.bank_accounts`, and `outbound_transfers.financial_accounts` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
9+
* Add support for new value `storer` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].configuration`
10+
* Add support for `status_details` on `V2.MoneyManagement.FinancialAccount`
11+
* Add support for `status` on `V2.MoneyManagement.FinancialAccountListParams`
12+
* Add support for new value `configuration.storer` on enums `V2.Core.AccountCreateParams.include`, `V2.Core.AccountRetrieveParams.include`, and `V2.Core.AccountUpdateParams.include`
13+
* Add support for thin events `V2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent` and `V2CoreAccountIncludingConfigurationStorerUpdatedEvent` with related object `V2.Core.Account`
14+
* Add support for error types `AlreadyExistsError` and `NonZeroBalanceError`
15+
* [#2362](https://github.com/stripe/stripe-node/pull/2362) Prathmesh/merge node beta
16+
317
## 18.4.0-beta.1 - 2025-07-01
418
* [#2344](https://github.com/stripe/stripe-node/pull/2344) Update generated code for beta
519
* Change type of `Checkout.SessionCreateParams.subscription_data.billing_mode`, `InvoiceCreatePreviewParams.schedule_details.billing_mode`, `InvoiceCreatePreviewParams.subscription_details.billing_mode`, `Quote.subscription_data.billing_mode`, `QuoteCreateParams.subscription_data.billing_mode`, `SubscriptionCreateParams.billing_mode`, and `SubscriptionScheduleCreateParams.billing_mode` from `enum('classic'|'flexible')` to `billing_mode`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.4.0-beta.1
1+
18.4.0-beta.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": "18.4.0-beta.1",
3+
"version": "18.4.0-beta.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
@@ -59,7 +59,7 @@ export function createStripe(
5959
platformFunctions: PlatformFunctions,
6060
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6161
): typeof Stripe {
62-
Stripe.PACKAGE_VERSION = '18.4.0-beta.1';
62+
Stripe.PACKAGE_VERSION = '18.4.0-beta.2';
6363
Stripe.USER_AGENT = {
6464
bindings_version: Stripe.PACKAGE_VERSION,
6565
lang: 'node',

0 commit comments

Comments
 (0)