@@ -27,24 +27,28 @@ http://pear.php.net/dtd/package-2.0.xsd">
27272828 <active >no</active >
2929 </lead >
30- <date >2020-07-07 </date >
30+ <date >2020-10-14 </date >
3131 <version >
32- <release >5.3.1 </release >
33- <api >5.3.1 </api >
32+ <release >5.3.2RC2 </release >
33+ <api >5.3.2 </api >
3434 </version >
3535 <stability >
36- <release >stable </release >
37- <api >stable </api >
36+ <release >beta </release >
37+ <api >beta </api >
3838 </stability >
3939 <license uri =" http://www.php.net/license" >PHP</license >
4040 <notes >
41- phpredis 5.3.1
41+ phpredis 5.3.2RC2
4242
43- This is a small bugfix release that fixes a couple of issues in 5.3.0.
43+ ---
4444
45- You should upgrade if you're using persistent_id in session.save_path or
46- of if you're having trouble building 5.3.0 because the php_hash_bin2hex
47- symbol is missing.
45+ * Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
46+
47+ ---
48+
49+ phpredis 5.3.2RC1
50+
51+ This release containse some bugfixes and small improvements.
4852
4953 You can find a detailed list of changes in Changelog.md and package.xml
5054
@@ -53,17 +57,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
5357 ~ BlueHost - https://bluehost.com
5458 ~ Redis Cache Pro for WordPress - https://wprediscache.com
5559 ~ Avtandil Kikabidze - https://github.com/akalongman
60+ ~ Oleg Babushkin - https://github.com/olbabushkin
5661
5762 ---
58- * Properly clean up on session start failure [066cff6a] (Michael Grunder)
59- * Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
60- (Michael Grunder)
61- * Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
62- (Michael Grunder)
63- * Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
64- 3c56289c, 08f202e7] (Remi Collet)
65- * Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
66- * Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
63+ * Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
64+ * Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
65+ * Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
66+ * Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
67+ * Relax requirements on set's expire argument [36458071] (Michael Grunder)
68+ * Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
69+ * PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
70+ * Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
71+ * Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
72+ * Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
73+ * Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
74+ * Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
6775 </notes >
6876 <contents >
6977 <dir name =" /" >
@@ -125,7 +133,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
125133 <required >
126134 <php >
127135 <min >7.0.0</min >
128- <max >7.9.99</max >
129136 </php >
130137 <pearinstaller >
131138 <min >1.4.0b1</min >
@@ -139,6 +146,81 @@ http://pear.php.net/dtd/package-2.0.xsd">
139146 <configureoption name =" enable-redis-zstd" prompt =" enable zstd compression support?" default =" no" />
140147 </extsrcrelease >
141148 <changelog >
149+ <release >
150+ <stability ><release >beta</release ><api >beta</api ></stability >
151+ <version ><release >5.3.2RC2</release ><api >5.3.2</api ></version >
152+ <date >2020-10-14</date >
153+ <notes >
154+ phpredis 5.3.2RC2
155+
156+ ---
157+
158+ * Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
159+
160+ ---
161+
162+ phpredis 5.3.2RC1
163+
164+ This release containse some bugfixes and small improvements.
165+
166+ You can find a detailed list of changes in Changelog.md and package.xml
167+
168+ * Sponsors
169+ ~ Audiomack - https://audiomack.com
170+ ~ BlueHost - https://bluehost.com
171+ ~ Redis Cache Pro for WordPress - https://wprediscache.com
172+ ~ Avtandil Kikabidze - https://github.com/akalongman
173+ ~ Oleg Babushkin - https://github.com/olbabushkin
174+
175+ ---
176+ * Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
177+ * Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
178+ * Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
179+ * Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
180+ * Relax requirements on set's expire argument [36458071] (Michael Grunder)
181+ * Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
182+ * PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
183+ * Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
184+ * Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
185+ * Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
186+ * Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
187+ * Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
188+ </notes >
189+ </release >
190+
191+ <release >
192+ <stability ><release >stable</release ><api >stable</api ></stability >
193+ <version ><release >5.3.1</release ><api >5.3.1</api ></version >
194+ <date >2020-07-07</date >
195+ <notes >
196+ phpredis 5.3.1
197+
198+ This is a small bugfix release that fixes a couple of issues in 5.3.0.
199+
200+ You should upgrade if you're using persistent_id in session.save_path or
201+ of if you're having trouble building 5.3.0 because the php_hash_bin2hex
202+ symbol is missing.
203+
204+ You can find a detailed list of changes in Changelog.md and package.xml
205+
206+ * Sponsors
207+ ~ Audiomack - https://audiomack.com
208+ ~ BlueHost - https://bluehost.com
209+ ~ Redis Cache Pro for WordPress - https://wprediscache.com
210+ ~ Avtandil Kikabidze - https://github.com/akalongman
211+
212+ ---
213+ * Properly clean up on session start failure [066cff6a] (Michael Grunder)
214+ * Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
215+ (Michael Grunder)
216+ * Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
217+ (Michael Grunder)
218+ * Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
219+ 3c56289c, 08f202e7] (Remi Collet)
220+ * Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
221+ * Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
222+ </notes >
223+ </release >
142224 <release >
143225 <stability ><release >stable</release ><api >stable</api ></stability >
144226 <version ><release >5.3.0</release ><api >5.3.0</api ></version >
@@ -223,6 +305,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
223305 (Michael Grunder)
224306 </notes >
225307 </release >
308+
226309 <release >
227310 <stability ><release >stable</release ><api >stable</api ></stability >
228311 <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">
242325 ~ Till Kruss - https://github.com/tillkruss
243326 </notes >
244327 </release >
328+
245329 <release >
246330 <stability ><release >stable</release ><api >stable</api ></stability >
247331 <version ><release >5.2.1</release ><api >5.2.1</api ></version >
0 commit comments