Skip to content

Commit dd48563

Browse files
committed
Bump version to 16.12.0
1 parent 68ac7cf commit dd48563

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 16.12.0 - 2024-09-18
4+
* [#2177](https://github.com/stripe/stripe-node/pull/2177) Update generated code
5+
* Add support for new value `international_transaction` on enum `Treasury.ReceivedDebit.failure_code`
6+
* [#2175](https://github.com/stripe/stripe-node/pull/2175) Update generated code
7+
* 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`
8+
* 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`
9+
* Add support for `payer_details` on `Charge.payment_method_details.klarna`
10+
* Add support for `amazon_pay` on `Dispute.payment_method_details`
11+
* Add support for new value `amazon_pay` on enum `Dispute.payment_method_details.type`
12+
* Add support for `automatically_finalizes_at` on `Invoice`
13+
* Add support for `state_sales_tax` on `Tax.Registration.country_options.us` and `Tax.RegistrationCreateParams.country_options.us`
14+
315
## 16.11.0 - 2024-09-12
416
* [#2171](https://github.com/stripe/stripe-node/pull/2171) Update generated code
517
* Add support for new resource `InvoiceRenderingTemplate`
@@ -9,7 +21,6 @@
921
* Add support for `template_version` on `Invoice.rendering`, `InvoiceCreateParams.rendering`, and `InvoiceUpdateParams.rendering`
1022
* Add support for new value `submitted` on enum `Issuing.Card.shipping.status`
1123
* Change `TestHelpers.TestClock.status_details` to be required
12-
* [#2172](https://github.com/stripe/stripe-node/pull/2172) Null out empty data sent to GET/DELETE APIs
1324

1425
## 16.10.0 - 2024-09-05
1526
* [#2158](https://github.com/stripe/stripe-node/pull/2158) Update generated code

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.11.0
1+
16.12.0

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": "16.11.0",
3+
"version": "16.12.0",
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
@@ -49,7 +49,7 @@ export function createStripe(
4949
platformFunctions: PlatformFunctions,
5050
requestSender: RequestSenderFactory = defaultRequestSenderFactory
5151
): typeof Stripe {
52-
Stripe.PACKAGE_VERSION = '16.11.0';
52+
Stripe.PACKAGE_VERSION = '16.12.0';
5353
Stripe.USER_AGENT = {
5454
bindings_version: Stripe.PACKAGE_VERSION,
5555
lang: 'node',

0 commit comments

Comments
 (0)