Changeset 2812614
- Timestamp:
- 11/05/2022 11:33:20 AM (3 years ago)
- Location:
- spinupwp/trunk
- Files:
-
- 9 edited
-
. (modified) (1 prop)
-
drop-ins/object-cache.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
spinupwp.php (modified) (1 diff)
-
src/SiteHealth.php (modified) (2 diffs)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (modified) (1 diff)
-
vendor/composer/installed.json (modified) (1 diff)
-
vendor/composer/installed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spinupwp/trunk
- Property svn:ignore
-
old new 6 6 .gitattributes 7 7 .gitignore 8 composer.lock
-
- Property svn:ignore
-
spinupwp/trunk/drop-ins/object-cache.php
r2774192 r2812614 4 4 Plugin URI: http://wordpress.org/plugins/spinupwp/ 5 5 Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI. 6 Version: 1.5 6 Version: 1.5.1 7 7 Author: SpinupWP 8 8 Author URI: https://spinupwp.com/ -
spinupwp/trunk/readme.txt
r2774192 r2812614 3 3 Tags: cache, caching, performance 4 4 Requires at least: 4.7 5 Tested up to: 6. 0.15 Tested up to: 6.1 6 6 Requires PHP: 7.1 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.5.1 (2022-11-05) = 90 * Ensure SpinupWP page caching is correctly detected in Site Health 91 89 92 = 1.5 (2022-08-23) = 90 93 * Purge the page cache on core, plugin, and theme update -
spinupwp/trunk/spinupwp.php
r2774192 r2812614 5 5 Description: SpinupWP helper plugin. 6 6 Author: SpinupWP 7 Version: 1.5 7 Version: 1.5.1 8 8 Network: True 9 9 Text Domain: spinupwp -
spinupwp/trunk/src/SiteHealth.php
r2774192 r2812614 10 10 public function init() { 11 11 add_filter( 'site_status_tests', array( $this, 'filter_site_health_checks' ) ); 12 add_filter( 'site_status_page_cache_supported_cache_headers', array( $this, 'filter_page_cache_headers' ) ); 12 13 } 13 14 … … 78 79 return $result; 79 80 } 81 82 /** 83 * Filters the list of cache headers supported by core. 84 * 85 * @param array $cache_headers 86 * 87 * @return array 88 */ 89 public function filter_page_cache_headers( $cache_headers ) { 90 $cache_headers['fastcgi-cache'] = static function ( $header_value ) { 91 return in_array( strtolower( $header_value ), array( 92 'hit', 93 'miss', 94 'bypass', 95 ), true ); 96 }; 97 98 return $cache_headers; 99 } 80 100 } -
spinupwp/trunk/vendor/composer/autoload_classmap.php
r2774202 r2812614 8 8 return array( 9 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 10 'SpinupWp\\AdminBar' => $baseDir . '/src/AdminBar.php', 11 'SpinupWp\\AdminNotices' => $baseDir . '/src/AdminNotices.php', 12 'SpinupWp\\Cache' => $baseDir . '/src/Cache.php', 13 'SpinupWp\\Cli' => $baseDir . '/src/Cli.php', 14 'SpinupWp\\Cli\\CacheCommands' => $baseDir . '/src/Cli/CacheCommands.php', 15 'SpinupWp\\Cli\\Commands' => $baseDir . '/src/Cli/Commands.php', 16 'SpinupWp\\Compatibility' => $baseDir . '/src/Compatibility.php', 17 'SpinupWp\\Compatibility\\ElementorPlugin' => $baseDir . '/src/Compatibility/ElementorPlugin.php', 18 'SpinupWp\\Plugin' => $baseDir . '/src/Plugin.php', 19 'SpinupWp\\SiteHealth' => $baseDir . '/src/SiteHealth.php', 10 20 ); -
spinupwp/trunk/vendor/composer/autoload_static.php
r2774202 r2812614 27 27 public static $classMap = array ( 28 28 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 29 'SpinupWp\\AdminBar' => __DIR__ . '/../..' . '/src/AdminBar.php', 30 'SpinupWp\\AdminNotices' => __DIR__ . '/../..' . '/src/AdminNotices.php', 31 'SpinupWp\\Cache' => __DIR__ . '/../..' . '/src/Cache.php', 32 'SpinupWp\\Cli' => __DIR__ . '/../..' . '/src/Cli.php', 33 'SpinupWp\\Cli\\CacheCommands' => __DIR__ . '/../..' . '/src/Cli/CacheCommands.php', 34 'SpinupWp\\Cli\\Commands' => __DIR__ . '/../..' . '/src/Cli/Commands.php', 35 'SpinupWp\\Compatibility' => __DIR__ . '/../..' . '/src/Compatibility.php', 36 'SpinupWp\\Compatibility\\ElementorPlugin' => __DIR__ . '/../..' . '/src/Compatibility/ElementorPlugin.php', 37 'SpinupWp\\Plugin' => __DIR__ . '/../..' . '/src/Plugin.php', 38 'SpinupWp\\SiteHealth' => __DIR__ . '/../..' . '/src/SiteHealth.php', 29 39 ); 30 40 -
spinupwp/trunk/vendor/composer/installed.json
r2774202 r2812614 1 1 { 2 2 "packages": [], 3 "dev": true,3 "dev": false, 4 4 "dev-package-names": [] 5 5 } -
spinupwp/trunk/vendor/composer/installed.php
r2774202 r2812614 8 8 'reference' => NULL, 9 9 'name' => 'spinupwp/spinupwp-plugin', 10 'dev' => true,10 'dev' => false, 11 11 ), 12 12 'versions' => array(
Note: See TracChangeset
for help on using the changeset viewer.