Skip to content

Commit

Permalink
Update WooCommerce plugin from 9.2.2 to 9.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpoke-bot committed Aug 27, 2024
1 parent f2ff86d commit d136281
Show file tree
Hide file tree
Showing 8 changed files with 1,285 additions and 1,286 deletions.
4 changes: 2 additions & 2 deletions wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce 9.2.2\n"
"Project-Id-Version: WooCommerce 9.2.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-08-22T14:58:22+00:00\n"
"POT-Creation-Date: 2024-08-26T13:29:03+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.10.0\n"
"X-Domain: woocommerce\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ final class WooCommerce {
*
* @var string
*/
public $version = '9.2.2';
public $version = '9.2.3';

/**
* WooCommerce Schema version.
Expand Down
7 changes: 3 additions & 4 deletions wp-content/plugins/woocommerce/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: online store, ecommerce, shop, shopping cart, sell online
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 7.4
Stable tag: 9.2.1
Stable tag: 9.2.2
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -169,12 +169,11 @@ WooCommerce comes with some sample data you can use to see how products look; im

== Changelog ==

= 9.2.2 2024-08-22 =
= 9.2.3 2024-08-26 =

**WooCommerce**

* Fix - Revert PR#48731 to address possible issues with plugins using WC's bundled select2 package. [#50854](https://github.com/woocommerce/woocommerce/pull/50854)
* Fix - Partially revert PR#48709 as it could cause issues for some users of the REST API system_status endpoint. [#50881](https://github.com/woocommerce/woocommerce/pull/50881)
* Fix - Ensure translation is fully loaded for certain parts of Checkout block. [#50892](https://github.com/woocommerce/woocommerce/pull/50892)


[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt).
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ public function register_assets() {
$this->api->register_script( 'wc-price-format', 'assets/client/blocks/price-format.js', array(), false );

// Vendor scripts for blocks frontends (not including cart and checkout).
$this->api->register_script( 'wc-blocks-frontend-vendors', $this->api->get_block_asset_build_path( 'wc-blocks-frontend-vendors-frontend' ), array(), false );
$this->api->register_script( 'wc-blocks-frontend-vendors', $this->api->get_block_asset_build_path( 'wc-blocks-frontend-vendors-frontend' ), array(), true );

// Cart and checkout frontend scripts.
$this->api->register_script( 'wc-cart-checkout-vendors', $this->api->get_block_asset_build_path( 'wc-cart-checkout-vendors-frontend' ), array(), false );
$this->api->register_script( 'wc-cart-checkout-base', $this->api->get_block_asset_build_path( 'wc-cart-checkout-base-frontend' ), array(), false );
$this->api->register_script( 'wc-cart-checkout-vendors', $this->api->get_block_asset_build_path( 'wc-cart-checkout-vendors-frontend' ), array(), true );
$this->api->register_script( 'wc-cart-checkout-base', $this->api->get_block_asset_build_path( 'wc-cart-checkout-base-frontend' ), array(), true );
$this->api->register_script( 'wc-blocks-checkout', 'assets/client/blocks/blocks-checkout.js' );
$this->api->register_script( 'wc-blocks-components', 'assets/client/blocks/blocks-components.js' );

Expand Down
8 changes: 4 additions & 4 deletions wp-content/plugins/woocommerce/vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php return array(
'root' => array(
'name' => 'woocommerce/woocommerce',
'pretty_version' => '9.2.2',
'version' => '9.2.2.0',
'pretty_version' => '9.2.3',
'version' => '9.2.3.0',
'reference' => null,
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
Expand Down Expand Up @@ -167,8 +167,8 @@
'dev_requirement' => false,
),
'woocommerce/woocommerce' => array(
'pretty_version' => '9.2.2',
'version' => '9.2.2.0',
'pretty_version' => '9.2.3',
'version' => '9.2.3.0',
'reference' => null,
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
Expand Down
Loading

0 comments on commit d136281

Please sign in to comment.