Skip to content

Commit 2211d24

Browse files
committed
Merge remote-tracking branch 'origin/release/8.5.1' into trunk
2 parents 40bba7d + 5c9658d commit 2211d24

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
*** Changelog ***
22

3+
= 8.5.1 - xxxx-xx-xx =
4+
* Fix - Fixed fatal error caused by non-existent class.
5+
36
= 8.5.0 - 2024-07-11 =
47
* Tweak - Remove Giropay from the list of payment methods (for all versions) due deprecation.
58
* Tweak - Additional visual improvement for the webhook configuration notice.

readme.txt

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -128,24 +128,7 @@ If you get stuck, you can ask for help in the Plugin Forum.
128128

129129
== Changelog ==
130130

131-
= 8.5.0 - 2024-07-11 =
132-
* Tweak - Remove Giropay from the list of payment methods (for all versions) due deprecation.
133-
* Tweak - Additional visual improvement for the webhook configuration notice.
134-
* Add - Allow changing display order of payment methods in the new checkout experience.
135-
* Add - Update the payment method associated with a subscription to a PaymentMethod when it's using a Stripe Source that was migrated to PaymentMethods.
136-
* Fix - Prevent subscriptions using Legacy SEPA from switching to Manual Renewal when disabling the Legacy experience.
137-
* Tweak - Add a notice in checkout for Cash App transactions above 2000 USD to inform customers about the decline risk.
138-
* Tweak - Improve the display of warning messages related to webhook configuration.
139-
* Fix - When using a saved payment method, update the payment method's address immediately upon checkout. Fixes issues where Stripe may throw address validation errors.
140-
* Add - Allow customizing the title and description of the UPE payment methods.
141-
* Tweak - Add a statement descriptor preview for Cash App Payments.
142-
* Fix - Ensure payments via redirect are processed through the webhook if the redirect never occurs. Resolves issues of orders being left as pending payment.
143-
* Add - Introduce a way for store managers to automatically configure webhooks on their Stripe account with a single button in the admin settings.
144-
* Fix - Ensure subscriptions purchased with iDEAL or Bancontact are correctly set to SEPA debit prior to processing the intitial payment.
145-
* Tweak - Stripe API version updated to support 2024-06-20.
146-
* Fix - Ensure SEPA tokens are attached to customers in the legacy checkout experience when the payment method is saved. This addresses subscription recurring payment "off-session" errors with SEPA.
147-
* Tweak - Limit the configure webhooks button to 1 click per minute to prevent multiple webhook creations.
148-
* Fix - Address Klarna currency rules to ensure correct presentment and availability based on merchant and customer locations.
149-
* Fix - Prevent saved SEPA Sources from being displayed as available payment methods when the Updated checkout experience is enabled.
131+
= 8.5.1 - xxxx-xx-xx =
132+
* Fix - Fixed fatal error caused by non-existent class.
150133

151134
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-stripe/trunk/changelog.txt).

woocommerce-gateway-stripe.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,8 +734,8 @@ public function checkout_update_email_field_priority( $fields ) {
734734
* Initializes updating subscriptions.
735735
*/
736736
public function initialize_subscriptions_updater() {
737-
// The updater depends on WC_Subscriptions. Bail out if not active.
738-
if ( ! class_exists( 'WC_Subscriptions' ) ) {
737+
// The updater depends on WCS_Background_Repairer. Bail out if class does not exist.
738+
if ( ! class_exists( 'WCS_Background_Repairer' ) ) {
739739
return;
740740
}
741741
require_once dirname( __FILE__ ) . '/includes/migrations/class-wc-stripe-subscriptions-repairer-legacy-sepa-tokens.php';

0 commit comments

Comments
 (0)