💦 FULL SET: Changeset/ - Full Gallery 2025

Changeset 3274957


Ignore:
Timestamp:
04/16/2025 04:43:19 PM (9 months ago)
Author:
aguidrevitch
Message:
  • Error Log Cleanup: Fixed several notices that were cluttering error logs in some cases, helping keep your server logs clean and easy to read.
  • Bugfixes: Addressed various minor issues to improve stability and performance.
Location:
fastpixel-website-accelerator/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fastpixel-website-accelerator/trunk/fastpixel.php

    r3264682 r3274957  
    55 * Description: Faster WordPress Made Easy – Solve all your website speed problems effortlessly with just a few clicks.
    66 * Author:      ShortPixel
    7  * Version:     1.0.46
     7 * Version:     1.0.47
    88 * Text Domain: fastpixel-website-accelerator
    99 * Domain Path: /languages
     
    2121defined('ABSPATH') || exit;
    2222
    23 define('FASTPIXEL_VERSION', '1.0.46');
     23define('FASTPIXEL_VERSION', '1.0.47');
    2424define('FASTPIXEL_NAME', 'FastPixel');
    2525if (!defined('FASTPIXEL_PLUGIN_DIR'))
  • fastpixel-website-accelerator/trunk/inc/backend/controllers/cache.php

    r3264682 r3274957  
    115115            }, 10, 1);
    116116
    117             add_action('wp_trash_post', function ($post_id, $old_status) {
     117            add_action('wp_trash_post', function ($post_id, $old_status = '') {
    118118                if ($this->debug) {
    119119                    FASTPIXEL_DEBUG::log('Class FASTPIXEL_Backend_Cache: ACTION wp_trash_post');
  • fastpixel-website-accelerator/trunk/inc/backend/models/diag.php

    r3083183 r3274957  
    2121            $diag_controller = FASTPIXEL_Diag::get_instance();
    2222            $diag_controller->add_test_model($this);
    23             add_action('plugins_loaded', [$this, 'l10n_name'], 10);
     23            add_action('init', [$this, 'l10n_name'], 10);
    2424        }
    2525
  • fastpixel-website-accelerator/trunk/inc/classes/cache-files.php

    r3223801 r3274957  
    235235                * no need to escape output, escape functions are not available in advanced-cache.php
    236236                */
     237                ob_start();
    237238                // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_readfile -- direct file output to the browser.
    238239                readfile($path); // phpcs:ignore
     
    242243                    echo '<!-- Optimized and served by FastPixel.io -->';
    243244                }
    244                 @ob_end_flush();
    245                 flush();
    246245            }
    247246            if ($this->debug) {
     
    305304                            FASTPIXEL_Debug::log('Class FASTPIXEL_Cache_files: stopping wordpress and removing request');
    306305                        }
     306                        @ob_end_flush();
     307                        flush();
    307308                        //removing default hook which do cache request
    308309                        remove_action('fastpixel/shutdown', [$fastpixel_cache, 'request_page_cache'], 20);
  • fastpixel-website-accelerator/trunk/readme.txt

    r3264682 r3274957  
    33Tags: speed, cache, caching, performance, web vitals
    44Requires at least: 6.0
    5 Tested up to: 6.7
     5Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 1.0.46
     7Stable tag: 1.0.47
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    201201== Changelog ==
    202202
     203= 1.0.47 =
     204
     205🧹 The Clean Logs Update
     206
     207Release Date: April 16, 2025
     208
     209🛠️ Fixes & Improvements
     210
     211* Error Log Cleanup: Fixed several notices that were cluttering error logs in some cases, helping keep your server logs clean and easy to read.
     212* Bugfixes: Addressed various minor issues to improve stability and performance.
     213
     214Update now for a smoother, quieter backend experience! 🚀
     215
    203216= 1.0.46 =
    204217
     
    212225
    213226Update now to keep your WooCommerce store running fast and flawlessly! 🚀
    214 
    215227
    216228= 1.0.45 =
  • fastpixel-website-accelerator/trunk/vendor/composer/installed.php

    r3263467 r3274957  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '5389b389b24d312846f67829b5f7cc62699aa32f',
     6        'reference' => 'f8ca4de294fc3f91f04a50eae0e9a89872d684a9',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '5389b389b24d312846f67829b5f7cc62699aa32f',
     16            'reference' => 'f8ca4de294fc3f91f04a50eae0e9a89872d684a9',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.