Plugin Directory

Changeset 2812614


Ignore:
Timestamp:
11/05/2022 11:33:20 AM (3 years ago)
Author:
spinupwp
Message:

Preparing for 1.5.1 release

Location:
spinupwp/trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • spinupwp/trunk

    • Property svn:ignore
      •  

        old new  
        66.gitattributes
        77.gitignore
         8composer.lock
  • spinupwp/trunk/drop-ins/object-cache.php

    r2774192 r2812614  
    44Plugin URI: http://wordpress.org/plugins/spinupwp/
    55Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI.
    6 Version: 1.5
     6Version: 1.5.1
    77Author: SpinupWP
    88Author URI: https://spinupwp.com/
  • spinupwp/trunk/readme.txt

    r2774192 r2812614  
    33Tags: cache, caching, performance
    44Requires at least: 4.7
    5 Tested up to: 6.0.1
     5Tested up to: 6.1
    66Requires PHP: 7.1
    7 Stable tag: 1.5
     7Stable tag: 1.5.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     89= 1.5.1 (2022-11-05) =
     90* Ensure SpinupWP page caching is correctly detected in Site Health
     91
    8992= 1.5 (2022-08-23) =
    9093* Purge the page cache on core, plugin, and theme update
  • spinupwp/trunk/spinupwp.php

    r2774192 r2812614  
    55Description:  SpinupWP helper plugin.
    66Author:       SpinupWP
    7 Version:      1.5
     7Version:      1.5.1
    88Network:      True
    99Text Domain:  spinupwp
  • spinupwp/trunk/src/SiteHealth.php

    r2774192 r2812614  
    1010    public function init() {
    1111        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' ) );
    1213    }
    1314
     
    7879        return $result;
    7980    }
     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    }
    80100}
  • spinupwp/trunk/vendor/composer/autoload_classmap.php

    r2774202 r2812614  
    88return array(
    99    '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',
    1020);
  • spinupwp/trunk/vendor/composer/autoload_static.php

    r2774202 r2812614  
    2727    public static $classMap = array (
    2828        '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',
    2939    );
    3040
  • spinupwp/trunk/vendor/composer/installed.json

    r2774202 r2812614  
    11{
    22    "packages": [],
    3     "dev": true,
     3    "dev": false,
    44    "dev-package-names": []
    55}
  • spinupwp/trunk/vendor/composer/installed.php

    r2774202 r2812614  
    88        'reference' => NULL,
    99        'name' => 'spinupwp/spinupwp-plugin',
    10         'dev' => true,
     10        'dev' => false,
    1111    ),
    1212    'versions' => array(
Note: See TracChangeset for help on using the changeset viewer.