Skip to content

build(deps): Bump stripe from 11.8.0 to 12.3.0#48

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/stripe-12.3.0
Closed

build(deps): Bump stripe from 11.8.0 to 12.3.0#48
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/stripe-12.3.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2023

Bumps stripe from 11.8.0 to 12.3.0.

Release notes

Sourced from stripe's releases.

v12.3.0

  • #1770 Update generated code
    • 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

See the changelog for more details.

v12.3.0-beta.1

  • #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
    • Remove support for state and type on Tax.Registration and TaxRegistrationCreateParams

See the changelog for more details.

v12.2.0

  • #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
  • #1762 Add Deno webhook signing example
  • #1761 Add Deno usage instructions in README

See the changelog for more details.

v12.2.0-beta.1

  • #1751 Update generated code for beta
    • Add support for collect_payment_method and confirm_payment_intent methods on resource Terminal.Reader
    • Add support for paypal_payments on Account.capabilities, AccountCreateParams.capabilities, and AccountUpdateParams.capabilities
    • Add support for new value REVOIE23 on enums Charge.payment_method_details.ideal.bic, PaymentMethod.ideal.bic, and SetupAttempt.payment_method_details.ideal.bic
    • Add support for collect_payment_method and confirm_payment_intent on Terminal.Reader.action
    • Add support for stripe_account on Terminal.Reader.action.process_payment_intent and Terminal.Reader.action.refund_payment
    • Add support for new values collect_payment_method and confirm_payment_intent on enum Terminal.Reader.action.type
    • Add support for new value terminal.reader.action_updated on enums WebhookEndpointCreateParams.enabled_events[] and WebhookEndpointUpdateParams.enabled_events[]

See the changelog for more details.

v12.1.1

No product changes.

See the changelog for more details.

v12.1.0

  • #1754 Update generated code
    • Add support for new value REVOIE23 on enums Charge.payment_method_details.ideal.bic, PaymentMethod.ideal.bic, and SetupAttempt.payment_method_details.ideal.bic
  • #1749 Type extend and ResourceNamespace better

... (truncated)

Changelog

Sourced from stripe's changelog.

12.3.0 - 2023-04-27

  • #1770 Update generated code
    • 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

12.2.0 - 2023-04-20

  • #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
  • #1762 Add Deno webhook signing example
  • #1761 Add Deno usage instructions in README

12.1.1 - 2023-04-13

No product changes.

12.1.0 - 2023-04-13

  • #1754 Update generated code
    • Add support for new value REVOIE23 on enums Charge.payment_method_details.ideal.bic, PaymentMethod.ideal.bic, and SetupAttempt.payment_method_details.ideal.bic
  • #1749 Type extend and ResourceNamespace better

12.0.0 - 2023-04-06

  • #1743 Remove Stripe.default and Stripe.Stripe This was added to maintain backwards compatibility during the transition of stripe-node to a dual ES module / CommonJS package, and should not be functionally necessary.

  • #1742 Pin latest API version as the default ⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️

    In this release, Stripe API Version 2022-11-15 (the latest at time of release) will be sent by default on all requests. The previous default was to use your Stripe account's default API version.

    To successfully upgrade to stripe-node v12, you must either

    1. (Recommended) Upgrade your integration to be compatible with API Version 2022-11-15.

      Please read the API Changelog carefully for each API Version from 2022-11-15 back to your Stripe account's default API version. Determine if you are using any of the APIs that have changed in a breaking way, and adjust your integration accordingly. Carefully test your changes with Stripe Test Mode before deploying them to production.

      You can read the v12 migration guide for more detailed instructions.

    2. (Alternative option) Specify a version other than 2022-11-15 when initializing stripe-node.

      If you were previously initializing stripe-node without an explicit API Version, you can postpone modifying your integration by specifying a version equal to your Stripe account's default API version. For example:

      - const stripe = require('stripe')('sk_test_...');
      + const stripe = require('stripe')('sk_test_...', {
      +   apiVersion: 'YYYY-MM-DD' // Determine your default version from https://dashboard.stripe.com/developers
      + })

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [stripe](https://github.com/stripe/stripe-node) from 11.8.0 to 12.3.0.
- [Release notes](https://github.com/stripe/stripe-node/releases)
- [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-node@v11.8.0...v12.3.0)

---
updated-dependencies:
- dependency-name: stripe
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 1, 2023
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github May 8, 2023

Superseded by #51.

@dependabot dependabot bot closed this May 8, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/stripe-12.3.0 branch May 8, 2023 06:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants