Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.8.0 - Merge trunk to develop #2484

Merged
merged 6 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*** Google for WooCommerce Changelog ***

= 2.8.0 - 2024-07-31 =
* Add Google API Pull method.
* Rebranding Google Listings and Ads with Google for WooCommerce.

= 2.7.7 - 2024-07-24 =
* Dev - Fix E2E tests failed with WC 9.1.
* Tweak - Make campaign preview card responsive.
Expand Down
4 changes: 2 additions & 2 deletions google-listings-and-ads.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* 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.7.7
* Version: 2.8.0
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Text Domain: google-listings-and-ads
Expand All @@ -30,7 +30,7 @@

defined( 'ABSPATH' ) || exit;

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

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "google-listings-and-ads",
"title": "Google for WooCommerce",
"version": "2.7.7",
"version": "2.8.0",
"description": "Google for WooCommerce",
"author": "Automattic",
"license": "GPL-3.0-or-later",
Expand Down
9 changes: 5 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
Requires PHP Architecture: 64 Bits
Stable tag: 2.7.7
Stable tag: 2.8.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -111,6 +111,10 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis

== Changelog ==

= 2.8.0 - 2024-07-31 =
* Add Google API Pull method.
* Rebranding Google Listings and Ads with Google for WooCommerce.

= 2.7.7 - 2024-07-24 =
* Dev - Fix E2E tests failed with WC 9.1.
* Tweak - Make campaign preview card responsive.
Expand All @@ -120,7 +124,4 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis
* Tweak - WC 9.1 compatibility.
* Tweak - WP 6.6 compatibility.

= 2.7.5 - 2024-06-26 =
* Add - Add an query parameter `campaign=saved` to the dashboard URL after the campaign was created.

[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/google-listings-and-ads/trunk/changelog.txt).
2 changes: 1 addition & 1 deletion src/API/Site/Controllers/RestAPI/AuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\API\Site\Controllers\RestAPI
*
* @since x.x.x
* @since 2.8.0
*/
class AuthController extends BaseController {

Expand Down
4 changes: 2 additions & 2 deletions src/API/WP/NotificationsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Class NotificationsService
* This class implements a service to Notify a partner about Shop Data Updates
*
* @since x.x.x
* @since 2.8.0
* @package Automattic\WooCommerce\GoogleListingsAndAds\API\WP
*/
class NotificationsService implements Service, OptionsAwareInterface {
Expand Down Expand Up @@ -84,7 +84,7 @@ public function notify( string $topic, $item_id = null, $data = [] ): bool {
/**
* Allow users to disable the notification request.
*
* @since x.x.x
* @since 2.8.0
*
* @param bool $value The current filter value. True by default.
* @param int $item_id The item_id for the notification.
Expand Down
2 changes: 1 addition & 1 deletion src/API/WP/OAuthService.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Class OAuthService
* This class implements a service to handle WordPress.com OAuth.
*
* @since x.x.x
* @since 2.8.0
* @package Automattic\WooCommerce\GoogleListingsAndAds\API\WP
*/
class OAuthService implements Service, OptionsAwareInterface, Deactivateable, ContainerAwareInterface {
Expand Down
2 changes: 1 addition & 1 deletion src/Coupon/CouponHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public function is_ready_to_notify( WC_Coupon $coupon ): bool {
/**
* Allow users to filter if a coupon is ready to notify.
*
* @since x.x.x
* @since 2.8.0
*
* @param bool $value The current filter value.
* @param WC_Coupon $coupon The coupon for the notification.
Expand Down
2 changes: 1 addition & 1 deletion src/Coupon/SyncerHooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ protected function handle_delete_coupon( int $coupon_id ) {
/**
* Send the notification for coupon deletion
*
* @since x.x.x
* @since 2.8.0
* @param int $coupon_id
*/
protected function maybe_send_delete_notification( int $coupon_id ): void {
Expand Down
2 changes: 1 addition & 1 deletion src/DB/Query/ShippingTimeQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function sanitize_value( string $column, $value ) {
/**
* Get all shipping times.
*
* @since x.x.x
* @since 2.8.0
*
* @return array
*/
Expand Down
4 changes: 2 additions & 2 deletions src/HelperTraits/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected function is_jetpack_connected(): bool {
/**
* Encode data to Base64URL
*
* @since x.x.x
* @since 2.8.0
*
* @param string $data The string that will be base64 URL encoded.
*
Expand All @@ -101,7 +101,7 @@ protected function base64url_encode( $data ): string {
/**
* Decode Base64URL string
*
* @since x.x.x
* @since 2.8.0
*
* @param string $data The data that will be base64 URL encoded.
*
Expand Down
Loading