Skip to content

Commit 41a5b6a

Browse files
committed
Bump version to 16.9.0
1 parent 3eb103a commit 41a5b6a

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

CHANGELOG.md

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

3+
## 16.9.0 - 2024-08-29
4+
* [#2163](https://github.com/stripe/stripe-node/pull/2163) Generate SDK for OpenAPI spec version 1230
5+
* Change `AccountLinkCreateParams.collection_options.fields` and `LineItem.description` to be optional
6+
* Add support for new value `hr_oib` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, `Tax.Transaction.customer_details.tax_ids[].type`, and `TaxId.type`
7+
* Add support for new value `hr_oib` on enums `CustomerCreateParams.tax_id_data[].type`, `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `InvoiceUpcomingLinesParams.customer_details.tax_ids[].type`, `InvoiceUpcomingParams.customer_details.tax_ids[].type`, `Tax.CalculationCreateParams.customer_details.tax_ids[].type`, and `TaxIdCreateParams.type`
8+
* Add support for new value `issuing_regulatory_reporting` on enums `File.purpose` and `FileListParams.purpose`
9+
* Add support for new value `issuing_regulatory_reporting` on enum `FileCreateParams.purpose`
10+
* Change `Issuing.Card.shipping.address_validation` to be required
11+
* Add support for `status_details` on `TestHelpers.TestClock`
12+
313
## 16.8.0 - 2024-08-15
414
* [#2155](https://github.com/stripe/stripe-node/pull/2155) Update generated code
515
* Add support for `authorization_code` on `Charge.payment_method_details.card`
@@ -23,11 +33,11 @@
2333

2434
## 16.6.0 - 2024-08-01
2535
* [#2144](https://github.com/stripe/stripe-node/pull/2144) Update generated code
26-
* Add support for new resources `Billing.AlertTriggered` and `Billing.Alert`
27-
* Add support for new value `charge_exceeds_transaction_limit` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
28-
* ⚠️ Remove support for `authorization_code` on `Charge.payment_method_details.card`. This was accidentally released last week.
29-
* Add support for new value `billing.alert.triggered` on enum `Event.type`
30-
* Add support for new value `billing.alert.triggered` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
36+
* Add support for new resources `Billing.AlertTriggered` and `Billing.Alert`
37+
* Add support for new value `charge_exceeds_transaction_limit` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
38+
* ⚠️ Remove support for `authorization_code` on `Charge.payment_method_details.card`. This was accidentally released last week.
39+
* Add support for new value `billing.alert.triggered` on enum `Event.type`
40+
* Add support for new value `billing.alert.triggered` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3141

3242
## 16.5.0 - 2024-07-25
3343
* [#2143](https://github.com/stripe/stripe-node/pull/2143) Update generated code
@@ -55,7 +65,7 @@
5565

5666
## 16.3.0 - 2024-07-11
5767
* [#2130](https://github.com/stripe/stripe-node/pull/2130) Update generated code
58-
* ⚠️ Remove support for values `billing_policy_remote_function_response_invalid`, `billing_policy_remote_function_timeout`, `billing_policy_remote_function_unexpected_status_code`, and `billing_policy_remote_function_unreachable` from enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`.
68+
* ⚠️ Remove support for values `billing_policy_remote_function_response_invalid`, `billing_policy_remote_function_timeout`, `billing_policy_remote_function_unexpected_status_code`, and `billing_policy_remote_function_unreachable` from enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`.
5969
* ⚠️ Remove support for value `payment_intent_fx_quote_invalid` from enum `StripeError.code`. The was mistakenly released last week.
6070
* Add support for `payment_method_options` on `ConfirmationToken`
6171
* Add support for `payment_element` on `CustomerSession.components` and `CustomerSessionCreateParams.components`

VERSION

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

0 commit comments

Comments
 (0)