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-07 14:52:09 +0300
commitb2b5901fdf9efccbaf1545deada6518a69f1d3c3 (patch)
tree787c208bf9cc83fc6eceb4325490033efc0f1dbc
parent44345f0afb5e7820410e4ccb95f9bd10b7b8cb1b (diff)
5.3.2RC15.3.2RC1
-rw-r--r--package.xml108
-rw-r--r--php_redis.h2
2 files changed, 88 insertions, 22 deletions
diff --git a/package.xml b/package.xml
index 466be5fc..8759d4f1 100644
--- a/package.xml
+++ b/package.xml
@@ -27,24 +27,20 @@ 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-07</date>
<version>
- <release>5.3.1</release>
- <api>5.3.1</api>
+ <release>5.3.2RC1</release>
+ <api>5.3.2</api>
</version>
<stability>
- <release>stable</release>
- <api>stable</api>
+ <release>alpha</release>
+ <api>alpha</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 5.3.1
-
- This is a small bugfix release that fixes a couple of issues in 5.3.0.
+ phpredis 5.3.2RC1
- 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.
+ This release containse some bugfixes and small improvements.
You can find a detailed list of changes in Changelog.md and package.xml
@@ -55,15 +51,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
~ 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)
+ * 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 +124,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 +138,72 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
+ <stability><release>alpha</release><api>alpha</api></stability>
+ <version><release>5.3.2RC1</release><api>5.3.2</api></version>
+ <date>2020-10-07</date>
+ <notes>
+ 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
+
+ ---
+ * 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 +287,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 +307,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..11660a1c 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.2RC1"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);