Plugin Directory

Changeset 3217871


Ignore:
Timestamp:
01/06/2025 05:05:12 PM (14 months ago)
Author:
checkview
Message:

Update to version 2.0.9 from GitHub

Location:
checkview
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • checkview/tags/2.0.9/README.txt

    r3216431 r3217871  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.8
     10Stable tag: 2.0.9
    1111
    1212[CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. 
     
    8686
    8787== 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.
    8890
    8991= 2.0.8 =   
     
    300302
    301303== 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.
    302306
    303307= 2.0.8 =   
  • checkview/tags/2.0.9/checkview.php

    r3216431 r3217871  
    1212 * Plugin URI:        https://checkview.io
    1313 * 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.8
     14 * Version:           2.0.9
    1515 * Author:            CheckView
    1616 * Author URI:        https://checkview.io/
     
    3636 * @link https://semver.org
    3737 */
    38 define( 'CHECKVIEW_VERSION', '2.0.8' );
     38define( 'CHECKVIEW_VERSION', '2.0.9' );
    3939
    4040if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) {
  • checkview/tags/2.0.9/includes/class-checkview.php

    r3216431 r3217871  
    7171            $this->version = CHECKVIEW_VERSION;
    7272        } else {
    73             $this->version = '2.0.8';
     73            $this->version = '2.0.9';
    7474        }
    7575        $this->plugin_name = 'checkview';
     
    139139        if ( ( 'checkview-saas' === get_option( $visitor_ip ) || isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) {
    140140            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            }
    146146        }
    147147        $this->loader->add_filter(
  • checkview/tags/2.0.9/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3216431 r3217871  
    6969            : array(
    7070                'dependencies' => array(),
    71                 'version'      => '2.0.8',
     71                'version'      => '2.0.9',
    7272            );
    7373        $script_url        = CHECKVIEW_URI . $script_path;
  • checkview/trunk/README.txt

    r3216431 r3217871  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.8
     10Stable tag: 2.0.9
    1111
    1212[CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. 
     
    8686
    8787== 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.
    8890
    8991= 2.0.8 =   
     
    300302
    301303== 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.
    302306
    303307= 2.0.8 =   
  • checkview/trunk/checkview.php

    r3216431 r3217871  
    1212 * Plugin URI:        https://checkview.io
    1313 * 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.8
     14 * Version:           2.0.9
    1515 * Author:            CheckView
    1616 * Author URI:        https://checkview.io/
     
    3636 * @link https://semver.org
    3737 */
    38 define( 'CHECKVIEW_VERSION', '2.0.8' );
     38define( 'CHECKVIEW_VERSION', '2.0.9' );
    3939
    4040if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) {
  • checkview/trunk/includes/class-checkview.php

    r3216431 r3217871  
    7171            $this->version = CHECKVIEW_VERSION;
    7272        } else {
    73             $this->version = '2.0.8';
     73            $this->version = '2.0.9';
    7474        }
    7575        $this->plugin_name = 'checkview';
     
    139139        if ( ( 'checkview-saas' === get_option( $visitor_ip ) || isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) {
    140140            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            }
    146146        }
    147147        $this->loader->add_filter(
  • checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3216431 r3217871  
    6969            : array(
    7070                'dependencies' => array(),
    71                 'version'      => '2.0.8',
     71                'version'      => '2.0.9',
    7272            );
    7373        $script_url        = CHECKVIEW_URI . $script_path;
Note: See TracChangeset for help on using the changeset viewer.