Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump stripe/stripe-php from 9.8.0 to 11.0.0 in /server/php #241

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 17, 2023

Bumps stripe/stripe-php from 9.8.0 to 11.0.0.

Release notes

Sourced from stripe/stripe-php's releases.

v11.0.0

⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️

See the changelog for more details.

v10.22.0-beta.1

  • #1545 Update generated code for beta
    • Add support for paypal on PaymentMethodConfiguration

See the changelog for more details.

v10.21.0

  • #1546 Update generated code
    • Add support for new value payment_reversal on enum BalanceTransaction.type
    • Add support for new value adjusted_for_overdraft on enum CustomerBalanceTransaction.type

See the changelog for more details.

v10.21.0-beta.1

  • #1541 Update generated code for beta
    • Add support for submit_card test helper method on resource Issuing.Card

See the changelog for more details.

v10.20.0

  • #1544 Update generated code
  • #1539 Update generated code
    • Add support for subscription_details on Invoice
    • Add support for new values sepa_debit_fingerprint and us_bank_account_fingerprint on enum Radar.ValueList.item_type

See the changelog for more details.

v10.20.0-beta.2

  • #1537 Update generated code for beta
    • Release specs are identical.
  • #1535 Update generated code for beta
    • Add support for new resource Tax.Form
    • Add support for all, pdf, and retrieve methods on resource Form
    • Add support for payment_method_configuration_details on Checkout.Session and SetupIntent
  • #1532 Update generated code for beta
  • #1531 Merge master into beta

See the changelog for more details.

v10.20.0-beta.1

  • Updated stable APIs to the latest version

See the changelog for more details.

v10.19.0

... (truncated)

Changelog

Sourced from stripe/stripe-php's changelog.

11.0.0 - 2023-08-16

⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️

Version pinning

In this release, Stripe API Version 2023-08-16 (the latest at time of release) will be sent by default on all requests. This is a significant change with wide ramifications. The API version affects the properties you see on responses, the parameters you are allowed to send on requests, and so on. The previous default was to use your Stripe account's default API version.

To successfully upgrade to stripe-php v11, you must either

  1. (Recommended) Upgrade your integration to be compatible with API Version 2023-08-16.

    Please read the API Changelog carefully for each API Version from 2023-08-16 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 v11 migration guide for more detailed instructions.

  2. (Alternative option) Specify a version other than 2023-08-16 when initializing stripe-php.

    If you were previously initializing stripe-php 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:

      // if using StripeClient
    - $stripe = new \Stripe\StripeClient('sk_test_xyz');
    + $stripe = new \Stripe\StripeClient([
    +   'api_key' => 'sk_test_xyz',
        'stripe_version' => '2020-08-27',
    + ]);
    // if using the global client
    Stripe.apiKey = "sk_test_xyz";
    
    Stripe::setApiVersion('2020-08-27');
  3. If you were already initializing stripe-php with an explicit API Version, upgrading to v11 will not affect your integration.

    Read the v11 migration guide for more details.

    Going forward, each major release of this library will be pinned by default to the latest Stripe API Version at the time of release.

    That is, instead of upgrading stripe-php and separately upgrading your Stripe API Version through the Stripe Dashboard, whenever you upgrade major versions of stripe-php, you should also upgrade your integration to be compatible with the latest Stripe API version.

Other changes in v11.0.0

" ⚠️" symbol highlights breaking changes.

  • #1553⚠️ Remove deprecated enum value Invoice.STATUS_DELETE

  • #1550 PHPDoc changes

    • Remove support for alternate_statement_descriptors, destination, and dispute on Charge
    • Remove support for value charge_refunded from enum Dispute.status
    • Remove support for rendering on Invoice
    • Remove support for attributes, caption, and deactivate_on on Product

10.21.0 - 2023-08-10

... (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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/stripe-php](https://github.com/stripe/stripe-php) from 9.8.0 to 11.0.0.
- [Release notes](https://github.com/stripe/stripe-php/releases)
- [Changelog](https://github.com/stripe/stripe-php/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-php@v9.8.0...v11.0.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Aug 17, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 24, 2023

Superseded by #246.

@dependabot dependabot bot closed this Aug 24, 2023
@dependabot dependabot bot deleted the dependabot/composer/server/php/stripe/stripe-php-11.0.0 branch August 24, 2023 09:58
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 php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants