Skip to content

Commit

Permalink
Merge pull request #2675 from woocommerce/release/2.8.7
Browse files Browse the repository at this point in the history
Release 2.8.7
  • Loading branch information
eason9487 authored Nov 14, 2024
2 parents dffee9c + 8f73f29 commit 16df5ec
Show file tree
Hide file tree
Showing 15 changed files with 355 additions and 407 deletions.
3 changes: 3 additions & 0 deletions bin/cleanup-vendor-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@

echo Removing unused vendor files to reduce space
rm vendor/symfony/validator/Resources/translations/*.xlf || true

echo Removing vendor files that prints php information
rm vendor/googleads/google-ads-php/scripts/print_php_information.php || true
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
*** Google for WooCommerce Changelog ***

= 2.8.7 - 2024-11-14 =
* Dev - WordPress 6.7 Compatibility: Fix the issue that E2E test can't log in to wp-admin.
* Fix - Remove a Google Ads API vendor file that prints php information.
* Fix - WordPress 6.7 Compatibility: Avoid the block toolbar appearing when interacting blockified product editor.
* Tweak - WC 9.4 compatibility.
* Tweak - WP 6.7 compatibility.
* Tweak - WordPress 6.7 Compatibility: Adjust the layout of the radio control to align well with the extended content.
* Tweak - WordPress 6.7 Compatibility: Avoid errors in the database where a TEXT type can't have a default value.

= 2.8.6 - 2024-10-02 =
* Dev - Fix missing blueprint dependency.
* Tweak - Adjust WP Proxy Response to force the string type for the price fields.
Expand Down
8 changes: 4 additions & 4 deletions google-listings-and-ads.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
* Plugin Name: Google for WooCommerce
* Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/
* Description: Native integration with Google that allows merchants to easily display their products across Google’s network.
* Version: 2.8.6
* Version: 2.8.7
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Text Domain: google-listings-and-ads
* Requires at least: 5.9
* Tested up to: 6.6
* Tested up to: 6.7
* Requires PHP: 7.4
* Requires PHP Architecture: 64 bits
* Requires Plugins: woocommerce
* WC requires at least: 6.9
* WC tested up to: 9.3.0
* WC tested up to: 9.4
* Woo:
*
* @package WooCommerce\Admin
Expand All @@ -30,7 +30,7 @@

defined( 'ABSPATH' ) || exit;

define( 'WC_GLA_VERSION', '2.8.6' ); // WRCS: DEFINED_VERSION.
define( 'WC_GLA_VERSION', '2.8.7' ); // WRCS: DEFINED_VERSION.
define( 'WC_GLA_MIN_PHP_VER', '7.4' );
define( 'WC_GLA_MIN_WC_VER', '6.9' );

Expand Down
3 changes: 2 additions & 1 deletion js/src/blocks/product-channel-visibility/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"supports": {
"html": false,
"inserter": false,
"lock": false
"lock": false,
"__experimentalToolbar": false
}
}
3 changes: 2 additions & 1 deletion js/src/blocks/product-date-time-field/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"supports": {
"html": false,
"inserter": false,
"lock": false
"lock": false,
"__experimentalToolbar": false
}
}
3 changes: 2 additions & 1 deletion js/src/blocks/product-onboarding-prompt/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"supports": {
"html": false,
"inserter": false,
"lock": false
"lock": false,
"__experimentalToolbar": false
}
}
3 changes: 2 additions & 1 deletion js/src/blocks/product-select-field/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"supports": {
"html": false,
"inserter": false,
"lock": false
"lock": false,
"__experimentalToolbar": false
}
}
3 changes: 2 additions & 1 deletion js/src/blocks/product-select-with-text-field/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"supports": {
"html": false,
"inserter": false,
"lock": false
"lock": false,
"__experimentalToolbar": false
}
}
2 changes: 2 additions & 0 deletions js/src/components/app-radio-content-control/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
// Hack to align multiple lines of label after the radio/checkbox to the same indentation,
// by placing them on the same brid.
.components-radio-control,
.components-radio-control .components-flex,
.components-base-control__label,
.components-base-control__field,
.components-base-control__field .components-flex,
.components-radio-control__option {
Expand Down
Loading

0 comments on commit 16df5ec

Please sign in to comment.