Skip to content

Commit 90c46bb

Browse files
committed
tag 1.4.0
1 parent f325e2f commit 90c46bb

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

includes/diagnostics.php

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
'WP_REDIS_CLUSTER',
5050
'WP_REDIS_SHARDS',
5151
'WP_REDIS_SENTINEL',
52+
'WP_REDIS_IGBINARY',
5253
'WP_REDIS_MAXTTL',
5354
'WP_CACHE_KEY_SALT',
5455
'WP_REDIS_GLOBAL_GROUPS',

includes/object-cache.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Redis Object Cache Drop-In
44
Plugin URI: http://wordpress.org/plugins/redis-cache/
55
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI.
6-
Version: 1.3.9
6+
Version: 1.4.0
77
Author: Till Krüss
88
Author URI: https://till.im/
99
License: GPLv3
@@ -582,7 +582,7 @@ public function replace($key, $value, $group = 'default', $expiration = 0)
582582
protected function add_or_replace($add, $key, $value, $group = 'default', $expiration = 0)
583583
{
584584
if ( $add && wp_suspend_cache_addition() ) {
585-
return false;
585+
return false;
586586
}
587587

588588
$result = true;

readme.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/tillkruss
44
Tags: redis, predis, phpredis, hhvm, pecl, caching, cache, object cache, performance, replication, clustering
55
Requires at least: 3.3
66
Tested up to: 5.0
7-
Stable tag: 1.3.9
7+
Stable tag: 1.4.0
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -175,6 +175,11 @@ The following commands are supported:
175175

176176
== Changelog ==
177177

178+
= 1.4.0 =
179+
180+
* Added support for igbinary
181+
* Added support for `wp_suspend_cache_addition()`
182+
178183
= 1.3.9 =
179184

180185
* Fixed `WP_REDIS_SHARDS` not showing up in server list
@@ -314,6 +319,10 @@ The following commands are supported:
314319

315320
== Upgrade Notice ==
316321

322+
= 1.4.0 =
323+
324+
This update adds support for igbinary and `wp_suspend_cache_addition()`.
325+
317326
= 1.3.9 =
318327

319328
This update contains fixes for sharding.

redis-cache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Redis Object Cache
44
Plugin URI: https://wordpress.org/plugins/redis-cache/
55
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI.
6-
Version: 1.3.9
6+
Version: 1.4.0
77
Text Domain: redis-cache
88
Domain Path: /languages
99
Author: Till Krüss

0 commit comments

Comments
 (0)