Changeset 3294839
- Timestamp:
- 05/16/2025 02:40:19 PM (10 months ago)
- Location:
- checkview
- Files:
-
- 10 edited
- 1 copied
-
tags/2.0.15 (copied) (copied from checkview/trunk)
-
tags/2.0.15/README.txt (modified) (3 diffs)
-
tags/2.0.15/checkview.php (modified) (2 diffs)
-
tags/2.0.15/includes/checkview-functions.php (modified) (2 diffs)
-
tags/2.0.15/includes/class-checkview.php (modified) (1 diff)
-
tags/2.0.15/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/checkview-functions.php (modified) (2 diffs)
-
trunk/includes/class-checkview.php (modified) (1 diff)
-
trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkview/tags/2.0.15/README.txt
r3288087 r3294839 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0.1 410 Stable tag: 2.0.15 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.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 88 92 = 2.0.14 = 89 93 * Fixed an issue where CleanTalk requests were not properly being requested and cached. … … 337 341 338 342 == 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 339 347 = 2.0.14 = 340 348 * Fixed an issue where CleanTalk requests were not properly being requested and cached. -
checkview/tags/2.0.15/checkview.php
r3288084 r3294839 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.1 414 * Version: 2.0.15 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.1 4' );38 define( 'CHECKVIEW_VERSION', '2.0.15' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/tags/2.0.15/includes/checkview-functions.php
r3288084 r3294839 74 74 // Attempt decoding. 75 75 try { 76 // Allow one-second leeway for JWT tokens 77 JWT::$leeway = 1; 76 78 $decoded = JWT::decode( $token, new Key( $key, 'RS256' ) ); 77 79 } catch ( Exception $e ) { … … 378 380 Checkview_Admin_Logs::add( 'ip-logs', esc_html__( 'Error fetching whitelisted IPs: ' . $response->get_error_message(), 'checkview' ) ); 379 381 380 return null;382 return array(); 381 383 } 382 384 -
checkview/tags/2.0.15/includes/class-checkview.php
r3288084 r3294839 71 71 $this->version = CHECKVIEW_VERSION; 72 72 } else { 73 $this->version = '2.0.1 4';73 $this->version = '2.0.15'; 74 74 } 75 75 $this->plugin_name = 'checkview'; -
checkview/tags/2.0.15/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3288084 r3294839 69 69 : array( 70 70 'dependencies' => array(), 71 'version' => ' 2.0.14',71 'version' => '5', 72 72 ); 73 73 $script_url = CHECKVIEW_URI . $script_path; -
checkview/trunk/README.txt
r3288087 r3294839 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0.1 410 Stable tag: 2.0.15 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.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 88 92 = 2.0.14 = 89 93 * Fixed an issue where CleanTalk requests were not properly being requested and cached. … … 337 341 338 342 == 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 339 347 = 2.0.14 = 340 348 * Fixed an issue where CleanTalk requests were not properly being requested and cached. -
checkview/trunk/checkview.php
r3288084 r3294839 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.1 414 * Version: 2.0.15 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.1 4' );38 define( 'CHECKVIEW_VERSION', '2.0.15' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/trunk/includes/checkview-functions.php
r3288084 r3294839 74 74 // Attempt decoding. 75 75 try { 76 // Allow one-second leeway for JWT tokens 77 JWT::$leeway = 1; 76 78 $decoded = JWT::decode( $token, new Key( $key, 'RS256' ) ); 77 79 } catch ( Exception $e ) { … … 378 380 Checkview_Admin_Logs::add( 'ip-logs', esc_html__( 'Error fetching whitelisted IPs: ' . $response->get_error_message(), 'checkview' ) ); 379 381 380 return null;382 return array(); 381 383 } 382 384 -
checkview/trunk/includes/class-checkview.php
r3288084 r3294839 71 71 $this->version = CHECKVIEW_VERSION; 72 72 } else { 73 $this->version = '2.0.1 4';73 $this->version = '2.0.15'; 74 74 } 75 75 $this->plugin_name = 'checkview'; -
checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3288084 r3294839 69 69 : array( 70 70 'dependencies' => array(), 71 'version' => ' 2.0.14',71 'version' => '5', 72 72 ); 73 73 $script_url = CHECKVIEW_URI . $script_path;
Note: See TracChangeset
for help on using the changeset viewer.