Changeset 3421835
- Timestamp:
- 12/17/2025 11:39:14 AM (3 months ago)
- Location:
- woo-mailerlite/trunk
- Files:
-
- 7 edited
-
bootstrap.php (modified) (1 diff)
-
includes/controllers/WooMailerLiteController.php (modified) (1 diff)
-
includes/controllers/WooMailerLitePluginController.php (modified) (1 diff)
-
includes/jobs/WooMailerLiteAbstractJob.php (modified) (1 diff)
-
includes/migrations/WooMailerLiteMigration.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woo-mailerlite.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-mailerlite/trunk/bootstrap.php
r3415073 r3421835 121 121 $plugin->run(); 122 122 } catch(Throwable $th) { 123 WooMailerLiteLog()->error( $th->getMessage());123 WooMailerLiteLog()->error('run_woo_mailerlite', ['error' => $th->getMessage(), 'trace' => $th->getTraceAsString()]); 124 124 return true; 125 125 } -
woo-mailerlite/trunk/includes/controllers/WooMailerLiteController.php
r3415073 r3421835 22 22 } 23 23 24 protected function authorize(): static 24 /** 25 * @return $this 26 */ 27 protected function authorize() 25 28 { 26 29 if (!current_user_can('manage_options')) { -
woo-mailerlite/trunk/includes/controllers/WooMailerLitePluginController.php
r3399626 r3421835 90 90 } 91 91 } catch (Throwable $e) { 92 WooMailerLiteLog()->error('Error restoring cart from checkout ID: ' . $e->getMessage() );92 WooMailerLiteLog()->error('Error restoring cart from checkout ID: ' . $e->getMessage(), ['trace' => $e->getTraceAsString()]); 93 93 } 94 94 return true; -
woo-mailerlite/trunk/includes/jobs/WooMailerLiteAbstractJob.php
r3377455 r3421835 92 92 } 93 93 } else { 94 WooMailerLiteLog()->error("Job " . static::class . " failed after max retries." );94 WooMailerLiteLog()->error("Job " . static::class . " failed after max retries.", ['trace' => $th->getTraceAsString()]); 95 95 } 96 96 } -
woo-mailerlite/trunk/includes/migrations/WooMailerLiteMigration.php
r3339434 r3421835 78 78 WooMailerLiteOptions::update('customTableCheck', true); 79 79 } catch (Throwable $th) { 80 WooMailerLiteLog()->error($th->getMessage() );80 WooMailerLiteLog()->error($th->getMessage(), ['trace' => $th->getTraceAsString()]); 81 81 } 82 82 return true; -
woo-mailerlite/trunk/readme.txt
r3420776 r3421835 6 6 Tested up to: 6.8.2 7 7 Requires PHP: 7.2.5 8 Stable tag: 3.1. 68 Stable tag: 3.1.7 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 84 84 85 85 == Changelog == 86 = 3.1.7 (17th December 2025) = 87 * PHP 7.4 fixes 88 * Bug fixes and performance improvements 89 86 90 = 3.1.6 (16th December 2025) = 87 91 * Improved support for Subscriber language field -
woo-mailerlite/trunk/woo-mailerlite.php
r3420776 r3421835 16 16 * Plugin URI: https://mailerlite.com 17 17 * Description: Official MailerLite integration for WooCommerce. Track sales and campaign ROI, import products details, automate emails based on purchases and seamlessly add your customers to your email marketing lists via WooCommerce's checkout process. 18 * Version: 3.1. 618 * Version: 3.1.7 19 19 * Author: MailerLite 20 20 * Author URI: https://mailerlite.com … … 40 40 * Update when you release new versions. 41 41 */ 42 define( 'WOO_MAILERLITE_VERSION', '3.1. 6' );42 define( 'WOO_MAILERLITE_VERSION', '3.1.7' ); 43 43 44 44 define('WOO_MAILERLITE_ASYNC_JOBS', false); … … 75 75 $integration_registry->register(new WooMailerLiteBlocksIntegration()); 76 76 } catch (Exception $e) { 77 WooMailerLiteLog()->error( $e->getMessage());77 WooMailerLiteLog()->error('woocommerce_blocks_loaded', ['error' => $e->getMessage(), 'trace' => $e->getTraceAsString()]); 78 78 } 79 79 }
Note: See TracChangeset
for help on using the changeset viewer.