Skip to content

Commit e26fdd4

Browse files
committed
4.2.0RC1
1 parent cd6ebc6 commit e26fdd4

File tree

2 files changed

+58
-19
lines changed

2 files changed

+58
-19
lines changed

package.xml

Lines changed: 57 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,31 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2018-07-10</date>
30+
<date>2018-10-11</date>
3131
<version>
32-
<release>4.1.0</release>
33-
<api>4.1.0</api>
32+
<release>4.2.0RC1</release>
33+
<api>4.2.0RC1</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 4.1.0
42-
43-
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
44-
45-
* Add callbacks validate_sid and update_timestamp to session handler [aaaf0f23] (@hongboliu)
46-
* Call cluster_disconnect before destroying cluster object. [28ec4322] (Pavlo Yatsukhnenko)
47-
* Bulk strings can be zero length. (Michael Grunder)
48-
* Handle async parameter for flushDb and flushAll [beb6e8f3,acd10409,742cdd05] (Pavlo Yatsukhnenko)
49-
* Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
50-
* Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
51-
* Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
52-
* Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
53-
* Refactor geo* commands + documentation improvements (Michael Grunder)
41+
phpredis 4.2.0RC1
42+
43+
The main feature of this release is new Streams API implemented by Michael Grunder.
44+
45+
* Streams API [2c9e0572] (Michael Grunder)
46+
* Reset the socket after a timeout to make sure no wrong data is received [cd6ebc6d] (@marcdejonge)
47+
* Modify session testing logic [bfd27471] (Michael Grunder)
48+
* Allow '-' and '+' arguments and add tests for zLexCount and zRemRangeByLex [d4a08697] (Michael Grunder)
49+
* Fix printf format warnings [dcde9331] (Pavlo Yatsukhnenko)
50+
* Session module is required [58bd8cc8] (@remicollet)
51+
* Set default values for ini entries [e206ce9c] (Pavlo Yatsukhnenko)
52+
* Display ini entries in output of phpinfo [908ac4b3] (Pavlo Yatsukhnenko)
53+
* Persistant connections can be closed via close method + change reconnection logic [1d997873] (Pavlo Yatsukhnenko)
54+
* Documentation improvements (@mg, @elcheco, @lucascourot, @nolimitdev, Michael Grunder)
5455
</notes>
5556
<contents>
5657
<dir name="/">
@@ -119,6 +120,44 @@ http://pear.php.net/dtd/package-2.0.xsd">
119120
<configureoption name="enable-redis-lzf" prompt="enable lzf compression support?" default="no"/>
120121
</extsrcrelease>
121122
<changelog>
123+
<release>
124+
<stability><release>alpha</release><api>alpha</api></stability>
125+
<version><release>4.2.0RC1</release><api>4.2.0RC1</api></version>
126+
<date>2018-10-11</date>
127+
<notes>
128+
phpredis 4.2.0RC1
129+
130+
The main feature of this release is new Streams API implemented by Michael Grunder.
131+
132+
* Streams API [2c9e0572] (Michael Grunder)
133+
* Reset the socket after a timeout to make sure no wrong data is received [cd6ebc6d] (@marcdejonge)
134+
* Modify session testing logic [bfd27471] (Michael Grunder)
135+
* Allow '-' and '+' arguments and add tests for zLexCount and zRemRangeByLex [d4a08697] (Michael Grunder)
136+
* Fix printf format warnings [dcde9331] (Pavlo Yatsukhnenko)
137+
* Session module is required [58bd8cc8] (@remicollet)
138+
* Set default values for ini entries [e206ce9c] (Pavlo Yatsukhnenko)
139+
* Display ini entries in output of phpinfo [908ac4b3] (Pavlo Yatsukhnenko)
140+
* Persistant connections can be closed via close method + change reconnection logic [1d997873] (Pavlo Yatsukhnenko)
141+
* Documentation improvements (@mg, @elcheco, @lucascourot, @nolimitdev, Michael Grunder)
142+
</notes>
143+
</release>
144+
145+
<release>
146+
<stability><release>stable</release><api>stable</api></stability>
147+
<version><release>4.1.1</release><api>4.1.1</api></version>
148+
<date>2018-08-01</date>
149+
<notes>
150+
phpredis 4.1.1
151+
152+
This release contains only bugfixes and documentation improvements
153+
154+
* Fix arginfo for Redis::set method [0c5e7f4d] (Pavlo Yatsukhnenko)
155+
* Fix compression in RedisCluster [a53e1a34] (Pavlo Yatsukhnenko)
156+
* Fix TravisCI builds [9bf32d30] (@jrchamp)
157+
* Highlight php codes in documentation [c3b023b0] (@ackintosh)
158+
</notes>
159+
</release>
160+
122161
<release>
123162
<stability><release>stable</release><api>stable</api></stability>
124163
<version><release>4.1.0</release><api>4.1.0</api></version>

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 "develop"
28+
#define PHP_REDIS_VERSION "4.2.0RC1"
2929

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

0 commit comments

Comments
 (0)