Skip to content

Commit ebe69de

Browse files
committed
Update WooCommerce plugin from 10.9.3 to 10.9.4
1 parent c56e229 commit ebe69de

8 files changed

Lines changed: 2034 additions & 2057 deletions

File tree

wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is distributed under the same license as the WooCommerce plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: WooCommerce 10.9.3\n"
5+
"Project-Id-Version: WooCommerce 10.9.4\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2026-07-03T09:31:26+00:00\n"
12+
"POT-Creation-Date: 2026-07-07T13:45:02+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.12.0\n"
1515
"X-Domain: woocommerce\n"

wp-content/plugins/woocommerce/includes/class-wc-customer.php

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,27 +1266,4 @@ public function set_shipping_phone( $value ) {
12661266
public function set_is_paying_customer( $is_paying_customer ) {
12671267
$this->set_prop( 'is_paying_customer', (bool) $is_paying_customer );
12681268
}
1269-
1270-
/**
1271-
* Overrides the save method to guard against saves with no data changed.
1272-
*
1273-
* @since 10.9.0
1274-
* @return int
1275-
*/
1276-
public function save() {
1277-
$customer_id = $this->get_id();
1278-
if ( $customer_id ) {
1279-
$meta_data = $this->meta_data ?? array();
1280-
$props_changed = ! empty( $this->password ) || ! empty( $this->changes );
1281-
$state_changed = $props_changed || ! empty( array_filter( $meta_data, static fn( $meta ) => ! $meta->id || ! empty( $meta->get_changes() ) ) );
1282-
if ( ! $state_changed ) {
1283-
// Backward compatibility: e.g. '( new WC_Customer( $customer_id ) )->save()' as means to trigger integrations.
1284-
do_action( 'woocommerce_update_customer', $customer_id, $this ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.HookCommentWrongStyle
1285-
1286-
return $this->get_id();
1287-
}
1288-
}
1289-
1290-
return parent::save();
1291-
}
12921269
}

wp-content/plugins/woocommerce/includes/class-woocommerce.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ final class WooCommerce {
5656
*
5757
* @var string
5858
*/
59-
public $version = '10.9.3';
59+
public $version = '10.9.4';
6060

6161
/**
6262
* WooCommerce Schema version.

wp-content/plugins/woocommerce/readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: online store, ecommerce, shop, shopping cart, sell online
44
Requires at least: 6.9
55
Tested up to: 7.0
66
Requires PHP: 7.4
7-
Stable tag: 10.9.2
7+
Stable tag: 10.9.3
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -170,11 +170,11 @@ WooCommerce comes with some sample data you can use to see how products look; im
170170

171171
== Changelog ==
172172

173-
= 10.9.3 2026-07-03 =
173+
= 10.9.4 2026-07-07 =
174174

175175
**WooCommerce**
176176

177-
* Fix - Fix a fatal error in WC_Email::send_notification() when a filtered mail callback returns a non-bool value. [#66219](https://github.com/woocommerce/woocommerce/pull/66219)
177+
* Fix - Fix is_vat_exempt being not correctly applied during block checkout for logged-in users. [#66342](https://github.com/woocommerce/woocommerce/pull/66342)
178178

179179

180180
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt).

wp-content/plugins/woocommerce/vendor/composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'woocommerce/woocommerce',
4-
'pretty_version' => '10.9.3',
5-
'version' => '10.9.3.0',
4+
'pretty_version' => '10.9.4',
5+
'version' => '10.9.4.0',
66
'reference' => null,
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
@@ -194,8 +194,8 @@
194194
'dev_requirement' => false,
195195
),
196196
'woocommerce/woocommerce' => array(
197-
'pretty_version' => '10.9.3',
198-
'version' => '10.9.3.0',
197+
'pretty_version' => '10.9.4',
198+
'version' => '10.9.4.0',
199199
'reference' => null,
200200
'type' => 'wordpress-plugin',
201201
'install_path' => __DIR__ . '/../../',

0 commit comments

Comments
 (0)