Plugin Directory

Changeset 3169451


Ignore:
Timestamp:
10/15/2024 05:43:39 PM (15 months ago)
Author:
checkview
Message:

released version 1.1.22

Location:
checkview
Files:
262 added
5 edited

Legend:

Unmodified
Added
Removed
  • checkview/trunk/README.txt

    r3166675 r3169451  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 1.1.21
     10Stable tag: 1.1.22
    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
     89= 1.1.22 =
     90* Added a patch to ensure the Contact Form 7 module loads during AJAX requests.
     91* Resolved CAPTCHA errors for Contact Form 7.
     92* Updated the checkview_get_api_ip() function to address CleanTalk and hCaptcha bypass issues for SaaS IP addresses.
     93
    8894= 1.1.21 =
    8995* Added a patch for CleanTalk whitelisting for SaaS IP addresses.
     
    206212
    207213== Upgrade Notice ==
     214= 1.1.22 =
     215* Added a patch to ensure the Contact Form 7 module loads during AJAX requests.
     216* Resolved CAPTCHA errors for Contact Form 7.
     217* Updated the checkview_get_api_ip() function to address CleanTalk and hCaptcha bypass issues for SaaS IP addresses.
     218
    208219= 1.1.21 =
    209220* Added a patch for CleanTalk whitelisting for SaaS IP addresses.
  • checkview/trunk/checkview.php

    r3166675 r3169451  
    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:           1.1.21
     18 * Version:           1.1.22
    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', '1.1.21' );
     39define( 'CHECKVIEW_VERSION', '1.1.22' );
    4040
    4141/**
  • checkview/trunk/includes/class-checkview.php

    r3166675 r3169451  
    8080            $this->version = CHECKVIEW_VERSION;
    8181        } else {
    82             $this->version = '1.1.21';
     82            $this->version = '1.1.22';
    8383        }
    8484        $this->plugin_name = 'checkview';
     
    176176        // Check view Bot IP.
    177177        $cv_bot_ip = checkview_get_api_ip();
    178         if ( is_plugin_active( 'contact-form-7/wp-contact-form-7.php' ) && ! class_exists( 'checkview_cf7_helper' ) && ( isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) {
     178        if ( is_plugin_active( 'contact-form-7/wp-contact-form-7.php' ) && ! class_exists( 'checkview_cf7_helper' ) && ( 'checkview-saas' === get_option( $visitor_ip ) || isset( $_REQUEST['checkview_test_id'] ) || ( is_array( $cv_bot_ip ) && in_array( $visitor_ip, $cv_bot_ip ) ) ) ) {
    179179            $send_to = CHECKVIEW_EMAIL;
    180180
  • checkview/trunk/includes/woocommercehelper/class-checkview-woo-automated-testing.php

    r3164424 r3169451  
    575575                $this,
    576576                'checkview_woocommerce_block_support',
    577             );
    578             add_filter(
    579                 'cfturnstile_whitelisted',
    580                 '__return_true',
    581                 999
    582577            );
    583578            // Make the test product visible in the catalog.
  • checkview/trunk/tests/test-checkview.php

    r3166675 r3169451  
    88    public function test_plugin_version_defined() {
    99        $this->assertTrue( defined( 'CHECKVIEW_VERSION' ) );
    10         $this->assertEquals( '1.1.21', CHECKVIEW_VERSION );
     10        $this->assertEquals( '1.1.22', CHECKVIEW_VERSION );
    1111    }
    1212
Note: See TracChangeset for help on using the changeset viewer.