Skip to content

Commit

Permalink
tag v2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed Aug 11, 2023
1 parent 018c6d8 commit f9b58ce
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.4.4

- Improved handling of unexpected transaction results

## 2.4.3

- Fixed PHP `<=7.2` syntax error
Expand Down
5 changes: 4 additions & 1 deletion includes/object-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Redis Object Cache Drop-In
* Plugin URI: https://wordpress.org/plugins/redis-cache/
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Relay, replication, sentinels, clustering and WP-CLI.
* Version: 2.4.3
* Version: 2.4.4
* Author: Till Krüss
* Author URI: https://objectcache.pro
* License: GPLv3
Expand Down Expand Up @@ -1300,6 +1300,7 @@ protected function add_multiple_at_once( array $data, $group = 'default', $expir

if ( count( $results ) !== count( $keys ) ) {
$tx->discard();

return array_fill_keys( $keys, false );
}

Expand Down Expand Up @@ -1550,6 +1551,7 @@ protected function delete_multiple_at_once( array $keys, $group = 'default' ) {

if ( count( $results ) !== count( $keys ) ) {
$tx->discard();

return array_fill_keys( $keys, false );
}

Expand Down Expand Up @@ -2273,6 +2275,7 @@ protected function set_multiple_at_once( array $data, $group = 'default', $expir

if ( count( $results ) !== count( $keys ) ) {
$tx->discard();

return array_fill_keys( $keys, false );
}

Expand Down
16 changes: 8 additions & 8 deletions languages/redis-cache.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Redis Object Cache 2.4.3\n"
"Project-Id-Version: Redis Object Cache 2.4.4\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/redis-cache\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-06-29T10:40:20+00:00\n"
"POT-Creation-Date: 2023-08-11T20:06:44+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: redis-cache\n"
Expand Down Expand Up @@ -294,30 +294,30 @@ msgstr ""
msgid "Object cache drop-in could not be updated. Redis server is unreachable: %s"
msgstr ""

#: includes/object-cache.php:2911
#: includes/object-cache.php:2916
msgid "Error establishing a Redis connection"
msgstr ""

#. translators: %s = Formatted wp-config.php file name.
#: includes/object-cache.php:2918
#: includes/object-cache.php:2923
msgid "WordPress is unable to establish a connection to Redis. This means that the connection information in your %s file are incorrect, or that the Redis server is not reachable."
msgstr ""

#: includes/object-cache.php:2923
#: includes/object-cache.php:2928
msgid "Is the correct Redis host and port set?"
msgstr ""

#: includes/object-cache.php:2924
#: includes/object-cache.php:2929
msgid "Is the Redis server running?"
msgstr ""

#. translators: %s = Link to installation instructions.
#: includes/object-cache.php:2929
#: includes/object-cache.php:2934
msgid "If you need help, please read the <a href=\"%s\">installation instructions</a>."
msgstr ""

#. translators: %1$s = Formatted object-cache.php file name, %2$s = Formatted wp-content directory name.
#: includes/object-cache.php:2936
#: includes/object-cache.php:2941
msgid "To disable Redis, delete the %1$s file in the %2$s directory."
msgstr ""

Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Contributors: tillkruess, a5hleyrich
Donate link: https://github.com/sponsors/tillkruss
Tags: redis, object cache, cache, object caching, caching performance, relay, predis, phpredis
Requires at least: 3.3
Tested up to: 6.2
Tested up to: 6.3
Requires PHP: 7.2
Stable tag: 2.4.3
Stable tag: 2.4.4
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -62,6 +62,10 @@ Redis Object Cache has various WP CLI commands, for more information run `wp hel

== Changelog ==

= 2.4.4 =

- Improved handling of unexpected transaction results

= 2.4.3 =

- Fixed PHP `<=7.2` syntax error
Expand Down
2 changes: 1 addition & 1 deletion redis-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Redis Object Cache
* Plugin URI: https://wordpress.org/plugins/redis-cache/
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Relay, replication, sentinels, clustering and WP-CLI.
* Version: 2.4.3
* Version: 2.4.4
* Text Domain: redis-cache
* Domain Path: /languages
* Network: true
Expand Down

0 comments on commit f9b58ce

Please sign in to comment.