Plugin Directory

Changeset 3313532


Ignore:
Timestamp:
06/17/2025 11:33:09 PM (10 months ago)
Author:
getpantheon
Message:

Update to version 1.4.6 from GitHub

Location:
wp-redis
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-redis/tags/1.4.6/readme.txt

    r3226466 r3313532  
    33Tags: cache, plugin, redis
    44Requires at least: 3.0.1
    5 Tested up to: 6.7.1
    6 Stable tag: 1.4.5
     5Tested up to: 6.8.1
     6Requires PHP: 7.4
     7Stable tag: 1.4.6
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    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`:
     393. 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(
     
    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)]
  • wp-redis/tags/1.4.6/wp-redis.php

    r3226466 r3313532  
    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/
  • wp-redis/trunk/readme.txt

    r3226466 r3313532  
    33Tags: cache, plugin, redis
    44Requires at least: 3.0.1
    5 Tested up to: 6.7.1
    6 Stable tag: 1.4.5
     5Tested up to: 6.8.1
     6Requires PHP: 7.4
     7Stable tag: 1.4.6
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    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`:
     393. 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(
     
    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)]
  • wp-redis/trunk/wp-redis.php

    r3226466 r3313532  
    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/
Note: See TracChangeset for help on using the changeset viewer.