Skip to content

Commit bf76694

Browse files
authored
Release 1.4.6 (#502)
2 parents 034f87e + e5881c3 commit bf76694

File tree

7 files changed

+28
-20
lines changed

7 files changed

+28
-20
lines changed

.github/workflows/lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
strategy:
5757
matrix:
58-
php_version: [7.4, 8.2, 8.3]
58+
php_version: [7.4, 8.2, 8.3, 8.4]
5959
redis_enabled: [true, false]
6060
services:
6161
mariadb:

.github/workflows/plugin-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818
- name: Validate Plugin Version
19-
uses: jazzsequence/action-validate-plugin-version@v1.2.4
19+
uses: jazzsequence/action-validate-plugin-version@v1.2.6

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
**Contributors:** [getpantheon](https://profiles.wordpress.org/getpantheon), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [mboynes](https://profiles.wordpress.org/mboynes), [Outlandish Josh](https://profiles.wordpress.org/outlandish-josh) [jspellman](https://profiles.wordpress.org/jspellman/) [jazzs3quence](https://profiles.wordpress.org/jazzs3quence/)
55
**Tags:** cache, plugin, redis
66
**Requires at least:** 3.0.1
7-
**Tested up to:** 6.7.1
8-
**Stable tag:** 1.4.5
7+
**Tested up to:** 6.8.1
8+
**Requires PHP:** 7.4
9+
**Stable tag:** 1.4.6
910
**License:** GPLv2 or later
1011
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1112

@@ -33,7 +34,7 @@ This assumes you have a PHP environment with the [required PhpRedis extension](h
3334
$redis_server = array(
3435
'host' => '127.0.0.1',
3536
'port' => 6379,
36-
'auth' => '12345',
37+
'auth' => '12345', // ['user', 'password'] if you use Redis ACL
3738
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.
3839
);
3940

@@ -108,6 +109,9 @@ There's a known issue with WordPress `alloptions` cache design. Specifically, a
108109

109110
## Changelog ##
110111

112+
### 1.4.6 (June 17, 2025) ###
113+
* PHP 8.4 compatibility
114+
111115
### 1.4.5 (January 21, 2024) ###
112116
* Support Relay in `check_client_dependencies()` correctly [[#471](https://github.com/pantheon-systems/wp-redis/pull/471)] (props @EarthlingDavey)
113117

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"pantheon-systems/pantheon-wp-coding-standards": "^2.0",
1616
"pantheon-systems/pantheon-wordpress-upstream-tests": "dev-master",
1717
"phpunit/phpunit": "^9",
18-
"yoast/phpunit-polyfills": "^3.0",
18+
"yoast/phpunit-polyfills": "^4.0",
1919
"pantheon-systems/wpunit-helpers": "^2.0"
2020
},
2121
"scripts": {

composer.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
Contributors: getpantheon, danielbachhuber, mboynes, Outlandish Josh, jspellman, jazzs3quence
33
Tags: cache, plugin, redis
44
Requires at least: 3.0.1
5-
Tested up to: 6.7.1
6-
Stable tag: 1.4.5
5+
Tested up to: 6.8.1
6+
Requires PHP: 7.4
7+
Stable tag: 1.4.6
78
License: GPLv2 or later
89
License URI: http://www.gnu.org/licenses/gpl-2.0.html
910

@@ -31,11 +32,11 @@ This assumes you have a PHP environment with the [required PhpRedis extension](h
3132
$redis_server = array(
3233
'host' => '127.0.0.1',
3334
'port' => 6379,
34-
'auth' => '12345',
35+
'auth' => '12345', // ['user', 'password'] if you use Redis ACL
3536
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.
3637
);
3738

38-
3. If your Redis server is listening through a sockt file instead, set its path on `host` parameter and change the port to `null`:
39+
3. If your Redis server is listening through a socket file instead, set its path on `host` parameter and change the port to `null`:
3940

4041
$redis_server = array(
4142
'host' => '/path/of/redis/socket-file.sock',
@@ -105,6 +106,9 @@ Please report security bugs found in the source code of the WP Redis plugin thro
105106

106107
== Changelog ==
107108

109+
= 1.4.6 (June 17, 2025) =
110+
* PHP 8.4 compatibility
111+
108112
= 1.4.5 (January 21, 2024) =
109113
* Support Relay in check_client_dependencies() with the WP_REDIS_USE_RELAY constant [[#471](https://github.com/pantheon-systems/wp-redis/pull/471)]
110114

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.4.5
6+
* Version: 1.4.6
77
* Author: Pantheon, Josh Koenig, Matthew Boynes, Daniel Bachhuber, Alley Interactive
88
* Author URI: https://pantheon.io/
99
*/

0 commit comments

Comments
 (0)