diff --git a/changelog.txt b/changelog.txt index c9aa6081..4cee3c05 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ *** Changelog *** += 2.0.3 - 2024-03-13 = +* Tweak - WC 8.7 compatibility. +* Tweak - WP 6.5 compatibility. + = 2.0.2 - 2024-03-12 = * Dev - Add E2E testing to track events across all page types. * Fix - Add to cart & select content events for All Products Block. diff --git a/docs/Hooks.md b/docs/Hooks.md index d12ac4df..f6336a1b 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#L269](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/bb87d9390f30d3cf16d29595393f4902699704ee/includes/class-wc-google-analytics.php#L269) +- [class-wc-google-analytics.php#L269](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/1aac4d6fe981954c4ad52e5667dccd51b92809a7/includes/class-wc-google-analytics.php#L269) ## 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#L236](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/bb87d9390f30d3cf16d29595393f4902699704ee/includes/class-wc-google-gtag-js.php#L236) +- [class-wc-google-gtag-js.php#L236](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/1aac4d6fe981954c4ad52e5667dccd51b92809a7/includes/class-wc-google-gtag-js.php#L236) ## 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#L320](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/bb87d9390f30d3cf16d29595393f4902699704ee/includes/class-wc-google-gtag-js.php#L320) +- [class-wc-google-gtag-js.php#L320](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/1aac4d6fe981954c4ad52e5667dccd51b92809a7/includes/class-wc-google-gtag-js.php#L320) ## 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/bb87d9390f30d3cf16d29595393f4902699704ee/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/1aac4d6fe981954c4ad52e5667dccd51b92809a7/includes/class-wc-abstract-google-analytics-js.php#L170) ## woocommerce_gtag_tracker_variable @@ -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#L209](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/bb87d9390f30d3cf16d29595393f4902699704ee/includes/class-wc-google-gtag-js.php#L209) +- [class-wc-google-gtag-js.php#L209](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/1aac4d6fe981954c4ad52e5667dccd51b92809a7/includes/class-wc-google-gtag-js.php#L209) ## plugin_locale @@ -48,5 +48,5 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [woocommerce-google-analytics-integration.php#L142](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/bb87d9390f30d3cf16d29595393f4902699704ee/woocommerce-google-analytics-integration.php#L142) +- [woocommerce-google-analytics-integration.php#L142](https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/1aac4d6fe981954c4ad52e5667dccd51b92809a7/woocommerce-google-analytics-integration.php#L142) diff --git a/package-lock.json b/package-lock.json index acaf7651..ad0dd0ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "woocommerce-google-analytics-integration", - "version": "2.0.2", + "version": "2.0.3", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 5605caa8..d4a841dc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-google-analytics-integration", "title": "Google Analytics for WooCommerce", - "version": "2.0.2", + "version": "2.0.3", "license": "GPL-2.0", "homepage": "https://wordpress.org/plugins/woocommerce-google-analytics-integration/", "repository": { diff --git a/readme.txt b/readme.txt index 74187552..b6863591 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.4 -Stable tag: 2.0.2 +Tested up to: 6.5 +Stable tag: 2.0.3 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -48,6 +48,10 @@ Duplicate Google Analytics code causes a conflict in tracking. Remove any other == Changelog == += 2.0.3 - 2024-03-13 = +* Tweak - WC 8.7 compatibility. +* Tweak - WP 6.5 compatibility. + = 2.0.2 - 2024-03-12 = * Dev - Add E2E testing to track events across all page types. * Fix - Add to cart & select content events for All Products Block. @@ -63,17 +67,4 @@ Duplicate Google Analytics code causes a conflict in tracking. Remove any other * Tweak - Update Contributors list. * Tweak - Update assets and readme for 2.0. -= 2.0.0 - 2024-03-05 = -* Add - Basic consent mode support. -* Add - Setting to specify the structure of the product identifier. -* Add - Update notice for merchants using a Universal Analytics Property ID. -* Dev - Remove options remapping, use settings directly. -* Fix - Prevent tracking orders multiple times and additional fixes. -* Remove - Universal Analytics code. -* Remove - Universal Analytics integration. -* Simplify tracker event handler API. -* Update - Add shared tracking functionality for WooCommerce Blocks and classic pages. -* Update - Extension branding to Google Analytics for WooCommerce. -* Update - Tracking for GA4 when using Blocks. - [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-google-analytics-integration/trunk/changelog.txt). diff --git a/woocommerce-google-analytics-integration.php b/woocommerce-google-analytics-integration.php index 777a0956..b7759189 100644 --- a/woocommerce-google-analytics-integration.php +++ b/woocommerce-google-analytics-integration.php @@ -5,11 +5,11 @@ * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages. * Author: WooCommerce * Author URI: https://woo.com - * Version: 2.0.2 + * Version: 2.0.3 * WC requires at least: 8.4 - * WC tested up to: 8.6 + * WC tested up to: 8.7 * Requires at least: 6.2 - * Tested up to: 6.4 + * Tested up to: 6.5 * License: GPLv2 or later * Text Domain: woocommerce-google-analytics-integration * Domain Path: languages/ @@ -23,7 +23,7 @@ if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) { - define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '2.0.2' ); // WRCS: DEFINED_VERSION. + define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '2.0.3' ); // WRCS: DEFINED_VERSION. define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '6.8' ); // Maybe show the GA Pro notice on plugin activation.