@@ -27,24 +27,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
27
27
<email >n.favrefelix@gmail.com</email >
28
28
<active >no</active >
29
29
</lead >
30
- <date >2020-07 -07</date >
30
+ <date >2020-10 -07</date >
31
31
<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 >
34
34
</version >
35
35
<stability >
36
- <release >stable </release >
37
- <api >stable </api >
36
+ <release >alpha </release >
37
+ <api >alpha </api >
38
38
</stability >
39
39
<license uri =" http://www.php.net/license" >PHP</license >
40
40
<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
44
42
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.
48
44
49
45
You can find a detailed list of changes in Changelog.md and package.xml
50
46
@@ -55,15 +51,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
55
51
~ Avtandil Kikabidze - https://github.com/akalongman
56
52
57
53
---
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)
67
66
</notes >
68
67
<contents >
69
68
<dir name =" /" >
@@ -125,7 +124,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
125
124
<required >
126
125
<php >
127
126
<min >7.0.0</min >
128
- <max >7.9.99</max >
129
127
</php >
130
128
<pearinstaller >
131
129
<min >1.4.0b1</min >
@@ -139,6 +137,72 @@ http://pear.php.net/dtd/package-2.0.xsd">
139
137
<configureoption name =" enable-redis-zstd" prompt =" enable zstd compression support?" default =" no" />
140
138
</extsrcrelease >
141
139
<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 >
142
206
<release >
143
207
<stability ><release >stable</release ><api >stable</api ></stability >
144
208
<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">
223
287
(Michael Grunder)
224
288
</notes >
225
289
</release >
290
+
226
291
<release >
227
292
<stability ><release >stable</release ><api >stable</api ></stability >
228
293
<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">
242
307
~ Till Kruss - https://github.com/tillkruss
243
308
</notes >
244
309
</release >
310
+
245
311
<release >
246
312
<stability ><release >stable</release ><api >stable</api ></stability >
247
313
<version ><release >5.2.1</release ><api >5.2.1</api ></version >
0 commit comments