From f52997eeff93dd4293d54099816909b94790f6db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 06:30:47 +0000 Subject: [PATCH 1/5] Start `release/2.1.8`. From 2f596f55893738d20dabbf58cfe6695f227b56a3 Mon Sep 17 00:00:00 2001 From: Eason Su Date: Thu, 14 Nov 2024 14:34:24 +0800 Subject: [PATCH 2/5] Remove older changelog entries from readme.txt --- readme.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/readme.txt b/readme.txt index 1ba52246..26445a27 100644 --- a/readme.txt +++ b/readme.txt @@ -54,8 +54,4 @@ Duplicate Google Analytics code causes a conflict in tracking. Remove any other = 2.1.6 - 2024-08-14 = * Tweak - WC 9.2.0 compatibility. -= 2.1.5 - 2024-07-09 = -* Tweak - WC 9.1 compatibility. -* Tweak - WP 6.6 compatibility. - [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-google-analytics-integration/trunk/changelog.txt). From 63e7defb0c9d8a4086d7176c8005a5fe0a76c9d5 Mon Sep 17 00:00:00 2001 From: Eason Su Date: Thu, 14 Nov 2024 14:43:49 +0800 Subject: [PATCH 3/5] woorelease: Product version bump update --- package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 4 ++-- woocommerce-google-analytics-integration.php | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 519b8864..4c6c98d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "woocommerce-google-analytics-integration", - "version": "2.1.7", + "version": "2.1.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "woocommerce-google-analytics-integration", - "version": "2.1.7", + "version": "2.1.8", "license": "GPL-2.0", "dependencies": { "@wordpress/hooks": "^4.0.0", diff --git a/package.json b/package.json index 78f38dbe..a98f29c8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-google-analytics-integration", "title": "Google Analytics for WooCommerce", - "version": "2.1.7", + "version": "2.1.8", "license": "GPL-2.0", "homepage": "https://wordpress.org/plugins/woocommerce-google-analytics-integration/", "repository": { diff --git a/readme.txt b/readme.txt index 26445a27..bb1ab61f 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: woocommerce, automattic, claudiosanches, bor0, royho, laurendavissmith001, cshultz88, mmjones, tomalec Tags: woocommerce, google analytics Requires at least: 6.2 -Tested up to: 6.6 -Stable tag: 2.1.7 +Tested up to: 6.7 +Stable tag: 2.1.8 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html diff --git a/woocommerce-google-analytics-integration.php b/woocommerce-google-analytics-integration.php index cb9a8cce..cf57eeea 100644 --- a/woocommerce-google-analytics-integration.php +++ b/woocommerce-google-analytics-integration.php @@ -5,12 +5,12 @@ * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages. * Author: WooCommerce * Author URI: https://woocommerce.com - * Version: 2.1.7 + * Version: 2.1.8 * WC requires at least: 8.4 - * WC tested up to: 9.3.0 + * WC tested up to: 9.4 * Requires at least: 6.2 * Requires Plugins: woocommerce - * Tested up to: 6.6 + * Tested up to: 6.7 * License: GPLv2 or later * Text Domain: woocommerce-google-analytics-integration * Domain Path: languages/ @@ -24,7 +24,7 @@ if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) { - define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '2.1.7' ); // WRCS: DEFINED_VERSION. + define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '2.1.8' ); // WRCS: DEFINED_VERSION. define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '6.8' ); // Maybe show the GA Pro notice on plugin activation. From b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46 Mon Sep 17 00:00:00 2001 From: Eason Su Date: Thu, 14 Nov 2024 14:44:01 +0800 Subject: [PATCH 4/5] woorelease: Changelog update --- changelog.txt | 6 ++++++ readme.txt | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/changelog.txt b/changelog.txt index 802e6df8..7a1da361 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ *** Changelog *** += 2.1.8 - 2024-11-14 = +* Dev - Fix missing blueprint dependency. +* Dev - WordPress 6.7 Compatibility: Fix the issue that E2E test can't log in to wp-admin. +* Tweak - WC 9.4 compatibility. +* Tweak - WP 6.7 compatibility. + = 2.1.7 - 2024-09-05 = * Tweak - WC 9.3.0 compatibility. diff --git a/readme.txt b/readme.txt index bb1ab61f..2f1019b8 100644 --- a/readme.txt +++ b/readme.txt @@ -48,6 +48,12 @@ Duplicate Google Analytics code causes a conflict in tracking. Remove any other == Changelog == += 2.1.8 - 2024-11-14 = +* Dev - Fix missing blueprint dependency. +* Dev - WordPress 6.7 Compatibility: Fix the issue that E2E test can't log in to wp-admin. +* Tweak - WC 9.4 compatibility. +* Tweak - WP 6.7 compatibility. + = 2.1.7 - 2024-09-05 = * Tweak - WC 9.3.0 compatibility. From 14b90c91c086f89e3cba70e8be9b6374e060bcfd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 06:44:16 +0000 Subject: [PATCH 5/5] Update hooks documentation from branch. --- docs/Hooks.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/Hooks.md b/docs/Hooks.md index fa0237e6..74ca2eca 100644 --- a/docs/Hooks.md +++ b/docs/Hooks.md @@ -8,7 +8,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-google-analytics.php#L272](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-google-analytics.php#L272) +- [class-wc-google-analytics.php#L272](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-google-analytics.php#L272) ## woocommerce_ga_gtag_config @@ -16,7 +16,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-google-gtag-js.php#L268](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-google-gtag-js.php#L268) +- [class-wc-google-gtag-js.php#L268](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-google-gtag-js.php#L268) ## woocommerce_ga_gtag_consent_modes @@ -24,7 +24,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-google-gtag-js.php#L362](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-google-gtag-js.php#L362) +- [class-wc-google-gtag-js.php#L362](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-google-gtag-js.php#L362) ## woocommerce_ga_product_identifier @@ -32,7 +32,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-abstract-google-analytics-js.php#L170](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-abstract-google-analytics-js.php#L170) +- [class-wc-abstract-google-analytics-js.php#L170](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-abstract-google-analytics-js.php#L170) ## woocommerce_gtag_snippet @@ -40,7 +40,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-google-gtag-js.php#L90](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-google-gtag-js.php#L90) +- [class-wc-google-gtag-js.php#L90](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-google-gtag-js.php#L90) ## woocommerce_gtag_tracker_variable @@ -48,7 +48,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [class-wc-google-gtag-js.php#L258](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/includes/class-wc-google-gtag-js.php#L258) +- [class-wc-google-gtag-js.php#L258](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/includes/class-wc-google-gtag-js.php#L258) ## plugin_locale @@ -56,5 +56,5 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [woocommerce-google-analytics-integration.php#L143](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/15301e18ffa785287a0fa0d31664d0ccab1396a1/woocommerce-google-analytics-integration.php#L143) +- [woocommerce-google-analytics-integration.php#L143](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/b78ccc4d6c6e8addd2cd4baf3d91d1f3d59a3c46/woocommerce-google-analytics-integration.php#L143)