Skip to content

Commit b0ba386

Browse files
author
John Spellman
authored
Release 1.3.2 (#383)
1 parent 7c71e6a commit b0ba386

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Tags:** cache, plugin, redis
66
**Requires at least:** 3.0.1
77
**Tested up to:** 6.1.1
8-
**Stable tag:** 1.3.1
8+
**Stable tag:** 1.3.2
99
**License:** GPLv2 or later
1010
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -104,13 +104,16 @@ There's a known issue with WordPress `alloptions` cache design. Specifically, a
104104

105105
## Changelog ##
106106

107-
### 1.3.1 (December 2nd, 2022) ###
107+
### 1.3.2 (December 5, 2022) ###
108+
* Fix broken `wp_cache_supports` function [[#382](https://github.com/pantheon-systems/wp-redis/pull/382)].
109+
110+
### 1.3.1 (December 2, 2022) ###
108111
* Declare `wp_cache_supports` function and support features. [[#378](https://github.com/pantheon-systems/wp-redis/pull/378)]
109112
* Make dependabot target `develop` branch for PRs. [[#376](https://github.com/pantheon-systems/wp-redis/pull/376)]
110113

111114
Declare `wp_cache_supports` function and support features. [[#378](https://github.com/pantheon-systems/wp-redis/pull/378)]
112115

113-
### 1.3.0 (November 29th, 2022) ###
116+
### 1.3.0 (November 29, 2022) ###
114117
* Added CONTRIBUTING.MD and GitHub action to automate deployments to wp.org. [[#368](https://github.com/pantheon-systems/wp-redis/pull/368)]
115118

116119
### 1.2.0 (February 17, 2022) ###

object-cache.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,14 +301,14 @@ function wp_cache_reset() {
301301
*/
302302
function wp_cache_supports( $feature ) {
303303
switch ( $feature ) {
304+
case 'get_multiple':
305+
return true;
306+
304307
case 'add_multiple':
305308
case 'set_multiple':
306-
case 'get_multiple':
307309
case 'delete_multiple':
308310
case 'flush_runtime':
309311
case 'flush_group':
310-
return true;
311-
312312
default:
313313
return false;
314314
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-redis",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/pantheon-systems/wp-redis.git"

readme.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: getpantheon, danielbachhuber, mboynes, Outlandish Josh
33
Tags: cache, plugin, redis
44
Requires at least: 3.0.1
55
Tested up to: 6.1.1
6-
Stable tag: 1.3.1
6+
Stable tag: 1.3.2
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -102,11 +102,14 @@ There's a known issue with WordPress `alloptions` cache design. Specifically, a
102102

103103
== Changelog ==
104104

105-
= 1.3.1 (December 2nd, 2022) =
105+
= 1.3.2 (December 5, 2022) =
106+
* Fix broken `wp_cache_supports` function [[#382](https://github.com/pantheon-systems/wp-redis/pull/382)].
107+
108+
= 1.3.1 (December 2, 2022) =
106109
* Declare `wp_cache_supports` function and support features. [[#378](https://github.com/pantheon-systems/wp-redis/pull/378)]
107110
* Make dependabot target `develop` branch for PRs. [[#376](https://github.com/pantheon-systems/wp-redis/pull/376)]
108111

109-
= 1.3.0 (November 29th, 2022) =
112+
= 1.3.0 (November 29, 2022) =
110113
* Added CONTRIBUTING.MD and GitHub action to automate deployments to wp.org. [[#368](https://github.com/pantheon-systems/wp-redis/pull/368)]
111114

112115
= 1.2.0 (February 17, 2022) =

wp-redis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP Redis
44
* Plugin URI: http://github.com/pantheon-systems/wp-redis/
55
* Description: WordPress Object Cache using Redis. Requires the PhpRedis extension (https://github.com/phpredis/phpredis).
6-
* Version: 1.3.1
6+
* Version: 1.3.2
77
* Author: Pantheon, Josh Koenig, Matthew Boynes, Daniel Bachhuber, Alley Interactive
88
* Author URI: https://pantheon.io/
99
*/

0 commit comments

Comments
 (0)