Skip to content

Commit 499a251

Browse files
committed
Merge branch 'trunk' into develop
2 parents a549835 + 9a258c5 commit 499a251

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
* Add - Add support for Stripe Link payments via the new Stripe Checkout Element on the product, cart, checkout and pay for order pages.
1919
* Add - Show ECE button preview on settings page.
2020
* Tweak - Remove the subscription order notes added each time a source wasn't migrated.
21+
22+
= 8.8.2 - 2024-11-07 =
2123
* Fix - Prevent marking renewal orders as processing/completed multiple times due to handling the Stripe webhook in parallel.
2224
* Dev - Refactor lock_order_payment() to use order meta instead of transients.
2325
* Update - Process successful payment intent webhooks asynchronously.

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": "8.8.1",
4+
"version": "8.8.2",
55
"license": "GPL-3.0",
66
"homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/",
77
"repository": {

readme.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, bancont
44
Requires at least: 6.4
55
Tested up to: 6.6
66
Requires PHP: 7.4
7-
Stable tag: 8.8.1
7+
Stable tag: 8.8.2
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -128,8 +128,5 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
128128
* Add - Add support for Stripe Link payments via the new Stripe Checkout Element on the product, cart, checkout and pay for order pages.
129129
* Add - Show ECE button preview on settings page.
130130
* Tweak - Remove the subscription order notes added each time a source wasn't migrated.
131-
* Fix - Prevent marking renewal orders as processing/completed multiple times due to handling the Stripe webhook in parallel.
132-
* Dev - Refactor lock_order_payment() to use order meta instead of transients.
133-
* Update - Process successful payment intent webhooks asynchronously.
134131

135132
[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
@@ -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: 8.8.1
8+
* Version: 8.8.2
99
* Requires Plugins: woocommerce
1010
* Requires at least: 6.4
1111
* Tested up to: 6.6
@@ -22,7 +22,7 @@
2222
/**
2323
* Required minimums and constants
2424
*/
25-
define( 'WC_STRIPE_VERSION', '8.8.1' ); // WRCS: DEFINED_VERSION.
25+
define( 'WC_STRIPE_VERSION', '8.8.2' ); // WRCS: DEFINED_VERSION.
2626
define( 'WC_STRIPE_MIN_PHP_VER', '7.3.0' );
2727
define( 'WC_STRIPE_MIN_WC_VER', '7.4' );
2828
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '7.5' );

0 commit comments

Comments
 (0)