Version Description
= v160211 =
Requires PHP v5.4+. The latest version of Comet Cache is a complete rewrite (OOP design). Faster! and even more dependable. For further details, please see http://cometcache.com/new-minimum-php-version-php-5-4/
Download this release
Release Info
Developer | raamdev |
Plugin | Comet Cache |
Version | 160223.1 |
Comparing to | |
See all releases |
Code changes from version 160223 to 160223.1
- comet-cache.php +1 -1
- readme.txt +5 -1
- src/includes/stub.php +6 -1
- src/includes/translations/comet-cache.pot +2 -2
- src/vendor/autoload.php +1 -1
- src/vendor/composer/autoload_real.php +4 -4
comet-cache.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Version: 160223
|
4 |
Text Domain: comet-cache
|
5 |
Plugin Name: Comet Cache
|
6 |
Network: true
|
1 |
<?php
|
2 |
/*
|
3 |
+
Version: 160223.1
|
4 |
Text Domain: comet-cache
|
5 |
Plugin Name: Comet Cache
|
6 |
Network: true
|
readme.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
=== Comet Cache ===
|
2 |
|
3 |
-
Stable tag: 160223
|
4 |
Requires at least: 4.1
|
5 |
Tested up to: 4.5-alpha
|
6 |
Text Domain: comet-cache
|
@@ -336,6 +336,10 @@ Requires PHP v5.4+. The latest version of Comet Cache is a complete rewrite (OOP
|
|
336 |
|
337 |
== Changelog ==
|
338 |
|
|
|
|
|
|
|
|
|
339 |
= v160223 =
|
340 |
|
341 |
- **Announcement: After March 1st, 2016 Comet Cache will require PHP Multibyte String support.** The `mbstring` extension provides Multibyte String support to PHP and is required to properly handle UTF-8 characters, which many sites now use. Without Multibyte String support, caching will be unstable. For that reason we are requiring the `mbstring` extension to improve reliability when caching and to prevent your site from experiencing unforeseen issues in the future..
|
1 |
=== Comet Cache ===
|
2 |
|
3 |
+
Stable tag: 160223.1
|
4 |
Requires at least: 4.1
|
5 |
Tested up to: 4.5-alpha
|
6 |
Text Domain: comet-cache
|
336 |
|
337 |
== Changelog ==
|
338 |
|
339 |
+
= v160223.1 =
|
340 |
+
|
341 |
+
- **Bug Fix**: Fixes PHP Fatal Error when upgrading from Comet Cache v160211.
|
342 |
+
|
343 |
= v160223 =
|
344 |
|
345 |
- **Announcement: After March 1st, 2016 Comet Cache will require PHP Multibyte String support.** The `mbstring` extension provides Multibyte String support to PHP and is required to properly handle UTF-8 characters, which many sites now use. Without Multibyte String support, caching will be unstable. For that reason we are requiring the `mbstring` extension to improve reliability when caching and to prevent your site from experiencing unforeseen issues in the future..
|
src/includes/stub.php
CHANGED
@@ -12,7 +12,7 @@ if (!defined('WPINC')) {
|
|
12 |
require_once dirname(dirname(__FILE__)).'/vendor/autoload.php';
|
13 |
require_once dirname(__FILE__).'/functions/i18n-utils.php';
|
14 |
|
15 |
-
${__FILE__}['version'] = '160223'; //version//
|
16 |
${__FILE__}['plugin'] = dirname(dirname(dirname(__FILE__)));
|
17 |
${__FILE__}['plugin'] .= '/'.basename(${__FILE__}['plugin']).'.php';
|
18 |
${__FILE__}['ns_path'] = str_replace('\\', '/', __NAMESPACE__); // To dir/path.
|
@@ -28,3 +28,8 @@ define(__NAMESPACE__.'\\PLUGIN_FILE', ${__FILE__}['plugin']);
|
|
28 |
define(__NAMESPACE__.'\\IS_PRO', ${__FILE__}['is_pro']);
|
29 |
|
30 |
unset(${__FILE__}); // Housekeeping.
|
|
|
|
|
|
|
|
|
|
12 |
require_once dirname(dirname(__FILE__)).'/vendor/autoload.php';
|
13 |
require_once dirname(__FILE__).'/functions/i18n-utils.php';
|
14 |
|
15 |
+
${__FILE__}['version'] = '160223.1'; //version//
|
16 |
${__FILE__}['plugin'] = dirname(dirname(dirname(__FILE__)));
|
17 |
${__FILE__}['plugin'] .= '/'.basename(${__FILE__}['plugin']).'.php';
|
18 |
${__FILE__}['ns_path'] = str_replace('\\', '/', __NAMESPACE__); // To dir/path.
|
28 |
define(__NAMESPACE__.'\\IS_PRO', ${__FILE__}['is_pro']);
|
29 |
|
30 |
unset(${__FILE__}); // Housekeeping.
|
31 |
+
|
32 |
+
// Fixes PHP Fatal error with upgrades from v160211
|
33 |
+
class_alias(__NAMESPACE__.'\\AdvCacheBackCompat', 'WebSharks\\Comet_Cache\\AdvCacheBackCompat');
|
34 |
+
class_alias(__NAMESPACE__.'\\AdvancedCache', 'WebSharks\\Comet_Cache\\AdvancedCache');
|
35 |
+
|
src/includes/translations/comet-cache.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Comet Cache package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Comet Cache 160223\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/comet-cache\n"
|
7 |
-
"POT-Creation-Date: 2016-02-22
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the Comet Cache package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Comet Cache 160223.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/comet-cache\n"
|
7 |
+
"POT-Creation-Date: 2016-02-22 18:08:10+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
src/vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit067707744d3a1bf2cf5138d984760fb5::getLoader();
|
src/vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitd7e520250662bb720cf0db0fd6927f04
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -44,7 +44,7 @@ class ComposerAutoloaderInitd7e520250662bb720cf0db0fd6927f04
|
|
44 |
}
|
45 |
}
|
46 |
|
47 |
-
function
|
48 |
{
|
49 |
require $file;
|
50 |
}
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit067707744d3a1bf2cf5138d984760fb5
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit067707744d3a1bf2cf5138d984760fb5', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit067707744d3a1bf2cf5138d984760fb5', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
44 |
}
|
45 |
}
|
46 |
|
47 |
+
function composerRequire067707744d3a1bf2cf5138d984760fb5($file)
|
48 |
{
|
49 |
require $file;
|
50 |
}
|