Skip to content

Commit 4e05650

Browse files
committed
Bump version to 17.7.0-beta.1
1 parent d24b9e8 commit 4e05650

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 17.7.0-beta.1 - 2025-02-07
4+
* [#2254](https://github.com/stripe/stripe-node/pull/2254) Update generated code for beta
5+
* Add support for `rejected_reason` on `Account.risk_controls`
6+
* Add support for `product_tax_code_selector` on `AccountSessionCreateParams.components`
7+
* Add support for `prices` on `Billing.CreditBalanceSummaryRetrieveParams.filter.applicability_scope`, `Billing.CreditGrant.applicability_config.scope`, and `Billing.CreditGrantCreateParams.applicability_config.scope`
8+
* Change `Billing.CreditGrant.applicability_config.scope.price_type`, `Checkout.Session.collected_information.business_name`, `Checkout.Session.collected_information.email`, `Checkout.Session.collected_information.phone`, `Checkout.Session.collected_information.shipping_details`, and `Checkout.Session.collected_information.tax_ids` to be optional
9+
* Add support for `brand_product` on `Charge.payment_method_details.amazon_pay.funding.card` and `Charge.payment_method_details.revolut_pay.funding.card`
10+
* Add support for `restrictions` on `Checkout.Session.payment_method_options.card` and `Checkout.SessionCreateParams.payment_method_options.card`
11+
* Change `Checkout.Session.discounts` to be required
12+
* Change type of `TokenCreateParams.person.political_exposure` from `string` to `enum('existing'|'none')`
13+
314
## 17.6.0 - 2025-01-27
415
* [#2250](https://github.com/stripe/stripe-node/pull/2250) Update generated code
516
* Add support for `close` method on resource `Treasury.FinancialAccount`

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17.6.0-beta.3
1+
17.7.0-beta.1

Diff for: package.json

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

Diff for: src/stripe.core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function createStripe(
5959
platformFunctions: PlatformFunctions,
6060
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6161
): typeof Stripe {
62-
Stripe.PACKAGE_VERSION = '17.6.0-beta.3';
62+
Stripe.PACKAGE_VERSION = '17.7.0-beta.1';
6363
Stripe.USER_AGENT = {
6464
bindings_version: Stripe.PACKAGE_VERSION,
6565
lang: 'node',

0 commit comments

Comments
 (0)