Plugin Directory

Changeset 3421835


Ignore:
Timestamp:
12/17/2025 11:39:14 AM (3 months ago)
Author:
mailerlite
Message:

updated to X.Y.Z

Location:
woo-mailerlite/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • woo-mailerlite/trunk/bootstrap.php

    r3415073 r3421835  
    121121        $plugin->run();
    122122    } catch(Throwable $th) {
    123         WooMailerLiteLog()->error($th->getMessage());
     123        WooMailerLiteLog()->error('run_woo_mailerlite', ['error' => $th->getMessage(), 'trace' => $th->getTraceAsString()]);
    124124        return true;
    125125    }
  • woo-mailerlite/trunk/includes/controllers/WooMailerLiteController.php

    r3415073 r3421835  
    2222    }
    2323
    24     protected function authorize(): static
     24    /**
     25     * @return $this
     26     */
     27    protected function authorize()
    2528    {
    2629        if (!current_user_can('manage_options')) {
  • woo-mailerlite/trunk/includes/controllers/WooMailerLitePluginController.php

    r3399626 r3421835  
    9090            }
    9191        } 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()]);
    9393        }
    9494        return true;
  • woo-mailerlite/trunk/includes/jobs/WooMailerLiteAbstractJob.php

    r3377455 r3421835  
    9292                }
    9393            } else {
    94                 WooMailerLiteLog()->error("Job " . static::class . " failed after max retries.");
     94                WooMailerLiteLog()->error("Job " . static::class . " failed after max retries.", ['trace' => $th->getTraceAsString()]);
    9595            }
    9696        }
  • woo-mailerlite/trunk/includes/migrations/WooMailerLiteMigration.php

    r3339434 r3421835  
    7878            WooMailerLiteOptions::update('customTableCheck', true);
    7979        } catch (Throwable $th) {
    80             WooMailerLiteLog()->error($th->getMessage());
     80            WooMailerLiteLog()->error($th->getMessage(), ['trace' => $th->getTraceAsString()]);
    8181        }
    8282        return true;
  • woo-mailerlite/trunk/readme.txt

    r3420776 r3421835  
    66Tested up to: 6.8.2
    77Requires PHP: 7.2.5
    8 Stable tag: 3.1.6
     8Stable tag: 3.1.7
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8484
    8585== Changelog ==
     86= 3.1.7 (17th December 2025) =
     87* PHP 7.4 fixes
     88* Bug fixes and performance improvements
     89
    8690= 3.1.6 (16th December 2025) =
    8791* Improved support for Subscriber language field
  • woo-mailerlite/trunk/woo-mailerlite.php

    r3420776 r3421835  
    1616 * Plugin URI:        https://mailerlite.com
    1717 * 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.6
     18 * Version:           3.1.7
    1919 * Author:            MailerLite
    2020 * Author URI:        https://mailerlite.com
     
    4040 * Update when you release new versions.
    4141 */
    42 define( 'WOO_MAILERLITE_VERSION', '3.1.6' );
     42define( 'WOO_MAILERLITE_VERSION', '3.1.7' );
    4343
    4444define('WOO_MAILERLITE_ASYNC_JOBS', false);
     
    7575                        $integration_registry->register(new WooMailerLiteBlocksIntegration());
    7676                    } catch (Exception $e) {
    77                         WooMailerLiteLog()->error($e->getMessage());
     77                        WooMailerLiteLog()->error('woocommerce_blocks_loaded', ['error' => $e->getMessage(), 'trace' => $e->getTraceAsString()]);
    7878                    }
    7979                }
Note: See TracChangeset for help on using the changeset viewer.