Skip to content

Commit fe03514

Browse files
committed
Bump version to 15.12.0
1 parent 1e9263c commit fe03514

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

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

3+
## 15.12.0 - 2024-06-17
4+
* [#2109](https://github.com/stripe/stripe-node/pull/2109) Update generated code
5+
* Add support for new value `mobilepay` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
6+
* Add support for `tax_id_collection` on `PaymentLinkUpdateParams`
7+
* [#2111](https://github.com/stripe/stripe-node/pull/2111) Where params are union of types, merge the types instead of having numbered suffixes in type names
8+
* Change type of `PaymentIntentConfirmParams.mandate_data` from `Stripe.Emptyable<PaymentIntentConfirmParams.MandateData1 | PaymentIntentConfirmParams.MandateData2>` to `Stripe.Emptyable<PaymentIntentConfirmParams.MandateData>` where the new MandateData is a union of all the properties of MandateData1 and MandateData2
9+
* Change type of `PaymentMethodCreateParams.card` from `PaymentMethodCreateParams.Card1 | PaymentMethodCreateParams.Card2` to `PaymentMethodCreateParams.Card` where the new Card is a union of all the properties of Card1 and Card2
10+
* Change type of `SetupIntentConfirmParams.mandate_data` from `Stripe.Emptyable<SetupIntentConfirmParams.MandateData1 | SetupIntentConfirmParams.MandateData2>` to `Stripe.Emptyable<SetupIntentConfirmParams.MandateData>` where the new MandateData is a union of all the properties of MandateData1 and MandateData2
11+
312
## 15.11.0 - 2024-06-13
413
* [#2102](https://github.com/stripe/stripe-node/pull/2102) Update generated code
514
* Add support for `multibanco_payments` and `twint_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.11.0
1+
15.12.0

package.json

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

src/stripe.core.ts

+1-1
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 = '15.11.0';
52+
Stripe.PACKAGE_VERSION = '15.12.0';
5353
Stripe.USER_AGENT = {
5454
bindings_version: Stripe.PACKAGE_VERSION,
5555
lang: 'node',

0 commit comments

Comments
 (0)