Changeset 3189478
- Timestamp:
- 11/15/2024 11:12:53 AM (16 months ago)
- Location:
- checkview
- Files:
-
- 10 edited
- 1 copied
-
tags/2.0.2 (copied) (copied from checkview/trunk)
-
tags/2.0.2/README.txt (modified) (5 diffs)
-
tags/2.0.2/checkview.php (modified) (2 diffs)
-
tags/2.0.2/includes/API/class-checkview-api.php (modified) (1 diff)
-
tags/2.0.2/includes/class-checkview.php (modified) (2 diffs)
-
tags/2.0.2/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
-
trunk/README.txt (modified) (5 diffs)
-
trunk/checkview.php (modified) (2 diffs)
-
trunk/includes/API/class-checkview-api.php (modified) (1 diff)
-
trunk/includes/class-checkview.php (modified) (2 diffs)
-
trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkview/tags/2.0.2/README.txt
r3189448 r3189478 4 4 Tags: testing, monitoring, uptime, tests, woocommerce 5 5 Requires at least: 5.0.1 6 Tested up to: 6. 6.16 Tested up to: 6.7 7 7 Requires PHP: 7.0.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 110 Stable tag: 2.0.2 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.2 = 89 * Resolved updater hook bug by adding global $wpdb variable. 90 88 91 = 2.0.1 = 89 92 … … 136 139 * Updated container IP addresses. 137 140 138 <<<<<<< HEAD139 =======140 141 >>>>>>> 407ca45ba8b8d7b18fd659a99ad190150538572e142 141 = 1.1.22 = 143 142 * Added a patch to ensure the Contact Form 7 module loads during AJAX requests. … … 267 266 == Upgrade Notice == 268 267 268 = 2.0.2 = 269 * Resolved updater hook bug by adding global $wpdb variable. 270 269 271 = 2.0.1 = 270 272 … … 279 281 * Reduced database queries for faster load times. 280 282 * 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. 281 285 * **New Features**: 282 286 * 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. 284 288 285 289 = 2.0.0 = -
checkview/tags/2.0.2/checkview.php
r3189448 r3189478 16 16 * Plugin URI: https://checkview.io 17 17 * 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. 118 * Version: 2.0.2 19 19 * Author: CheckView 20 20 * Author URI: https://checkview.io/ … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'CHECKVIEW_VERSION', '2.0. 1' );39 define( 'CHECKVIEW_VERSION', '2.0.2' ); 40 40 41 41 /** -
checkview/tags/2.0.2/includes/API/class-checkview-api.php
r3189448 r3189478 2278 2278 if ( $table_exists !== $cv_used_nonces ) { 2279 2279 // 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.' ); 2281 2281 return new WP_Error( 2282 2282 403, -
checkview/tags/2.0.2/includes/class-checkview.php
r3189448 r3189478 80 80 $this->version = CHECKVIEW_VERSION; 81 81 } else { 82 $this->version = '2.0. 1';82 $this->version = '2.0.2'; 83 83 } 84 84 $this->plugin_name = 'checkview'; … … 425 425 */ 426 426 public function checkview_track_updates_notification( $upgrader_object, $options ) { 427 427 global $wpdb; 428 428 // If an update has taken place and the updated type is plugins and the plugins element exists. 429 429 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 70 70 : array( 71 71 'dependencies' => array(), 72 'version' => '2.0. 1',72 'version' => '2.0.2', 73 73 ); 74 74 $script_url = CHECKVIEW_URI . $script_path; -
checkview/trunk/README.txt
r3189448 r3189478 4 4 Tags: testing, monitoring, uptime, tests, woocommerce 5 5 Requires at least: 5.0.1 6 Tested up to: 6. 6.16 Tested up to: 6.7 7 7 Requires PHP: 7.0.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 110 Stable tag: 2.0.2 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.2 = 89 * Resolved updater hook bug by adding global $wpdb variable. 90 88 91 = 2.0.1 = 89 92 … … 136 139 * Updated container IP addresses. 137 140 138 <<<<<<< HEAD139 =======140 141 >>>>>>> 407ca45ba8b8d7b18fd659a99ad190150538572e142 141 = 1.1.22 = 143 142 * Added a patch to ensure the Contact Form 7 module loads during AJAX requests. … … 267 266 == Upgrade Notice == 268 267 268 = 2.0.2 = 269 * Resolved updater hook bug by adding global $wpdb variable. 270 269 271 = 2.0.1 = 270 272 … … 279 281 * Reduced database queries for faster load times. 280 282 * 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. 281 285 * **New Features**: 282 286 * 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. 284 288 285 289 = 2.0.0 = -
checkview/trunk/checkview.php
r3189448 r3189478 16 16 * Plugin URI: https://checkview.io 17 17 * 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. 118 * Version: 2.0.2 19 19 * Author: CheckView 20 20 * Author URI: https://checkview.io/ … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'CHECKVIEW_VERSION', '2.0. 1' );39 define( 'CHECKVIEW_VERSION', '2.0.2' ); 40 40 41 41 /** -
checkview/trunk/includes/API/class-checkview-api.php
r3189448 r3189478 2278 2278 if ( $table_exists !== $cv_used_nonces ) { 2279 2279 // 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.' ); 2281 2281 return new WP_Error( 2282 2282 403, -
checkview/trunk/includes/class-checkview.php
r3189448 r3189478 80 80 $this->version = CHECKVIEW_VERSION; 81 81 } else { 82 $this->version = '2.0. 1';82 $this->version = '2.0.2'; 83 83 } 84 84 $this->plugin_name = 'checkview'; … … 425 425 */ 426 426 public function checkview_track_updates_notification( $upgrader_object, $options ) { 427 427 global $wpdb; 428 428 // If an update has taken place and the updated type is plugins and the plugins element exists. 429 429 if ( 'update' === $options['action'] && 'plugin' === $options['type'] && isset( $options['plugins'] ) ) { -
checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3189448 r3189478 70 70 : array( 71 71 'dependencies' => array(), 72 'version' => '2.0. 1',72 'version' => '2.0.2', 73 73 ); 74 74 $script_url = CHECKVIEW_URI . $script_path;
Note: See TracChangeset
for help on using the changeset viewer.