Skip to content

Commit

Permalink
Bump version to 12.4.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Apr 27, 2023
1 parent 0fad7b3 commit 2e4189e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
23 changes: 16 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 12.4.0-beta.1 - 2023-04-27
* [#1769](https://github.com/stripe/stripe-node/pull/1769) Update generated code for beta
* Add support for `billing_cycle_anchor` and `proration_behavior` on `CheckoutSessionCreateParams.subscription_data`
* Add support for `terminal_id` on `Issuing.Authorization.merchant_data` and `Issuing.Transaction.merchant_data`
* Add support for `metadata` on `PaymentIntentCaptureParams`
* Add support for `checks` on `SetupAttempt.payment_method_details.card`
* Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
* Change type of `TaxRegistrationCreateParams.active_from`, `TaxRegistrationUpdateParams.active_from`, and `TaxRegistrationUpdateParams.expires_at` from `longInteger` to `longInteger | literal('now')`

## 12.3.0 - 2023-04-27
* [#1770](https://github.com/stripe/stripe-node/pull/1770) Update generated code
* Add support for `billing_cycle_anchor` and `proration_behavior` on `CheckoutSessionCreateParams.subscription_data`
Expand All @@ -10,16 +19,16 @@

## 12.3.0-beta.1 - 2023-04-20
* [#1760](https://github.com/stripe/stripe-node/pull/1760) Update generated code for beta
* Add support for `zip` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
* Add support for `country_options` on `Tax.Registration` and `TaxRegistrationCreateParams`
* Add support for `zip` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
* Add support for `country_options` on `Tax.Registration` and `TaxRegistrationCreateParams`
* Remove support for `state` and `type` on `Tax.Registration` and `TaxRegistrationCreateParams`

## 12.2.0 - 2023-04-20
* [#1759](https://github.com/stripe/stripe-node/pull/1759) Update generated code
* Change `Checkout.Session.currency_conversion` to be required
* Change `Identity.VerificationReport.options` and `Identity.VerificationReport.type` to be optional
* Change type of `Identity.VerificationSession.options` from `VerificationSessionOptions` to `VerificationSessionOptions | null`
* Change type of `Identity.VerificationSession.type` from `enum('document'|'id_number')` to `enum('document'|'id_number') | null`
* Change `Checkout.Session.currency_conversion` to be required
* Change `Identity.VerificationReport.options` and `Identity.VerificationReport.type` to be optional
* Change type of `Identity.VerificationSession.options` from `VerificationSessionOptions` to `VerificationSessionOptions | null`
* Change type of `Identity.VerificationSession.type` from `enum('document'|'id_number')` to `enum('document'|'id_number') | null`
* [#1762](https://github.com/stripe/stripe-node/pull/1762) Add Deno webhook signing example
* [#1761](https://github.com/stripe/stripe-node/pull/1761) Add Deno usage instructions in README

Expand Down Expand Up @@ -95,7 +104,7 @@ This was added to maintain backwards compatibility during the transition of stri

## 11.18.0-beta.1 - 2023-03-30
* [#1735](https://github.com/stripe/stripe-node/pull/1735) Update generated code
* Add support for new value `ioss` on enums `Tax.Registration.type` and `TaxRegistrationCreateParams.type`
* Add support for new value `ioss` on enums `Tax.Registration.type` and `TaxRegistrationCreateParams.type`
* Change `TerminalReaderCollectInputsParams.inputs[].custom_text.description` to be optional

## 11.17.0 - 2023-03-30
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.3.0-beta.1
12.4.0-beta.1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stripe",
"version": "12.3.0-beta.1",
"version": "12.4.0-beta.1",
"description": "Stripe API wrapper",
"keywords": [
"stripe",
Expand Down
2 changes: 1 addition & 1 deletion src/stripe.core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function createStripe(
platformFunctions: PlatformFunctions,
requestSender: RequestSenderFactory = defaultRequestSenderFactory
): typeof Stripe {
Stripe.PACKAGE_VERSION = '12.3.0-beta.1';
Stripe.PACKAGE_VERSION = '12.4.0-beta.1';
Stripe.USER_AGENT = {
bindings_version: Stripe.PACKAGE_VERSION,
lang: 'node',
Expand Down

0 comments on commit 2e4189e

Please sign in to comment.