Plugin Directory

Changeset 3421853


Ignore:
Timestamp:
12/17/2025 11:54:01 AM (3 months ago)
Author:
poweredcache
Message:

Update to version 3.7.1 from GitHub

Location:
powered-cache
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • powered-cache/tags/3.7.1/includes/classes/Config.php

    r3302134 r3421853  
    114114        $string .= "defined( 'ABSPATH' ) || exit;" . PHP_EOL;
    115115        $string .= "define( 'POWERED_OBJECT_CACHE', true );" . PHP_EOL;
    116         $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) ) {" . PHP_EOL;
     116        $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) && defined( 'DB_NAME') ) {" . PHP_EOL;
    117117        $string .= "\t" . "define( 'WP_CACHE_KEY_SALT', DB_NAME );" . PHP_EOL;
    118118        $string .= '}' . PHP_EOL;
     
    126126        $string .= '} else {' . PHP_EOL;
    127127        $string .= "\t" . 'define( \'POWERED_OBJECT_CACHE_HAS_PROBLEM\', true );' . PHP_EOL;
    128         $string .= '}';
     128        $string .= '}' . PHP_EOL;
    129129
    130130        /**
  • powered-cache/tags/3.7.1/languages/powered-cache.pot

    r3398618 r3421853  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Powered Cache 3.7\n"
     5"Project-Id-Version: Powered Cache 3.7.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/powered-cache\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-19T08:06:30+00:00\n"
     12"POT-Creation-Date: 2025-12-17T11:50:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • powered-cache/tags/3.7.1/powered-cache.php

    r3398618 r3421853  
    44 * Plugin URI:        https://poweredcache.com
    55 * Description:       Powered Cache is the most powerful caching and performance suite for WordPress, designed to easily improve your PageSpeed and Web Vitals Score.
    6  * Version:           3.7
     6 * Version:           3.7.1
    77 * Requires at least: 5.7
    88 * Requires PHP:      7.4
     
    2626
    2727// Useful global constants.
    28 define( 'POWERED_CACHE_VERSION', '3.7' );
     28define( 'POWERED_CACHE_VERSION', '3.7.1' );
    2929define( 'POWERED_CACHE_DB_VERSION', '3.4' );
    3030define( 'POWERED_CACHE_PLUGIN_FILE', __FILE__ );
  • powered-cache/tags/3.7.1/readme.txt

    r3398618 r3421853  
    44Requires at least:  5.7
    55Tested up to:  6.9
    6 Stable tag:  3.7
     6Stable tag:  3.7.1
    77License: GPLv2 (or later)
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172== Changelog ==
    173173
     174= 3.7.1 (December 17, 2025) =
     175- [Updated] Dependencies.
     176- Strictly validate DB_NAME before applying object cache prefixing, preventing errors when wp-config.php is not loaded.
     177
    174178= 3.7 (November 19, 2025) =
    175 - [Improved] Cache purge dimissing - via ajaxified.
     179- [Improved] Cache purge dismissing - via ajaxified.
    176180- [Improved] Delayed JS dependency chain resolution for better performance and reliability.
    177181- [Improved] Delayed JS execution now supports DOMContentLoaded.
  • powered-cache/trunk/includes/classes/Config.php

    r3302134 r3421853  
    114114        $string .= "defined( 'ABSPATH' ) || exit;" . PHP_EOL;
    115115        $string .= "define( 'POWERED_OBJECT_CACHE', true );" . PHP_EOL;
    116         $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) ) {" . PHP_EOL;
     116        $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) && defined( 'DB_NAME') ) {" . PHP_EOL;
    117117        $string .= "\t" . "define( 'WP_CACHE_KEY_SALT', DB_NAME );" . PHP_EOL;
    118118        $string .= '}' . PHP_EOL;
     
    126126        $string .= '} else {' . PHP_EOL;
    127127        $string .= "\t" . 'define( \'POWERED_OBJECT_CACHE_HAS_PROBLEM\', true );' . PHP_EOL;
    128         $string .= '}';
     128        $string .= '}' . PHP_EOL;
    129129
    130130        /**
  • powered-cache/trunk/languages/powered-cache.pot

    r3398618 r3421853  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Powered Cache 3.7\n"
     5"Project-Id-Version: Powered Cache 3.7.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/powered-cache\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-19T08:06:30+00:00\n"
     12"POT-Creation-Date: 2025-12-17T11:50:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • powered-cache/trunk/powered-cache.php

    r3398618 r3421853  
    44 * Plugin URI:        https://poweredcache.com
    55 * Description:       Powered Cache is the most powerful caching and performance suite for WordPress, designed to easily improve your PageSpeed and Web Vitals Score.
    6  * Version:           3.7
     6 * Version:           3.7.1
    77 * Requires at least: 5.7
    88 * Requires PHP:      7.4
     
    2626
    2727// Useful global constants.
    28 define( 'POWERED_CACHE_VERSION', '3.7' );
     28define( 'POWERED_CACHE_VERSION', '3.7.1' );
    2929define( 'POWERED_CACHE_DB_VERSION', '3.4' );
    3030define( 'POWERED_CACHE_PLUGIN_FILE', __FILE__ );
  • powered-cache/trunk/readme.txt

    r3398618 r3421853  
    44Requires at least:  5.7
    55Tested up to:  6.9
    6 Stable tag:  3.7
     6Stable tag:  3.7.1
    77License: GPLv2 (or later)
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172== Changelog ==
    173173
     174= 3.7.1 (December 17, 2025) =
     175- [Updated] Dependencies.
     176- Strictly validate DB_NAME before applying object cache prefixing, preventing errors when wp-config.php is not loaded.
     177
    174178= 3.7 (November 19, 2025) =
    175 - [Improved] Cache purge dimissing - via ajaxified.
     179- [Improved] Cache purge dismissing - via ajaxified.
    176180- [Improved] Delayed JS dependency chain resolution for better performance and reliability.
    177181- [Improved] Delayed JS execution now supports DOMContentLoaded.
Note: See TracChangeset for help on using the changeset viewer.