Skip to content

Commit d6549c8

Browse files
committed
Merge branch 'trunk' into develop
2 parents 672ffdc + 1dff874 commit d6549c8

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

changelog.txt

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

33
= 9.6.0 - xxxx-xx-xx =
4-
* Fix - Adds a fetch cooldown to the payment method configuration retrieval endpoint to prevent excessive requests.
54
* Fix - Fixes the payment method title when using the classic checkout with the Optimized Checkout enabled.
6-
* Fix - Fix fatal error when checking for a payment method availability using a specific order ID.
7-
* Fix - Stop checking for detached subscriptions for admin users, as it was slowing down wp-admin
85
* Update - Remove BACS from the unsupported 'change payment method for subscription' page.
96
* Fix - Fix payment method title display when new payment settings experience is enabled
107
* Fix - Prevent styles from non-checkout pages affecting the appearance of Stripe element.
8+
9+
= 9.5.1 - 2025-05-17 =
10+
* Fix - Add a fetch cooldown to the payment method configuration retrieval endpoint to prevent excessive requests.
1111
* Fix - Prevent further Stripe API calls if API keys are invalid (401 response).
12+
* Fix - Stop checking for detached subscriptions for admin users, as it was slowing down wp-admin.
13+
* Fix - Fix fatal error when checking for a payment method availability using a specific order ID.
1214

1315
= 9.5.0 - 2025-05-13 =
1416
* Fix - Fixes the listing of payment methods on the classic checkout when the Optimized Checkout is enabled.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "woocommerce-gateway-stripe",
33
"title": "WooCommerce Gateway Stripe",
4-
"version": "9.5.0",
4+
"version": "9.5.1",
55
"license": "GPL-3.0",
66
"homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/",
77
"repository": {

readme.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: credit card, stripe, payments, woocommerce, automattic
44
Requires at least: 6.6
55
Tested up to: 6.8.1
66
Requires PHP: 7.4
7-
Stable tag: 9.5.0
7+
Stable tag: 9.5.1
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -112,14 +112,10 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
112112

113113
= 9.6.0 - xxxx-xx-xx =
114114

115-
* Fix - Adds a fetch cooldown to the payment method configuration retrieval endpoint to prevent excessive requests.
116115
* Fix - Fixes the payment method title when using the classic checkout with the Optimized Checkout enabled.
117-
* Fix - Fix fatal error when checking for a payment method availability using a specific order ID.
118-
* Fix - Stop checking for detached subscriptions for admin users, as it was slowing down wp-admin
119116
* Update - Remove BACS from the unsupported 'change payment method for subscription' page.
120117
* Fix - Fix payment method title display when new payment settings experience is enabled
121118
* Fix - Prevent styles from non-checkout pages affecting the appearance of Stripe element.
122-
* Fix - Prevent further Stripe API calls if API keys are invalid (401 response).
123119

124120

125121
[See changelog for full details across 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
@@ -5,7 +5,7 @@
55
* Description: Take credit card payments on your store using Stripe.
66
* Author: Stripe
77
* Author URI: https://stripe.com/
8-
* Version: 9.5.0
8+
* Version: 9.5.1
99
* Requires Plugins: woocommerce
1010
* Requires at least: 6.6
1111
* Tested up to: 6.8
@@ -22,7 +22,7 @@
2222
/**
2323
* Required minimums and constants
2424
*/
25-
define( 'WC_STRIPE_VERSION', '9.5.0' ); // WRCS: DEFINED_VERSION.
25+
define( 'WC_STRIPE_VERSION', '9.5.1' ); // WRCS: DEFINED_VERSION.
2626
define( 'WC_STRIPE_MIN_PHP_VER', '7.4' );
2727
define( 'WC_STRIPE_MIN_WC_VER', '9.6' );
2828
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '9.7' );

0 commit comments

Comments
 (0)