Skip to content

Commit 1aadfa1

Browse files
Bump version to 16.11.0
1 parent d870ffa commit 1aadfa1

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

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

3+
## 16.11.0 - 2024-09-12
4+
* [#2171](https://github.com/stripe/stripe-node/pull/2171) Update generated code
5+
* Add support for new resource `InvoiceRenderingTemplate`
6+
* Add support for `archive`, `list`, `retrieve`, and `unarchive` methods on resource `InvoiceRenderingTemplate`
7+
* Add support for `required` on `Checkout.Session.tax_id_collection`, `Checkout.SessionCreateParams.tax_id_collection`, `PaymentLink.tax_id_collection`, `PaymentLinkCreateParams.tax_id_collection`, and `PaymentLinkUpdateParams.tax_id_collection`
8+
* Add support for `template` on `Customer.invoice_settings.rendering_options`, `CustomerCreateParams.invoice_settings.rendering_options`, `CustomerUpdateParams.invoice_settings.rendering_options`, `Invoice.rendering`, `InvoiceCreateParams.rendering`, and `InvoiceUpdateParams.rendering`
9+
* Add support for `template_version` on `Invoice.rendering`, `InvoiceCreateParams.rendering`, and `InvoiceUpdateParams.rendering`
10+
* Add support for new value `submitted` on enum `Issuing.Card.shipping.status`
11+
* 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
13+
314
## 16.10.0 - 2024-09-05
415
* [#2158](https://github.com/stripe/stripe-node/pull/2158) Update generated code
516
* Add support for `subscription_item` and `subscription` on `Billing.AlertCreateParams.filter`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.10.0
1+
16.11.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.10.0",
3+
"version": "16.11.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.10.0';
52+
Stripe.PACKAGE_VERSION = '16.11.0';
5353
Stripe.USER_AGENT = {
5454
bindings_version: Stripe.PACKAGE_VERSION,
5555
lang: 'node',

0 commit comments

Comments
 (0)