Skip to content

Commit a85dab9

Browse files
committed
4.1.0RC2
1 parent 6533700 commit a85dab9

File tree

2 files changed

+48
-15
lines changed

2 files changed

+48
-15
lines changed

package.xml

Lines changed: 47 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2018-06-08</date>
30+
<date>2018-06-22</date>
3131
<version>
32-
<release>4.1.0RC1</release>
33-
<api>4.1.0RC1</api>
32+
<release>4.1.0RC2</release>
33+
<api>4.1.0RC2</api>
3434
</version>
3535
<stability>
36-
<release>alpha</release>
37-
<api>alpha</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 4.1.0RC1
41+
phpredis 4.1.0RC2
4242

4343
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
4444

@@ -93,6 +93,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
9393
<file role='test' name='RedisTest.php'/>
9494
<file role='test' name='TestRedis.php'/>
9595
<file role='test' name='TestSuite.php'/>
96+
<file role='test' name='getSessionData.php'/>
97+
<file role='test' name='regenerateSessionId.php'/>
98+
<file role='test' name='startSession.php'/>
9699
<file role='test' name='make-cluster.sh'/>
97100
<file role='test' name='mkring.sh'/>
98101
</dir> <!-- tests -->
@@ -116,11 +119,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
116119
</extsrcrelease>
117120
<changelog>
118121
<release>
119-
<stability><release>alpha</release><api>alpha</api></stability>
120-
<version><release>4.1.0RC1</release><api>4.1.0RC1</api></version>
121-
<date>2018-06-08</date>
122+
<stability><release>beta</release><api>beta</api></stability>
123+
<version><release>4.1.0RC2</release><api>4.1.0RC2</api></version>
124+
<date>2018-06-22</date>
122125
<notes>
123-
phpredis 4.1.0RC1
126+
phpredis 4.1.0RC2
124127

125128
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
126129

@@ -136,11 +139,38 @@ http://pear.php.net/dtd/package-2.0.xsd">
136139
</release>
137140

138141
<release>
139-
<stability><release>alpha</release><api>alpha</api></stability>
140-
<version><release>4.0.0RC1</release><api>4.0.0RC1</api></version>
141-
<date>2018-02-07</date>
142+
<stability><release>stable</release><api>stable</api></stability>
143+
<version><release>4.0.2</release><api>4.0.2</api></version>
144+
<date>2018-04-25</date>
145+
<notes>
146+
phpredis 4.0.2
147+
148+
This release contains only fix of exists method to take multiple keys
149+
and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
150+
</notes>
151+
</release>
152+
153+
<release>
154+
<stability><release>stable</release><api>stable</api></stability>
155+
<version><release>4.0.1</release><api>4.0.1</api></version>
156+
<date>2018-04-18</date>
157+
<notes>
158+
phpredis 4.0.1
159+
160+
* Fix arginfo for connect/pconnect issue #1337 [c3b228] (@mathroc)
161+
* Don't leak a ZVAL [278232] (Michael Grunder)
162+
* Fix config.m4 for lzf issue #1325 [20e173] (Pavlo Yatsukhnenko)
163+
* Updates EXISTS documentation and notes change in 4.0.0 [bed186] (Michael Grunder)
164+
* Fix typo in notes [0bed36] (@szepeviktor)
165+
</notes>
166+
</release>
167+
168+
<release>
169+
<stability><release>stable</release><api>stable</api></stability>
170+
<version><release>4.0.0</release><api>4.0.0</api></version>
171+
<date>2018-03-17</date>
142172
<notes>
143-
phpredis 4.0.0RC1
173+
phpredis 4.0.0
144174

145175
*** WARNING! THIS RELEASE CONTAINS BREAKING API CHANGES! ***
146176

@@ -151,12 +181,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
151181
* Return real connection error as exception [5b9c0c60] (Pavlo Yatsukhnenko, Michael Grunder)
152182
* Disallow using empty string as session name. [485db46f] (Pavlo Yatsukhnenko)
153183
* Use zend_string for storing auth and prefix members [4b8336f7] (Pavlo Yatsukhnenko)
184+
* The element of z_seeds may be a reference on php7 [367bc6aa, 1e63717a] (@janic716)
154185
* Avoid connection in helper methods [91e9cfe1] (Pavlo Yatsukhnenko)
155186
* Add tcp_keepalive option to redis sock [68c58513, 5101172a, 010336d5, 51e48729] (@git-hulk, Michael Grunder)
156187
* More robust GEORADIUS COUNT validation [f7edee5d] (Michael Grunder)
157188
* Add LZF compression (experimental) [e2c51251, 8cb2d5bd, 8657557] (Pavlo Yatsukhnenko)
158189
* Allow to use empty string as persistant_id [ec4fd1bd] (Pavlo Yatsukhnenko)
159190
* Don't use convert_to_string in redis_hmget_cmd [99335d6] (Pavlo Yatsukhnenko)
191+
* Allow mixing MULTI and PIPELINE modes (experimental) [5874b0] (Pavlo Yatsukhnenko)
192+
* PHP >=7.3.0 uses zend_string to store `php_url` elements [b566fb44] (@fmk)
160193
* Documentation improvements (Michael Grunder, @TomA-R)
161194
</notes>
162195
</release>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define PHP_REDIS_H
2626

2727
/* phpredis version */
28-
#define PHP_REDIS_VERSION "4.1.0RC1"
28+
#define PHP_REDIS_VERSION "4.1.0RC2"
2929

3030
PHP_METHOD(Redis, __construct);
3131
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)