Skip to content

Commit 1b62924

Browse files
committed
Bump version to 18.1.0-beta.2
1 parent 96b2ac5 commit 1b62924

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

CHANGELOG.md

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

3+
## 18.1.0-beta.2 - 2025-04-10
4+
* [#2298](https://github.com/stripe/stripe-node/pull/2298) Update generated code for beta
5+
6+
### Breaking changes
7+
* Change type of `V2.MoneyManagement.ReceivedDebit.status_transitions` from `an object` to `an object | null`
8+
* Remove support for values `bank_accounts.local_uk`, `bank_accounts.wire_uk`, `cards_uk`, and `crypto_wallets_v2` from enum `EventsV2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.updated_capability`
9+
10+
### Additions
11+
* Add support for new resources `Privacy.RedactionJobRootObjects`, `Privacy.RedactionJobValidationError`, and `Privacy.RedactionJob`
12+
* Add support for `cancel`, `create`, `list`, `retrieve`, `run`, `update`, and `validate` methods on resource `RedactionJob`
13+
* Add support for `list` and `retrieve` methods on resource `RedactionJobValidationError`
14+
* Add support for `minority_owned_business_designation` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
15+
* Add support for new value `verification_legal_entity_structure_mismatch` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `AccountCapability.future_requirements.errors[].code`, `AccountCapability.requirements.errors[].code`, `AccountPerson.future_requirements.errors[].code`, `AccountPerson.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code`
16+
* Add support for `export_tax_transactions` and `payment_disputes` on `AccountSessionCreateParams.components`
17+
* Add support for new value `tax_id_prohibited` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `QuotePreviewInvoice.last_finalization_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
18+
* Add support for new value `fixed_term_loan` on enum `Capital.FinancingOffer.type`
19+
* Add support for `wallet_options` on `Checkout.SessionCreateParams` and `Checkout.Session`
20+
* Add support for new values `privacy.redaction_job.canceled`, `privacy.redaction_job.created`, `privacy.redaction_job.ready`, `privacy.redaction_job.succeeded`, and `privacy.redaction_job.validation_error` on enum `Event.type`
21+
* Add support for `klarna` on `PaymentMethodDomain`
22+
* Change type of `Tax.CalculationLineItem.reference` from `string | null` to `string`
23+
* Add support for `in` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
24+
* Add support for new values `privacy.redaction_job.canceled`, `privacy.redaction_job.created`, `privacy.redaction_job.ready`, `privacy.redaction_job.succeeded`, and `privacy.redaction_job.validation_error` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
25+
* [#2300](https://github.com/stripe/stripe-node/pull/2300) Handle external_resource field
26+
- Changes `external_account` field in `ExternalAccountsCreateParams` from a `string` to a union type.
27+
328
## 18.1.0-beta.1 - 2025-04-02
429
* [#2288](https://github.com/stripe/stripe-node/pull/2288) Update generated code for beta
530
This release changes the pinned API version to `2025-03-31.preview`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.1.0-beta.1
1+
18.1.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.1.0-beta.1",
3+
"version": "18.1.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.1.0-beta.1';
62+
Stripe.PACKAGE_VERSION = '18.1.0-beta.2';
6363
Stripe.USER_AGENT = {
6464
bindings_version: Stripe.PACKAGE_VERSION,
6565
lang: 'node',

0 commit comments

Comments
 (0)