Skip to content

Commit d2c927b

Browse files
committed
5.3.2
1 parent fc195d6 commit d2c927b

File tree

2 files changed

+118
-22
lines changed

2 files changed

+118
-22
lines changed

package.xml

Lines changed: 117 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,43 +27,57 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>n.favrefelix@gmail.com</email>
2828
<active>no</active>
2929
</lead>
30-
<date>2020-07-07</date>
30+
<date>2020-10-22</date>
3131
<version>
32-
<release>5.3.1</release>
33-
<api>5.3.1</api>
32+
<release>5.3.2</release>
33+
<api>5.3.2</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 5.3.1
42-
43-
This is a small bugfix release that fixes a couple of issues in 5.3.0.
44-
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.
48-
41+
This release containse some bugfixes and small improvements.
4942
You can find a detailed list of changes in Changelog.md and package.xml
5043

5144
* Sponsors
5245
~ Audiomack - https://audiomack.com
5346
~ BlueHost - https://bluehost.com
5447
~ Redis Cache Pro for WordPress - https://wprediscache.com
5548
~ Avtandil Kikabidze - https://github.com/akalongman
49+
~ Oleg Babushkin - https://github.com/olbabushkin
50+
51+
phpredis 5.3.2
52+
53+
* Use "%.17g" sprintf format for doubles as done in Redis server. [32be3006] (Pavlo Yatsukhnenko)
54+
* Allow to pass NULL as RedisCluster stream context options. [72024afe] (Pavlo Yatsukhnenko)
5655

5756
---
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)
57+
58+
phpredis 5.3.2RC2
59+
60+
---
61+
62+
* Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
63+
64+
---
65+
66+
phpredis 5.3.2RC1
67+
68+
---
69+
* Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
70+
* Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
71+
* Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
72+
* Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
73+
* Relax requirements on set's expire argument [36458071] (Michael Grunder)
74+
* Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
75+
* PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
76+
* Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
77+
* Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
78+
* Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
79+
* Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
80+
* Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
6781
</notes>
6882
<contents>
6983
<dir name="/">
@@ -125,7 +139,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
125139
<required>
126140
<php>
127141
<min>7.0.0</min>
128-
<max>7.9.99</max>
129142
</php>
130143
<pearinstaller>
131144
<min>1.4.0b1</min>
@@ -139,6 +152,87 @@ http://pear.php.net/dtd/package-2.0.xsd">
139152
<configureoption name="enable-redis-zstd" prompt="enable zstd compression support?" default="no"/>
140153
</extsrcrelease>
141154
<changelog>
155+
<release>
156+
<stability><release>stable</release><api>stable</api></stability>
157+
<version><release>5.3.2</release><api>5.3.2</api></version>
158+
<date>2020-10-22</date>
159+
<notes>
160+
This release containse some bugfixes and small improvements.
161+
You can find a detailed list of changes in Changelog.md and package.xml
162+
163+
* Sponsors
164+
~ Audiomack - https://audiomack.com
165+
~ BlueHost - https://bluehost.com
166+
~ Redis Cache Pro for WordPress - https://wprediscache.com
167+
~ Avtandil Kikabidze - https://github.com/akalongman
168+
~ Oleg Babushkin - https://github.com/olbabushkin
169+
170+
phpredis 5.3.2
171+
172+
* Use "%.17g" sprintf format for doubles as done in Redis server. [32be3006] (Pavlo Yatsukhnenko)
173+
* Allow to pass NULL as RedisCluster stream context options. [72024afe] (Pavlo Yatsukhnenko)
174+
175+
---
176+
177+
phpredis 5.3.2RC2
178+
179+
---
180+
181+
* Verify SET options are strings before testing them as strings [514bc371] (Michael Grunder)
182+
183+
---
184+
185+
phpredis 5.3.2RC1
186+
187+
---
188+
* Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
189+
* Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
190+
* Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
191+
* Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
192+
* Relax requirements on set's expire argument [36458071] (Michael Grunder)
193+
* Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
194+
* PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
195+
* Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
196+
* Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
197+
* Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
198+
* Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
199+
* Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
200+
</notes>
201+
</release>
202+
203+
<release>
204+
<stability><release>stable</release><api>stable</api></stability>
205+
<version><release>5.3.1</release><api>5.3.1</api></version>
206+
<date>2020-07-07</date>
207+
<notes>
208+
phpredis 5.3.1
209+
210+
This is a small bugfix release that fixes a couple of issues in 5.3.0.
211+
212+
You should upgrade if you're using persistent_id in session.save_path or
213+
of if you're having trouble building 5.3.0 because the php_hash_bin2hex
214+
symbol is missing.
215+
216+
You can find a detailed list of changes in Changelog.md and package.xml
217+
218+
* Sponsors
219+
~ Audiomack - https://audiomack.com
220+
~ BlueHost - https://bluehost.com
221+
~ Redis Cache Pro for WordPress - https://wprediscache.com
222+
~ Avtandil Kikabidze - https://github.com/akalongman
223+
224+
---
225+
* Properly clean up on session start failure [066cff6a] (Michael Grunder)
226+
* Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
227+
(Michael Grunder)
228+
* Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
229+
(Michael Grunder)
230+
* Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
231+
3c56289c, 08f202e7] (Remi Collet)
232+
* Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
233+
* Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
234+
</notes>
235+
</release>
142236
<release>
143237
<stability><release>stable</release><api>stable</api></stability>
144238
<version><release>5.3.0</release><api>5.3.0</api></version>
@@ -223,6 +317,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
223317
(Michael Grunder)
224318
</notes>
225319
</release>
320+
226321
<release>
227322
<stability><release>stable</release><api>stable</api></stability>
228323
<version><release>5.2.2</release><api>5.2.2</api></version>
@@ -242,6 +337,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
242337
~ Till Kruss - https://github.com/tillkruss
243338
</notes>
244339
</release>
340+
245341
<release>
246342
<stability><release>stable</release><api>stable</api></stability>
247343
<version><release>5.2.1</release><api>5.2.1</api></version>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PHP_REDIS_H
2424

2525
/* phpredis version */
26-
#define PHP_REDIS_VERSION "5.3.1"
26+
#define PHP_REDIS_VERSION "5.3.2"
2727

2828
PHP_METHOD(Redis, __construct);
2929
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)