Plugin Directory

Changeset 3053916


Ignore:
Timestamp:
03/18/2024 09:24:00 PM (2 years ago)
Author:
megaoptim
Message:

Version 1.2.2

Location:
rapid-cache/trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • rapid-cache/trunk/includes/src/Traits/Ac/NcDebugUtils.php

    r3027335 r3053916  
    168168
    169169                case $this::NC_DEBUG_IS_LOGGED_IN_USER_NONCE:
    170                     $reason = __('because the current page contains `_wpnonce` or `akismet_comment_nonce`. While your current configuration states that pages should be cached for logged-in visitors, it also states that pages with dynamic `*nonce*` values in the markup should not be cached, even for logged-in visitors. See https://bit.ly/2Gskz76 for further details.', 'rapid-cache');
     170                    $reason = __('because the current page contains `_wpnonce` or `akismet_comment_nonce`. While your current configuration states that pages should be cached for logged-in visitors, it also states that pages with dynamic `*nonce*` values in the markup should not be cached, even for logged-in visitors. See https://megaoptim.com/link/11001 for further details.', 'rapid-cache');
    171171                    break; // Break switch handler.
    172172
    173173                case $this::NC_DEBUG_PAGE_CONTAINS_NONCE:
    174                     $reason = __('because the current page contains `_wpnonce` or `akismet_comment_nonce`. Your current configuration states that pages with dynamic `*nonce*` values in the markup should not be cached. See https://bit.ly/2Gskz76 for further details.', 'rapid-cache');
     174                    $reason = __('because the current page contains `_wpnonce` or `akismet_comment_nonce`. Your current configuration states that pages with dynamic `*nonce*` values in the markup should not be cached. See https://megaoptim.com/link/11001 for further details.', 'rapid-cache');
    175175                    break; // Break switch handler.
    176176
  • rapid-cache/trunk/includes/src/Traits/Plugin/NoticeUtils.php

    r2380046 r3053916  
    196196            $_combined = '<div class="updated notice is-dismissible" style="clear:both; padding-right:38px; position: relative;">';
    197197            $_combined .= '<p><img src="'.esc_attr($this->url('/assets/images/clear.png')).'" style="float:left; margin:0 10px 0 0; border:0;" />';
    198             $_combined .= sprintf(__('<strong>%1$s</strong> detected changes and intelligently cleared the cache to keep your site up-to-date.', 'rapid-cache'), esc_html(MEGAOPTIM_RAPID_CACHE_NAME)).' <a href="#" id="'.MEGAOPTIM_RAPID_CACHE_SLUG.'-toggle-notices" style="text-decoration:none; border-bottom:1px dotted;" onclick="jQuery(\'#'.MEGAOPTIM_RAPID_CACHE_SLUG.'-combined-notices\').toggle(); if (jQuery(\'#rapid-cache-combined-notices\').is(\':visible\')) { jQuery(this).text(\''.$_hide_details.'\'); } else { jQuery(this).text(\''.$_see_details.'\'); }">'.$_see_details.'</a></p>';
    199             $_combined .= '<div id="'.MEGAOPTIM_RAPID_CACHE_SLUG.'-combined-notices" style="display: none;">'.$_line_items.'</div>';
    200             $_combined .= '<button type="button" class="notice-dismiss"><span class="screen-reader-text">'.__('Dismiss this notice.', 'rapid-cache').'</span></button>';
     198            $_combined .= sprintf(__('<strong>%1$s</strong> detected changes and intelligently cleared the cache to keep your site up-to-date.', 'rapid-cache'), esc_html(MEGAOPTIM_RAPID_CACHE_NAME)).' <a href="#" id="rapid-cache-toggle-notices" style="text-decoration:none; border-bottom:1px dotted;" onclick="jQuery(\'#rapid-cache-combined-notices\').toggle(); if (jQuery(\'#rapid-cache-combined-notices\').is(\':visible\')) { jQuery(this).text(\''.$_hide_details.'\'); } else { jQuery(this).text(\''.$_see_details.'\'); }">'.$_see_details.'</a></p>';
     199            $_combined .= '<div id="rapid-cache-combined-notices" style="display: none;">'.$_line_items.'</div>';
    201200            $_combined .= '</div>';
    202201
  • rapid-cache/trunk/rapid-cache.php

    r3031195 r3053916  
    66Author: MegaOptim
    77Author URI: https://megaoptim.com
    8 Version: 1.2.1
     8Version: 1.2.2
    99Text Domain: rapid-cache
    1010Domain Path: /languages
  • rapid-cache/trunk/readme.txt

    r3031195 r3053916  
    11=== Rapid Cache ===
    22
    3 Stable tag: 1.2.1
     3Stable tag: 1.2.2
    44Requires at least: 4.2
    5 Tested up to: 6.4
     5Tested up to: 6.5
    66Text Domain: rapid-cache
    77License: GPLv2 or later
     
    238238== Changelog ==
    239239
     240= 1.2.2 =
     241*Release date - 23 Jan 2024*
     242
     243* Fix admin notice dismiss issue
     244* Fix broken documentation link in settings
     245* Test with WordPress 6.5
     246
    240247= 1.2.1 =
    241 Release date: February 4th, 2024
     248*Release date: February 4th, 2024*
    242249
    243250* Fix: Fatal error in the settings screen in some cases
    244251
    245252= 1.2.0 =
    246 Release date: January 26th, 2024
    247 - New: Compatibility with PHP 8.3
    248 - New: Compatibility with WordPress 6.4
    249 - New: Cache Preloading with CRON
    250 - New: Option to cache logged-in users
    251 - New: Version cache salt filter - `rapid_cache_version_salt`
    252 - New: Reorganized settings
    253 - Fix: Fixes various PHP warnings
     253*Release date: January 26th, 2024*
     254
     255* New: Compatibility with PHP 8.3
     256* New: Compatibility with WordPress 6.4
     257* New: Cache Preloading with CRON
     258* New: Option to cache logged*in users
     259* New: Version cache salt filter - `rapid_cache_version_salt`
     260* New: Reorganized settings
     261* Fix: Fixes various PHP warnings
    254262
    255263= 1.1.0 =
    256 Release date: March 21st, 2020
    257 - New: Added more options for clearing cache in the Admin Bar
    258 - New: Fix wrong query parameter in 'GET Requests' settings. @props aj-adl
    259 - Fix: Improved instructions in Import/Export/Migration tab
     264*Release date: March 21st, 2020*
     265
     266* New: Added more options for clearing cache in the Admin Bar
     267* New: Fix wrong query parameter in 'GET Requests' settings. @props aj-adl
     268* Fix: Improved instructions in Import/Export/Migration tab
    260269
    261270= 1.0.1 =
    262 
    263 Release date: 13th September 2020
    264 - New: Added import/export options
    265 - New: Added option to preserve settings of the previous Comet install in Rapid Cache > "Import/Export"
     271*Release date: 13th September 2020*
     272
     273* New: Added import/export options
     274* New: Added option to preserve settings of the previous Comet install in Rapid Cache > "Import/Export"
    266275
    267276= 1.0.0  =
    268 
    269 Release date: 11th September 2020
    270 - New: Added composer PSR4 autoloading
    271 - New: Added mbstring polyfill for better compatibility
    272 - New: Removed old notification about deprecated APC support
    273 - New: Rewrote the requirement check system
    274 - New: Removed the PRO version front-end references
    275 - New: Moved the assets to own assets/ directory
    276 - New: Updated conflicting plugins
    277 - New: Removed old database migrations
    278 - New: Updated documentation https://github.com/megaoptim/rapid-cache/wiki
    279 - New: Added developer functions: rapidcache_get_version(), rapidcache_clear_cache(), rapidcache_clear_post_cache($post_id), rapidcache_clear_url_cache($url), rapidcache_wipe_cache(), rapidcache_purge_expired_cache(), rapidcache_get_options()
    280 - New: Added `rapid_cache_ob_callback_filter` that allow to filter the page output before saving into cache
    281 - Fix: 'Non static method should not be called statically
    282 - Fix: 'Headers already sent' warnings
    283 - Fix: 'Notice: id was called incorrectly. Product properties should not be accessed directly.' warning with WooCommerce
    284 - Fix: Warnings when disk_*_space functions are disabled
    285 - New: Add Referrer-Policy to cacheable headers list
    286 - New: Add actions: rapid_cache_wipe_cache, rapid_cache_clear_cache, rapid_cache_purge_cache, rapid_cache_wurge_cache
     277*Release date: 11th September 2020*
     278
     279* New: Added composer PSR4 autoloading
     280* New: Added mbstring polyfill for better compatibility
     281* New: Removed old notification about deprecated APC support
     282* New: Rewrote the requirement check system
     283* New: Removed the PRO version front-end references
     284* New: Moved the assets to own assets/ directory
     285* New: Updated conflicting plugins
     286* New: Removed old database migrations
     287* New: Updated documentation https://github.com/megaoptim/rapid-cache/wiki
     288* New: Added developer functions: rapidcache_get_version(), rapidcache_clear_cache(), rapidcache_clear_post_cache($post_id), rapidcache_clear_url_cache($url), rapidcache_wipe_cache(), rapidcache_purge_expired_cache(), rapidcache_get_options()
     289* New: Added `rapid_cache_ob_callback_filter` that allow to filter the page output before saving into cache
     290* Fix: 'Non static method should not be called statically
     291* Fix: 'Headers already sent' warnings
     292* Fix: 'Notice: id was called incorrectly. Product properties should not be accessed directly.' warning with WooCommerce
     293* Fix: Warnings when disk_*_space functions are disabled
     294* New: Add Referrer-Policy to cacheable headers list
     295* New: Add actions: rapid_cache_wipe_cache, rapid_cache_clear_cache, rapid_cache_purge_cache, rapid_cache_wurge_cache
Note: See TracChangeset for help on using the changeset viewer.