Stripe for Craft Commerce
Version 4.1.6
February 6, 2025
- Fixed a bug where checkout session completion would not mark transactions as successful from webhooks. (#318)
- Fixed a bug where choosing bank transfer as a payment method wouldn’t complete an order. (#315)
- Fixed a PHP error that could occur when handling a webhook request.
- Added
craft\commerce\stripe\SubscriptionGateway::handleCustomerCashBalanceTransaction()
. - Added
craft\commerce\stripe\SubscriptionGateway::transactionSupportsRefund()
.
Version 4.1.5.3
February 5, 2025
- Fixed a PHP error that could occur when handling a webhook request.
Version 4.1.5.2
February 3, 2025
- Fixed a JavaScript error that could occur when attempting to make a payment on a completed order. (#312)
Version 4.1.5.1
November 13, 2024
- Fixed a bug where free orders that completed immediately were not redirecting to the order success page. (#313)
Version 4.1.5
August 7, 2024
- Fixed a bug the billing issues payment form did not display correctly for subscriptions.
Version 4.1.4
July 18, 2024
- Stripe for Craft Commerce now requires Craft Commerce 4.6.5 or later.
Version 4.1.2.3
June 18, 2024
- Fixed a SQL performance issue when upgrading. (#190)
Version 4.1.2.2
April 9, 2024
- Fixed a PHP error that could occur when handling a webhook request. (#294)
Version 4.1.2.1
March 28, 2024
- Fixed a bug where floating point rounding precision could cause payments/refunds to fail. (#296)
Version 4.1.1
January 12, 2024
- Fixed a bug where legacy default payment methods were not being set as default. (#280)
- Fixed a bug that could cause duplicate payment sources to be created. (#281)
- Fixed a bug where it wasn’t possible to access the Stripe instance from JavaScript. (#275)
- Fixed a bug where not all enabled payment methods types were being shown when creating a payment source. (#251, #160)
- Fixed a bug where changing a partial payment amount wouldn’t update the payment intent. (#279)
Version 4.1.0
December 19, 2023
- Stripe for Craft Commerce now requires Commerce 4.3.3 or later.
- It is now possible to create SEPA and Bacs Direct Debit payment sources.
- Payment method data is now stored in expanded form within transaction response data. (#276)
- Billing address information is now passed to the payment intent. (#257, #258)
- Fixed a bug where it wasn’t possible to pay using the SEPA Direct Debit payment method. (#265)
- Fixed a bug where failed PayPal payments would cause infinite redirects. (#266)
- Fixed a bug where JavaScript files were being served incorrectly. (#270)
- Added
craft\commerce\stripe\SubscriptionGateway::handlePaymentIntentSucceeded()
.
Version 4.0.1.1
October 25, 2023
- Restored support for backend payments using the old payment form.
- Fixed missing icon.
Version 4.0.1
September 28, 2023
- Fixed a PHP error that occurred when switching a subscription’s plan.
Version 4.0.0
September 13, 2023
- Added support for all of Stripe’s payment methods, including Apple Pay and Google Wallet. (#223, #222,#212)
- Added support for Stripe Billing.
- Added support for Stripe Checkout.
- Added support for syncing customer payment methods.
- Plans are now kept in sync with Stripe plans. (#240)
- Customer information is now kept in sync with Stripe customers.
- Improved logging.
- Stripe now uses the
2022-11-15
version of the Stripe API. - Added the
commerce-stripe/customers/billing-portal-redirect
action. - Added the
commerce-stripe/customers/create-setup-intent
action. - Added the
commerce-stripe/sync/payment-methods
command. - Added
craft\commerce\stripe\events\BuildSetupIntentRequestEvent
. - Added
craft\commerce\stripe\gateways\PaymentIntents::getBillingPortalUrl()
. - Removed
craft\commerce\stripe\base\Gateway::normalizePaymentToken()
. - Removed
craft\commerce\stripe\events\BuildGatewayRequestEvent::$metadata
.BuildGatewayRequestEvent::$request
should be used instead. - Deprecated the
commerce-stripe/default/fetch-plans
action. - Deprecated creating new payment sources via the
commerce/subscriptions/subscribe
action. - Fixed a bug where
craft\commerce\stripe\base\SubscriptionGateway::getSubscriptionPlans()
was returning incorrectly-formatted data.