@@ -27,43 +27,57 @@ 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-22 </date >
31
31
<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 >
34
34
</version >
35
35
<stability >
36
36
<release >stable</release >
37
37
<api >stable</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.
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.
49
42
You can find a detailed list of changes in Changelog.md and package.xml
50
43
51
44
* Sponsors
52
45
~ Audiomack - https://audiomack.com
53
46
~ BlueHost - https://bluehost.com
54
47
~ Redis Cache Pro for WordPress - https://wprediscache.com
55
48
~ 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)
56
55
57
56
---
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)
67
81
</notes >
68
82
<contents >
69
83
<dir name =" /" >
@@ -125,7 +139,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
125
139
<required >
126
140
<php >
127
141
<min >7.0.0</min >
128
- <max >7.9.99</max >
129
142
</php >
130
143
<pearinstaller >
131
144
<min >1.4.0b1</min >
@@ -139,6 +152,87 @@ http://pear.php.net/dtd/package-2.0.xsd">
139
152
<configureoption name =" enable-redis-zstd" prompt =" enable zstd compression support?" default =" no" />
140
153
</extsrcrelease >
141
154
<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 >
142
236
<release >
143
237
<stability ><release >stable</release ><api >stable</api ></stability >
144
238
<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">
223
317
(Michael Grunder)
224
318
</notes >
225
319
</release >
320
+
226
321
<release >
227
322
<stability ><release >stable</release ><api >stable</api ></stability >
228
323
<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">
242
337
~ Till Kruss - https://github.com/tillkruss
243
338
</notes >
244
339
</release >
340
+
245
341
<release >
246
342
<stability ><release >stable</release ><api >stable</api ></stability >
247
343
<version ><release >5.2.1</release ><api >5.2.1</api ></version >
0 commit comments