Plugin Directory

Changeset 3189478


Ignore:
Timestamp:
11/15/2024 11:12:53 AM (16 months ago)
Author:
checkview
Message:

Update to version 2.0.2 from GitHub

Location:
checkview
Files:
10 edited
1 copied

Legend:

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

    r3189448 r3189478  
    44Tags: testing, monitoring, uptime, tests, woocommerce
    55Requires at least: 5.0.1
    6 Tested up to: 6.6.1
     6Tested up to: 6.7
    77Requires PHP: 7.0.0
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.1
     10Stable tag: 2.0.2
    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.2 =
     89* Resolved updater hook bug by adding global $wpdb variable.
     90
    8891= 2.0.1 =
    8992
     
    136139* Updated container IP addresses.
    137140
    138 <<<<<<< HEAD
    139 =======
    140 
    141 >>>>>>> 407ca45ba8b8d7b18fd659a99ad190150538572e
    142141= 1.1.22 =
    143142* Added a patch to ensure the Contact Form 7 module loads during AJAX requests.
     
    267266== Upgrade Notice ==
    268267
     268= 2.0.2 =
     269* Resolved updater hook bug by adding global $wpdb variable.
     270
    269271= 2.0.1 =
    270272
     
    279281  * Reduced database queries for faster load times.
    280282  * Added caching mechanisms to enhance performance.
     283  * Added limit for WooCommerce Products to first 1000 by date modified.
     284  * Updated form delete endpoint to store results for 7 days.
    281285* **New Features**:
    282286  * Updated CleanTalk whitelisted IP addresses function to accumulate IPs across all sites.
    283   * Added functionality to enable or suppress admin email notifications for all form submissions.
     287  * Added functionality to enable or disable admin email notifications for all form submissions and WooCommerce orders made by SaaS.
    284288
    285289= 2.0.0 =
  • checkview/tags/2.0.2/checkview.php

    r3189448 r3189478  
    1616 * Plugin URI:        https://checkview.io
    1717 * 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.
    18  * Version:           2.0.1
     18 * Version:           2.0.2
    1919 * Author:            CheckView
    2020 * Author URI:        https://checkview.io/
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define( 'CHECKVIEW_VERSION', '2.0.1' );
     39define( 'CHECKVIEW_VERSION', '2.0.2' );
    4040
    4141/**
  • checkview/tags/2.0.2/includes/API/class-checkview-api.php

    r3189448 r3189478  
    22782278        if ( $table_exists !== $cv_used_nonces ) {
    22792279            // Log the detailed error for internal use.
    2280             Checkview_Admin_Logs::add( 'api-logs', 'Nonce table absent.' );
     2280            Checkview_Admin_Logs::add( 'api-logs', 'Nonce table absent updater.' );
    22812281            return new WP_Error(
    22822282                403,
  • checkview/tags/2.0.2/includes/class-checkview.php

    r3189448 r3189478  
    8080            $this->version = CHECKVIEW_VERSION;
    8181        } else {
    82             $this->version = '2.0.1';
     82            $this->version = '2.0.2';
    8383        }
    8484        $this->plugin_name = 'checkview';
     
    425425     */
    426426    public function checkview_track_updates_notification( $upgrader_object, $options ) {
    427 
     427        global $wpdb;
    428428        // If an update has taken place and the updated type is plugins and the plugins element exists.
    429429        if ( 'update' === $options['action'] && 'plugin' === $options['type'] && isset( $options['plugins'] ) ) {
  • checkview/tags/2.0.2/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3189448 r3189478  
    7070            : array(
    7171                'dependencies' => array(),
    72                 'version'      => '2.0.1',
     72                'version'      => '2.0.2',
    7373            );
    7474        $script_url        = CHECKVIEW_URI . $script_path;
  • checkview/trunk/README.txt

    r3189448 r3189478  
    44Tags: testing, monitoring, uptime, tests, woocommerce
    55Requires at least: 5.0.1
    6 Tested up to: 6.6.1
     6Tested up to: 6.7
    77Requires PHP: 7.0.0
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.1
     10Stable tag: 2.0.2
    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.2 =
     89* Resolved updater hook bug by adding global $wpdb variable.
     90
    8891= 2.0.1 =
    8992
     
    136139* Updated container IP addresses.
    137140
    138 <<<<<<< HEAD
    139 =======
    140 
    141 >>>>>>> 407ca45ba8b8d7b18fd659a99ad190150538572e
    142141= 1.1.22 =
    143142* Added a patch to ensure the Contact Form 7 module loads during AJAX requests.
     
    267266== Upgrade Notice ==
    268267
     268= 2.0.2 =
     269* Resolved updater hook bug by adding global $wpdb variable.
     270
    269271= 2.0.1 =
    270272
     
    279281  * Reduced database queries for faster load times.
    280282  * Added caching mechanisms to enhance performance.
     283  * Added limit for WooCommerce Products to first 1000 by date modified.
     284  * Updated form delete endpoint to store results for 7 days.
    281285* **New Features**:
    282286  * Updated CleanTalk whitelisted IP addresses function to accumulate IPs across all sites.
    283   * Added functionality to enable or suppress admin email notifications for all form submissions.
     287  * Added functionality to enable or disable admin email notifications for all form submissions and WooCommerce orders made by SaaS.
    284288
    285289= 2.0.0 =
  • checkview/trunk/checkview.php

    r3189448 r3189478  
    1616 * Plugin URI:        https://checkview.io
    1717 * 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.
    18  * Version:           2.0.1
     18 * Version:           2.0.2
    1919 * Author:            CheckView
    2020 * Author URI:        https://checkview.io/
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define( 'CHECKVIEW_VERSION', '2.0.1' );
     39define( 'CHECKVIEW_VERSION', '2.0.2' );
    4040
    4141/**
  • checkview/trunk/includes/API/class-checkview-api.php

    r3189448 r3189478  
    22782278        if ( $table_exists !== $cv_used_nonces ) {
    22792279            // Log the detailed error for internal use.
    2280             Checkview_Admin_Logs::add( 'api-logs', 'Nonce table absent.' );
     2280            Checkview_Admin_Logs::add( 'api-logs', 'Nonce table absent updater.' );
    22812281            return new WP_Error(
    22822282                403,
  • checkview/trunk/includes/class-checkview.php

    r3189448 r3189478  
    8080            $this->version = CHECKVIEW_VERSION;
    8181        } else {
    82             $this->version = '2.0.1';
     82            $this->version = '2.0.2';
    8383        }
    8484        $this->plugin_name = 'checkview';
     
    425425     */
    426426    public function checkview_track_updates_notification( $upgrader_object, $options ) {
    427 
     427        global $wpdb;
    428428        // If an update has taken place and the updated type is plugins and the plugins element exists.
    429429        if ( 'update' === $options['action'] && 'plugin' === $options['type'] && isset( $options['plugins'] ) ) {
  • checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3189448 r3189478  
    7070            : array(
    7171                'dependencies' => array(),
    72                 'version'      => '2.0.1',
     72                'version'      => '2.0.2',
    7373            );
    7474        $script_url        = CHECKVIEW_URI . $script_path;
Note: See TracChangeset for help on using the changeset viewer.