Changeset 3217871
- Timestamp:
- 01/06/2025 05:05:12 PM (14 months ago)
- Location:
- checkview
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.9 (copied) (copied from checkview/trunk)
-
tags/2.0.9/README.txt (modified) (3 diffs)
-
tags/2.0.9/checkview.php (modified) (2 diffs)
-
tags/2.0.9/includes/class-checkview.php (modified) (2 diffs)
-
tags/2.0.9/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/checkview.php (modified) (2 diffs)
-
trunk/includes/class-checkview.php (modified) (2 diffs)
-
trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkview/tags/2.0.9/README.txt
r3216431 r3217871 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 810 Stable tag: 2.0.9 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.9 = 89 * **Urgent Bug Fix**: Addressed a critical, but intermittent issue preventing WooCommerce transactional emails from sending during automated test execution. This occurred regardless of whether the tests were directly related to WooCommerce, as long as WooCommerce was active on the site. 88 90 89 91 = 2.0.8 = … … 300 302 301 303 == Upgrade Notice == 304 = 2.0.9 = 305 * **Urgent Bug Fix**: Addressed a critical, but intermittent issue preventing WooCommerce transactional emails from sending during automated test execution. This occurred regardless of whether the tests were directly related to WooCommerce, as long as WooCommerce was active on the site. 302 306 303 307 = 2.0.8 = -
checkview/tags/2.0.9/checkview.php
r3216431 r3217871 12 12 * Plugin URI: https://checkview.io 13 13 * Description: CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast. Automatically test your WordPress forms to ensure you never miss a lead again. 14 * Version: 2.0. 814 * Version: 2.0.9 15 15 * Author: CheckView 16 16 * Author URI: https://checkview.io/ … … 36 36 * @link https://semver.org 37 37 */ 38 define( 'CHECKVIEW_VERSION', '2.0. 8' );38 define( 'CHECKVIEW_VERSION', '2.0.9' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/tags/2.0.9/includes/class-checkview.php
r3216431 r3217871 71 71 $this->version = CHECKVIEW_VERSION; 72 72 } else { 73 $this->version = '2.0. 8';73 $this->version = '2.0.9'; 74 74 } 75 75 $this->plugin_name = 'checkview'; … … 139 139 if ( ( 'checkview-saas' === get_option( $visitor_ip ) || isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) { 140 140 update_option( $visitor_ip, 'checkview-saas', true ); 141 }142 $woo_helper = '';143 if ( class_exists( 'WooCommerce' ) ) {144 require_once plugin_dir_path( __DIR__ ) . 'includes/woocommercehelper/class-checkview-woo-automated-testing.php';145 $woo_helper = new Checkview_Woo_Automated_Testing( $this->get_plugin_name(), $this->get_version(), $this->loader );141 $woo_helper = ''; 142 if ( class_exists( 'WooCommerce' ) ) { 143 require_once plugin_dir_path( __DIR__ ) . 'includes/woocommercehelper/class-checkview-woo-automated-testing.php'; 144 $woo_helper = new Checkview_Woo_Automated_Testing( $this->get_plugin_name(), $this->get_version(), $this->loader ); 145 } 146 146 } 147 147 $this->loader->add_filter( -
checkview/tags/2.0.9/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3216431 r3217871 69 69 : array( 70 70 'dependencies' => array(), 71 'version' => '2.0. 8',71 'version' => '2.0.9', 72 72 ); 73 73 $script_url = CHECKVIEW_URI . $script_path; -
checkview/trunk/README.txt
r3216431 r3217871 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 810 Stable tag: 2.0.9 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.9 = 89 * **Urgent Bug Fix**: Addressed a critical, but intermittent issue preventing WooCommerce transactional emails from sending during automated test execution. This occurred regardless of whether the tests were directly related to WooCommerce, as long as WooCommerce was active on the site. 88 90 89 91 = 2.0.8 = … … 300 302 301 303 == Upgrade Notice == 304 = 2.0.9 = 305 * **Urgent Bug Fix**: Addressed a critical, but intermittent issue preventing WooCommerce transactional emails from sending during automated test execution. This occurred regardless of whether the tests were directly related to WooCommerce, as long as WooCommerce was active on the site. 302 306 303 307 = 2.0.8 = -
checkview/trunk/checkview.php
r3216431 r3217871 12 12 * Plugin URI: https://checkview.io 13 13 * Description: CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast. Automatically test your WordPress forms to ensure you never miss a lead again. 14 * Version: 2.0. 814 * Version: 2.0.9 15 15 * Author: CheckView 16 16 * Author URI: https://checkview.io/ … … 36 36 * @link https://semver.org 37 37 */ 38 define( 'CHECKVIEW_VERSION', '2.0. 8' );38 define( 'CHECKVIEW_VERSION', '2.0.9' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/trunk/includes/class-checkview.php
r3216431 r3217871 71 71 $this->version = CHECKVIEW_VERSION; 72 72 } else { 73 $this->version = '2.0. 8';73 $this->version = '2.0.9'; 74 74 } 75 75 $this->plugin_name = 'checkview'; … … 139 139 if ( ( 'checkview-saas' === get_option( $visitor_ip ) || isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) { 140 140 update_option( $visitor_ip, 'checkview-saas', true ); 141 }142 $woo_helper = '';143 if ( class_exists( 'WooCommerce' ) ) {144 require_once plugin_dir_path( __DIR__ ) . 'includes/woocommercehelper/class-checkview-woo-automated-testing.php';145 $woo_helper = new Checkview_Woo_Automated_Testing( $this->get_plugin_name(), $this->get_version(), $this->loader );141 $woo_helper = ''; 142 if ( class_exists( 'WooCommerce' ) ) { 143 require_once plugin_dir_path( __DIR__ ) . 'includes/woocommercehelper/class-checkview-woo-automated-testing.php'; 144 $woo_helper = new Checkview_Woo_Automated_Testing( $this->get_plugin_name(), $this->get_version(), $this->loader ); 145 } 146 146 } 147 147 $this->loader->add_filter( -
checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3216431 r3217871 69 69 : array( 70 70 'dependencies' => array(), 71 'version' => '2.0. 8',71 'version' => '2.0.9', 72 72 ); 73 73 $script_url = CHECKVIEW_URI . $script_path;
Note: See TracChangeset
for help on using the changeset viewer.