Skip to content

Commit a62e567

Browse files
authored
packaged version 4.32.0 (#373)
1 parent 2aed8fa commit a62e567

19 files changed

+560
-92
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [4.32.0]
4+
5+
### Changed
6+
- Improved products processing by adding pre-caching logic on the product catalog after each "Fast-Headless-Import and store minimal product data option" import. This should reduce the number of queries and the risk of the "too many requests" issue occurring
7+
- Allow import abort if it is stuck in the 'Completed' status
8+
9+
### Fixed
10+
- Fixed issue with product duplication during "Fast-Headless-Import and store minimal product data option" import.
11+
- Fixed "Respect General Inventory Settings" (Customizer -> Bigcommerce -> Product Catalog) toggle behavior: radio button switch allows disabling or enabling support for the general Bigcommerce out of stock inventory settings
12+
- Allow renaming channel from Bigcommerce -> Settings -> Channel without errors
13+
314
## [4.31.0]
415

516
### Added
@@ -1809,6 +1820,7 @@
18091820
in fact, reset postdata, so far as Gutenberg 3.2.0 is concerned.
18101821

18111822

1823+
[4.32.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/4.31.0...4.32.0
18121824
[4.31.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/4.30.0...4.31.0
18131825
[4.30.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/4.29.0...4.30.0
18141826
[4.29.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/4.28.0...4.29.0

bigcommerce.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: BigCommerce for WordPress
44
Description: Scale your ecommerce business with WordPress on the front-end and BigCommerce on the back end. Free up server resources from things like catalog management, processing payments, and managing fulfillment logistics.
55
Author: BigCommerce
6-
Version: 4.31.0
6+
Version: 4.32.0
77
Author URI: https://www.bigcommerce.com/wordpress
88
Requires PHP: 7.4.0
99
Text Domain: bigcommerce

build-timestamp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?php
2-
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '3.48.07.11.2022');
2+
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '2.41.08.01.2022');

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: bigcommerce, moderntribe, jbrinley, becomevocal, vincentlistrani,
33
Tags: ecommerce, online store, sell online, storefront, retail, online shop, bigcommerce, big commerce, e-commerce, physical products, buy buttons, commerce, shopping cart, checkout, cart, shop, headless commerce, shipping, payments, fulfillment
44
Requires at least: 5.2
55
Tested up to: 5.9.2
6-
Stable tag: 4.31.0
6+
Stable tag: 4.32.0
77
Requires PHP: 7.4.0
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

src/BigCommerce/Container/Import.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ private function cron( Container $container ) {
130130
$container[ self::PRODUCT_CLEANUP ]->run();
131131
} ), 10, 0 );
132132

133-
add_action( Processors\Cleanup::CLEAN_PRODUCTS_TRANSIENT, $this->create_callback( 'clean_products_data_transient', function ( $offset ) use ( $container ) {
134-
$container[ self::CLEANUP ]->clean_products_transient( $offset );
133+
add_action( Processors\Cleanup::CLEAN_PRODUCTS_TRANSIENT, $this->create_callback( 'clean_products_data_transient', function ( $offset = 0, $partially = false ) use ( $container ) {
134+
$container[ self::CLEANUP ]->refresh_products_transient( $offset, $partially );
135135
} ), 10, 1 );
136136
}
137137

0 commit comments

Comments
 (0)