Skip to content

Commit b2b5901

Browse files
committed
5.3.2RC1
1 parent 44345f0 commit b2b5901

File tree

2 files changed

+88
-22
lines changed

2 files changed

+88
-22
lines changed

package.xml

Lines changed: 87 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,20 @@ 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-07</date>
3131
<version>
32-
<release>5.3.1</release>
33-
<api>5.3.1</api>
32+
<release>5.3.2RC1</release>
33+
<api>5.3.2</api>
3434
</version>
3535
<stability>
36-
<release>stable</release>
37-
<api>stable</api>
36+
<release>alpha</release>
37+
<api>alpha</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.
41+
phpredis 5.3.2RC1
4442

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.
43+
This release containse some bugfixes and small improvements.
4844

4945
You can find a detailed list of changes in Changelog.md and package.xml
5046

@@ -55,15 +51,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
5551
~ Avtandil Kikabidze - https://github.com/akalongman
5652

5753
---
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)
54+
* Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
55+
* Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
56+
* Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
57+
* Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
58+
* Relax requirements on set's expire argument [36458071] (Michael Grunder)
59+
* Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
60+
* PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
61+
* Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
62+
* Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
63+
* Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
64+
* Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
65+
* Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
6766
</notes>
6867
<contents>
6968
<dir name="/">
@@ -125,7 +124,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
125124
<required>
126125
<php>
127126
<min>7.0.0</min>
128-
<max>7.9.99</max>
129127
</php>
130128
<pearinstaller>
131129
<min>1.4.0b1</min>
@@ -139,6 +137,72 @@ http://pear.php.net/dtd/package-2.0.xsd">
139137
<configureoption name="enable-redis-zstd" prompt="enable zstd compression support?" default="no"/>
140138
</extsrcrelease>
141139
<changelog>
140+
<release>
141+
<stability><release>alpha</release><api>alpha</api></stability>
142+
<version><release>5.3.2RC1</release><api>5.3.2</api></version>
143+
<date>2020-10-07</date>
144+
<notes>
145+
phpredis 5.3.2RC1
146+
147+
This release containse some bugfixes and small improvements.
148+
149+
You can find a detailed list of changes in Changelog.md and package.xml
150+
151+
* Sponsors
152+
~ Audiomack - https://audiomack.com
153+
~ BlueHost - https://bluehost.com
154+
~ Redis Cache Pro for WordPress - https://wprediscache.com
155+
~ Avtandil Kikabidze - https://github.com/akalongman
156+
157+
---
158+
* Fix cluster segfault when dealing with NULL multi bulk replies in RedisCluster [950e8de8] (Michael Grunder, Alex Offshore)
159+
* Fix xReadGroup() must return message id [500916a4] (Pavlo Yatsukhnenko)
160+
* Fix memory leak in rediscluster session handler [b2cffffc] (Pavlo Yatsukhnenko)
161+
* Fix XInfo() returns false if the stream is empty [5719c9f7, 566fdeeb] (Pavlo Yatsukhnenko, Michael Grunder)
162+
* Relax requirements on set's expire argument [36458071] (Michael Grunder)
163+
* Refactor redis_sock_check_liveness [c5950644] (Pavlo Yatsukhnenko)
164+
* PHP8 compatibility [a7662da7, f4a30cb2, 17848791] (Pavlo Yatsukhnenko, Remi Collet)
165+
* Update documentation [c9ed151d, 398c99d9] (Ali Alwash, Gregoire Pineau)
166+
* Add Redis::OPT_NULL_MULTIBULK_AS_NULL setting to treat NULL multi bulk replies as NULL instead of []. [950e8de8] (Michael Grunder, Alex Offshore)
167+
* Allow to specify stream context for rediscluster session handler [a8daaff8, 4fbe7df7] (Pavlo Yatsukhnenko)
168+
* Add new parameter to RedisCluster to specify stream ssl/tls context. [f771ea16] (Pavlo Yatsukhnenko)
169+
* Add new parameter to RedisSentinel to specify auth information [81c502ae] (Pavlo Yatsukhnenko)
170+
</notes>
171+
</release>
172+
173+
<release>
174+
<stability><release>stable</release><api>stable</api></stability>
175+
<version><release>5.3.1</release><api>5.3.1</api></version>
176+
<date>2020-07-07</date>
177+
<notes>
178+
phpredis 5.3.1
179+
180+
This is a small bugfix release that fixes a couple of issues in 5.3.0.
181+
182+
You should upgrade if you're using persistent_id in session.save_path or
183+
of if you're having trouble building 5.3.0 because the php_hash_bin2hex
184+
symbol is missing.
185+
186+
You can find a detailed list of changes in Changelog.md and package.xml
187+
188+
* Sponsors
189+
~ Audiomack - https://audiomack.com
190+
~ BlueHost - https://bluehost.com
191+
~ Redis Cache Pro for WordPress - https://wprediscache.com
192+
~ Avtandil Kikabidze - https://github.com/akalongman
193+
194+
---
195+
* Properly clean up on session start failure [066cff6a] (Michael Grunder)
196+
* Treat NULL as a failure for redis_extract_auth_info [49428a2f, 14ac969d]
197+
(Michael Grunder)
198+
* Don't dereference a NULL zend_string or efree one [ff2e160f, 7fed06f2]
199+
(Michael Grunder)
200+
* Fix config.m4 messages and test for and include php_hash.h [83a1b7c5,
201+
3c56289c, 08f202e7] (Remi Collet)
202+
* Add openSUSE installation instructions [13a168f4] (Pavlo Yatsukhnenko)
203+
* Remove EOL Fedora installation instructions [b4779e6a] (Remi Collet)
204+
</notes>
205+
</release>
142206
<release>
143207
<stability><release>stable</release><api>stable</api></stability>
144208
<version><release>5.3.0</release><api>5.3.0</api></version>
@@ -223,6 +287,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
223287
(Michael Grunder)
224288
</notes>
225289
</release>
290+
226291
<release>
227292
<stability><release>stable</release><api>stable</api></stability>
228293
<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">
242307
~ Till Kruss - https://github.com/tillkruss
243308
</notes>
244309
</release>
310+
245311
<release>
246312
<stability><release>stable</release><api>stable</api></stability>
247313
<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.2RC1"
2727

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

0 commit comments

Comments
 (0)