Skip to content

Commit

Permalink
Bump stripe/stripe-php from 13.17.0 to 14.4.0 in /_backend (#3523)
Browse files Browse the repository at this point in the history
* Bump stripe/stripe-php from 13.17.0 to 14.4.0 in /_backend

Bumps [stripe/stripe-php](https://github.com/stripe/stripe-php) from 13.17.0 to 14.4.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@v13.17.0...v14.4.0)

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

Signed-off-by: dependabot[bot] <[email protected]>

* Bump stripe API version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Hewitt <[email protected]>
  • Loading branch information
dependabot[bot] and davidmhewitt authored May 6, 2024
1 parent 6c9a7c3 commit 258880c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _backend/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
},
"require": {
"stripe/stripe-php": "13.17.0",
"stripe/stripe-php": "14.4.0",
"sentry/sdk": "^3.3.0",
"erusev/parsedown-extra": "^0.8",
"geoip2/geoip2": "^3.0",
Expand Down
14 changes: 7 additions & 7 deletions _backend/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/create-checkout-session.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

$stripe = new \Stripe\StripeClient([
"api_key" => $config['stripe_sk'],
"stripe_version" => "2023-08-16"
"stripe_version" => "2024-04-10"
]);

if (isset($_POST['amount'])) {
Expand Down
2 changes: 1 addition & 1 deletion api/download.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

$stripe = new \Stripe\StripeClient([
"api_key" => $config['stripe_sk'],
"stripe_version" => "2023-08-16"
"stripe_version" => "2024-04-10"
]);

/**
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

$stripe = new \Stripe\StripeClient([
"api_key" => $config['stripe_sk'],
"stripe_version" => "2023-08-16"
"stripe_version" => "2024-04-10"
]);

if (isset($_GET['checkout_session_id'])) {
Expand Down

0 comments on commit 258880c

Please sign in to comment.