Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2020-10-07 14:48:13 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2020-10-14 17:49:54 +0300
commitd26dcb5627c27a857a2027ff6fafac1962469912 (patch)
tree0d68e6495bd20d12b91b3f5a2274b3ec24cc6f1c
parent39513cab7147ca813762e7da28d001f4c292fe00 (diff)
5.3.2RC25.3.2RC2
-rw-r--r--package.xml124
-rw-r--r--php_redis.h2
2 files changed, 105 insertions, 21 deletions
diff --git a/package.xml b/package.xml
index 466be5fc..8f13b4dd 100644
--- a/package.xml
+++ b/package.xml
@@ -27,24 +27,28 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2020-07-07</date>
+ <date>2020-10-14</date>
<version>
- <release>5.3.1</release>
- <api>5.3.1</api>
+ <release>5.3.2RC2</release>
+ <api>5.3.2</api>
</version>
<stability>
- <release>stable</release>
- <api>stable</api>
+ <release>beta</release>
+ <api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 5.3.1
+ phpredis 5.3.2RC2
- This is a small bugfix release that fixes a couple of issues in 5.3.0.
+ ---
- You should upgrade if you're using persistent_id in session.save_path or
- of if you're having trouble building 5.3.0 because the php_hash_bin2hex
- symbol is missing.
+ * Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
+
+ ---
+
+ phpredis 5.3.2RC1
+
+ This release containse some bugfixes and small improvements.
You can find a detailed list of changes in Changelog.md and package.xml
@@ -53,17 +57,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
~ BlueHost - https://bluehost.com
~ Redis Cache Pro for WordPress - https://wprediscache.com
~ Avtandil Kikabidze - https://github.com/akalongman
+ ~ Oleg Babushkin - https://github.com/olbabushkin
---
- * Properly clean up on session start failure [066cff6a] (Michael Grunder)
- * Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
- (Michael Grunder)
- * Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
- (Michael Grunder)
- * Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
- 3c56289c, 08f202e7] (Remi Collet)
- * Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
- * Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
+ * Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
+ * Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
+ * Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
+ * Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
+ * Relax requirements on set's expire argument [36458071] (Michael Grunder)
+ * Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
+ * PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
+ * Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
+ * Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
+ * Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
+ * Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
+ * Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
</notes>
<contents>
<dir name="/">
@@ -125,7 +133,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
<required>
<php>
<min>7.0.0</min>
- <max>7.9.99</max>
</php>
<pearinstaller>
<min>1.4.0b1</min>
@@ -140,6 +147,81 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
+ <stability><release>beta</release><api>beta</api></stability>
+ <version><release>5.3.2RC2</release><api>5.3.2</api></version>
+ <date>2020-10-14</date>
+ <notes>
+ phpredis 5.3.2RC2
+
+ ---
+
+ * Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
+
+ ---
+
+ phpredis 5.3.2RC1
+
+ This release containse some bugfixes and small improvements.
+
+ You can find a detailed list of changes in Changelog.md and package.xml
+
+ * Sponsors
+ ~ Audiomack - https://audiomack.com
+ ~ BlueHost - https://bluehost.com
+ ~ Redis Cache Pro for WordPress - https://wprediscache.com
+ ~ Avtandil Kikabidze - https://github.com/akalongman
+ ~ Oleg Babushkin - https://github.com/olbabushkin
+
+ ---
+ * Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
+ * Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
+ * Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
+ * Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
+ * Relax requirements on set's expire argument [36458071] (Michael Grunder)
+ * Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
+ * PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
+ * Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
+ * Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
+ * Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
+ * Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
+ * Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>5.3.1</release><api>5.3.1</api></version>
+ <date>2020-07-07</date>
+ <notes>
+ phpredis 5.3.1
+
+ This is a small bugfix release that fixes a couple of issues in 5.3.0.
+
+ You should upgrade if you're using persistent_id in session.save_path or
+ of if you're having trouble building 5.3.0 because the php_hash_bin2hex
+ symbol is missing.
+
+ You can find a detailed list of changes in Changelog.md and package.xml
+
+ * Sponsors
+ ~ Audiomack - https://audiomack.com
+ ~ BlueHost - https://bluehost.com
+ ~ Redis Cache Pro for WordPress - https://wprediscache.com
+ ~ Avtandil Kikabidze - https://github.com/akalongman
+
+ ---
+ * Properly clean up on session start failure [066cff6a] (Michael Grunder)
+ * Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
+ (Michael Grunder)
+ * Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
+ (Michael Grunder)
+ * Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
+ 3c56289c, 08f202e7] (Remi Collet)
+ * Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
+ * Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
+ </notes>
+ </release>
+ <release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>5.3.0</release><api>5.3.0</api></version>
<date>2020-06-30</date>
@@ -223,6 +305,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
(Michael Grunder)
</notes>
</release>
+
<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>5.2.2</release><api>5.2.2</api></version>
@@ -242,6 +325,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
~ Till Kruss - https://github.com/tillkruss
</notes>
</release>
+
<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>5.2.1</release><api>5.2.1</api></version>
diff --git a/php_redis.h b/php_redis.h
index 76983fe0..ac363174 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -23,7 +23,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "5.3.1"
+#define PHP_REDIS_VERSION "5.3.2RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);