From dd48563f1c495eb8763190b8379c72dbc423c355 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Wed, 18 Sep 2024 11:38:58 -0700 Subject: [PATCH] Bump version to 16.12.0 --- CHANGELOG.md | 13 ++++++++++++- VERSION | 2 +- package.json | 2 +- src/stripe.core.ts | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c06b685194..c1e683d60e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 16.12.0 - 2024-09-18 +* [#2177](https://github.com/stripe/stripe-node/pull/2177) Update generated code + * Add support for new value `international_transaction` on enum `Treasury.ReceivedDebit.failure_code` +* [#2175](https://github.com/stripe/stripe-node/pull/2175) Update generated code + * Add support for new value `verification_supportability` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code` + * Add support for new value `terminal_reader_invalid_location_for_activation` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code` + * Add support for `payer_details` on `Charge.payment_method_details.klarna` + * Add support for `amazon_pay` on `Dispute.payment_method_details` + * Add support for new value `amazon_pay` on enum `Dispute.payment_method_details.type` + * Add support for `automatically_finalizes_at` on `Invoice` + * Add support for `state_sales_tax` on `Tax.Registration.country_options.us` and `Tax.RegistrationCreateParams.country_options.us` + ## 16.11.0 - 2024-09-12 * [#2171](https://github.com/stripe/stripe-node/pull/2171) Update generated code * Add support for new resource `InvoiceRenderingTemplate` @@ -9,7 +21,6 @@ * Add support for `template_version` on `Invoice.rendering`, `InvoiceCreateParams.rendering`, and `InvoiceUpdateParams.rendering` * Add support for new value `submitted` on enum `Issuing.Card.shipping.status` * Change `TestHelpers.TestClock.status_details` to be required -* [#2172](https://github.com/stripe/stripe-node/pull/2172) Null out empty data sent to GET/DELETE APIs ## 16.10.0 - 2024-09-05 * [#2158](https://github.com/stripe/stripe-node/pull/2158) Update generated code diff --git a/VERSION b/VERSION index c723e938e3..ccefa10045 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -16.11.0 +16.12.0 diff --git a/package.json b/package.json index 0023094429..448455dbc2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "16.11.0", + "version": "16.12.0", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 4904bce439..b777ce7cdb 100644 --- a/src/stripe.core.ts +++ b/src/stripe.core.ts @@ -49,7 +49,7 @@ export function createStripe( platformFunctions: PlatformFunctions, requestSender: RequestSenderFactory = defaultRequestSenderFactory ): typeof Stripe { - Stripe.PACKAGE_VERSION = '16.11.0'; + Stripe.PACKAGE_VERSION = '16.12.0'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',