Changeset 3313532
- Timestamp:
- 06/17/2025 11:33:09 PM (10 months ago)
- Location:
- wp-redis
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4.6 (copied) (copied from wp-redis/trunk)
-
tags/1.4.6/readme.txt (modified) (3 diffs)
-
tags/1.4.6/wp-redis.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-redis.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-redis/tags/1.4.6/readme.txt
r3226466 r3313532 3 3 Tags: cache, plugin, redis 4 4 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 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 33 'host' => '127.0.0.1', 33 34 'port' => 6379, 34 'auth' => '12345', 35 'auth' => '12345', // ['user', 'password'] if you use Redis ACL 35 36 'database' => 0, // Optionally use a specific numeric Redis database. Default is 0. 36 37 ); 37 38 38 3. If your Redis server is listening through a sock t 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`: 39 40 40 41 $redis_server = array( … … 106 107 == Changelog == 107 108 109 = 1.4.6 (June 17, 2025) = 110 * PHP 8.4 compatibility 111 108 112 = 1.4.5 (January 21, 2024) = 109 113 * Support Relay in check_client_dependencies() with the WP_REDIS_USE_RELAY constant [[#471](https://github.com/pantheon-systems/wp-redis/pull/471)] -
wp-redis/tags/1.4.6/wp-redis.php
r3226466 r3313532 4 4 * Plugin URI: http://github.com/pantheon-systems/wp-redis/ 5 5 * Description: WordPress Object Cache using Redis. Requires the PhpRedis extension (https://github.com/phpredis/phpredis). 6 * Version: 1.4. 56 * Version: 1.4.6 7 7 * Author: Pantheon, Josh Koenig, Matthew Boynes, Daniel Bachhuber, Alley Interactive 8 8 * Author URI: https://pantheon.io/ -
wp-redis/trunk/readme.txt
r3226466 r3313532 3 3 Tags: cache, plugin, redis 4 4 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 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 33 'host' => '127.0.0.1', 33 34 'port' => 6379, 34 'auth' => '12345', 35 'auth' => '12345', // ['user', 'password'] if you use Redis ACL 35 36 'database' => 0, // Optionally use a specific numeric Redis database. Default is 0. 36 37 ); 37 38 38 3. If your Redis server is listening through a sock t 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`: 39 40 40 41 $redis_server = array( … … 106 107 == Changelog == 107 108 109 = 1.4.6 (June 17, 2025) = 110 * PHP 8.4 compatibility 111 108 112 = 1.4.5 (January 21, 2024) = 109 113 * Support Relay in check_client_dependencies() with the WP_REDIS_USE_RELAY constant [[#471](https://github.com/pantheon-systems/wp-redis/pull/471)] -
wp-redis/trunk/wp-redis.php
r3226466 r3313532 4 4 * Plugin URI: http://github.com/pantheon-systems/wp-redis/ 5 5 * Description: WordPress Object Cache using Redis. Requires the PhpRedis extension (https://github.com/phpredis/phpredis). 6 * Version: 1.4. 56 * Version: 1.4.6 7 7 * Author: Pantheon, Josh Koenig, Matthew Boynes, Daniel Bachhuber, Alley Interactive 8 8 * Author URI: https://pantheon.io/
Note: See TracChangeset
for help on using the changeset viewer.