Plugin Directory

Changeset 3294839


Ignore:
Timestamp:
05/16/2025 02:40:19 PM (10 months ago)
Author:
checkview
Message:

Update to version 2.0.15 from GitHub

Location:
checkview
Files:
10 edited
1 copied

Legend:

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

    r3288087 r3294839  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.14
     10Stable tag: 2.0.15
    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.15 =
     89* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     90* Errored CleanTalk API requests now return an empty array instead of null.
     91
    8892= 2.0.14 =
    8993* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     
    337341
    338342== Upgrade Notice ==
     343= 2.0.15 =
     344* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     345* Errored CleanTalk API requests now return an empty array instead of null.
     346
    339347= 2.0.14 =
    340348* Fixed an issue where CleanTalk requests were not properly being requested and cached.
  • checkview/tags/2.0.15/checkview.php

    r3288084 r3294839  
    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.14
     14 * Version:           2.0.15
    1515 * Author:            CheckView
    1616 * Author URI:        https://checkview.io/
     
    3636 * @link https://semver.org
    3737 */
    38 define( 'CHECKVIEW_VERSION', '2.0.14' );
     38define( 'CHECKVIEW_VERSION', '2.0.15' );
    3939
    4040if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) {
  • checkview/tags/2.0.15/includes/checkview-functions.php

    r3288084 r3294839  
    7474        // Attempt decoding.
    7575        try {
     76            // Allow one-second leeway for JWT tokens
     77            JWT::$leeway = 1;
    7678            $decoded = JWT::decode( $token, new Key( $key, 'RS256' ) );
    7779        } catch ( Exception $e ) {
     
    378380            Checkview_Admin_Logs::add( 'ip-logs', esc_html__( 'Error fetching whitelisted IPs: ' . $response->get_error_message(), 'checkview' ) );
    379381
    380             return null;
     382            return array();
    381383        }
    382384
  • checkview/tags/2.0.15/includes/class-checkview.php

    r3288084 r3294839  
    7171            $this->version = CHECKVIEW_VERSION;
    7272        } else {
    73             $this->version = '2.0.14';
     73            $this->version = '2.0.15';
    7474        }
    7575        $this->plugin_name = 'checkview';
  • checkview/tags/2.0.15/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3288084 r3294839  
    6969            : array(
    7070                'dependencies' => array(),
    71                 'version'      => '2.0.14',
     71                'version'      => '5',
    7272            );
    7373        $script_url        = CHECKVIEW_URI . $script_path;
  • checkview/trunk/README.txt

    r3288087 r3294839  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.14
     10Stable tag: 2.0.15
    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.15 =
     89* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     90* Errored CleanTalk API requests now return an empty array instead of null.
     91
    8892= 2.0.14 =
    8993* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     
    337341
    338342== Upgrade Notice ==
     343= 2.0.15 =
     344* Fixed an issue where CleanTalk requests were not properly being requested and cached.
     345* Errored CleanTalk API requests now return an empty array instead of null.
     346
    339347= 2.0.14 =
    340348* Fixed an issue where CleanTalk requests were not properly being requested and cached.
  • checkview/trunk/checkview.php

    r3288084 r3294839  
    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.14
     14 * Version:           2.0.15
    1515 * Author:            CheckView
    1616 * Author URI:        https://checkview.io/
     
    3636 * @link https://semver.org
    3737 */
    38 define( 'CHECKVIEW_VERSION', '2.0.14' );
     38define( 'CHECKVIEW_VERSION', '2.0.15' );
    3939
    4040if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) {
  • checkview/trunk/includes/checkview-functions.php

    r3288084 r3294839  
    7474        // Attempt decoding.
    7575        try {
     76            // Allow one-second leeway for JWT tokens
     77            JWT::$leeway = 1;
    7678            $decoded = JWT::decode( $token, new Key( $key, 'RS256' ) );
    7779        } catch ( Exception $e ) {
     
    378380            Checkview_Admin_Logs::add( 'ip-logs', esc_html__( 'Error fetching whitelisted IPs: ' . $response->get_error_message(), 'checkview' ) );
    379381
    380             return null;
     382            return array();
    381383        }
    382384
  • checkview/trunk/includes/class-checkview.php

    r3288084 r3294839  
    7171            $this->version = CHECKVIEW_VERSION;
    7272        } else {
    73             $this->version = '2.0.14';
     73            $this->version = '2.0.15';
    7474        }
    7575        $this->plugin_name = 'checkview';
  • checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3288084 r3294839  
    6969            : array(
    7070                'dependencies' => array(),
    71                 'version'      => '2.0.14',
     71                'version'      => '5',
    7272            );
    7373        $script_url        = CHECKVIEW_URI . $script_path;
Note: See TracChangeset for help on using the changeset viewer.