Skip to content

Commit a6af2bb

Browse files
Bump version to 16.6.0-beta.1
1 parent c692188 commit a6af2bb

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 16.6.0-beta.1 - 2024-07-25
4+
* [#2137](https://github.com/stripe/stripe-node/pull/2137) Update generated code for beta
5+
* Add support for new resources `Billing.AlertTriggered`, `Billing.Alert`, and `Tax.Association`
6+
* Add support for `activate`, `archive`, `create`, `deactivate`, `list`, and `retrieve` methods on resource `Alert`
7+
* Add support for `find` method on resource `Association`
8+
* Add support for `capital` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
9+
* Add support for new values `issuing.account_closed_for_not_providing_business_model_clarification`, `issuing.account_closed_for_not_providing_url_clarification`, and `issuing.account_closed_for_not_providing_use_case_clarification` on enum `AccountNotice.reason`
10+
* Add support for `async_workflows` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentDecrementAuthorizationParams`, `PaymentIntentIncrementAuthorizationParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
11+
* Add support for `payto` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
12+
* Add support for `display_name` on `Treasury.FinancialAccountCreateParams`, `Treasury.FinancialAccountUpdateParams`, and `Treasury.FinancialAccount`
13+
314
## 16.5.0 - 2024-07-25
415
* [#2143](https://github.com/stripe/stripe-node/pull/2143) Update generated code
516
* Add support for `tax_registrations` and `tax_settings` on `AccountSession.components` and `AccountSessionCreateParams.components`

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.4.0-beta.1
1+
16.6.0-beta.1

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "16.4.0-beta.1",
3+
"version": "16.6.0-beta.1",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export function createStripe(
5555
platformFunctions: PlatformFunctions,
5656
requestSender: RequestSenderFactory = defaultRequestSenderFactory
5757
): typeof Stripe {
58-
Stripe.PACKAGE_VERSION = '16.4.0-beta.1';
58+
Stripe.PACKAGE_VERSION = '16.6.0-beta.1';
5959
Stripe.USER_AGENT = {
6060
bindings_version: Stripe.PACKAGE_VERSION,
6161
lang: 'node',

0 commit comments

Comments
 (0)