Skip to content

Commit d943a44

Browse files
committed
Update package.xml
1 parent 7171ace commit d943a44

File tree

1 file changed

+76
-30
lines changed

1 file changed

+76
-30
lines changed

package.xml

Lines changed: 76 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -27,38 +27,30 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2018-02-07</date>
30+
<date>2018-07-10</date>
3131
<version>
32-
<release>4.0.0RC1</release>
33-
<api>4.0.0RC1</api>
32+
<release>4.1.0</release>
33+
<api>4.1.0</api>
3434
</version>
3535
<stability>
36-
<release>alpha</release>
37-
<api>alpha</api>
36+
<release>stable</release>
37+
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 4.0.0RC1
42-
43-
*** WARNING! THIS RELEASE CONTAINS BREAKING API CHANGES! ***
44-
45-
* Add proper ARGINFO for all methods. (Pavlo Yatsukhnenko, Michael Grunder)
46-
* Let EXISTS take multiple keys [cccc39] (Michael Grunder)
47-
* Use zend_string as returning value for ra_extract_key and ra_call_extractor [9cd05911] (Pavlo Yatsukhnenko)
48-
* Implement SWAPDB and UNLINK commands [84f1f28b, 9e65c429] (Michael Grunder)
49-
* Return real connection error as exception [5b9c0c60] (Pavlo Yatsukhnenko, Michael Grunder)
50-
* Disallow using empty string as session name. [485db46f] (Pavlo Yatsukhnenko)
51-
* Use zend_string for storing auth and prefix members [4b8336f7] (Pavlo Yatsukhnenko)
52-
* The element of z_seeds may be a reference on php7 [367bc6aa, 1e63717a] (@janic716)
53-
* Avoid connection in helper methods [91e9cfe1] (Pavlo Yatsukhnenko)
54-
* Add tcp_keepalive option to redis sock [68c58513, 5101172a, 010336d5, 51e48729] (@git-hulk, Michael Grunder)
55-
* More robust GEORADIUS COUNT validation [f7edee5d] (Michael Grunder)
56-
* Add LZF compression (experimental) [e2c51251, 8cb2d5bd, 8657557] (Pavlo Yatsukhnenko)
57-
* Allow to use empty string as persistant_id [ec4fd1bd] (Pavlo Yatsukhnenko)
58-
* Don't use convert_to_string in redis_hmget_cmd [99335d6] (Pavlo Yatsukhnenko)
59-
* Allow mixing MULTI and PIPELINE modes (experimental) [5874b0] (Pavlo Yatsukhnenko)
60-
* PHP >=7.3.0 uses zend_string to store `php_url` elements [b566fb44] (@fmk)
61-
* Documentation improvements (Michael Grunder, @TomA-R)
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)
6254
</notes>
6355
<contents>
6456
<dir name="/">
@@ -102,6 +94,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
10294
<file role='test' name='RedisTest.php'/>
10395
<file role='test' name='TestRedis.php'/>
10496
<file role='test' name='TestSuite.php'/>
97+
<file role='test' name='getSessionData.php'/>
98+
<file role='test' name='regenerateSessionId.php'/>
99+
<file role='test' name='startSession.php'/>
105100
<file role='test' name='make-cluster.sh'/>
106101
<file role='test' name='mkring.sh'/>
107102
</dir> <!-- tests -->
@@ -125,11 +120,59 @@ http://pear.php.net/dtd/package-2.0.xsd">
125120
</extsrcrelease>
126121
<changelog>
127122
<release>
128-
<stability><release>alpha</release><api>alpha</api></stability>
129-
<version><release>4.0.0RC1</release><api>4.0.0RC1</api></version>
130-
<date>2018-02-07</date>
123+
<stability><release>stable</release><api>stable</api></stability>
124+
<version><release>4.1.0</release><api>4.1.0</api></version>
125+
<date>2018-01-10</date>
126+
<notes>
127+
phpredis 4.1.0
128+
129+
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
130+
131+
* Add callbacks validate_sid and update_timestamp to session handler [aaaf0f23] (@hongboliu)
132+
* Call cluster_disconnect before destroying cluster object. [28ec4322] (Pavlo Yatsukhnenko)
133+
* Bulk strings can be zero length. (Michael Grunder)
134+
* Handle async parameter for flushDb and flushAll [beb6e8f3,acd10409,742cdd05] (Pavlo Yatsukhnenko)
135+
* Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
136+
* Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
137+
* Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
138+
* Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
139+
* Refactor geo* commands + documentation improvements (Michael Grunder)
140+
</notes>
141+
</release>
142+
143+
<release>
144+
<stability><release>stable</release><api>stable</api></stability>
145+
<version><release>4.0.2</release><api>4.0.2</api></version>
146+
<date>2018-04-25</date>
147+
<notes>
148+
phpredis 4.0.2
149+
150+
This release contains only fix of exists method to take multiple keys
151+
and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
152+
</notes>
153+
</release>
154+
155+
<release>
156+
<stability><release>stable</release><api>stable</api></stability>
157+
<version><release>4.0.1</release><api>4.0.1</api></version>
158+
<date>2018-04-18</date>
131159
<notes>
132-
phpredis 4.0.0RC1
160+
phpredis 4.0.1
161+
162+
* Fix arginfo for connect/pconnect issue #1337 [c3b228] (@mathroc)
163+
* Don't leak a ZVAL [278232] (Michael Grunder)
164+
* Fix config.m4 for lzf issue #1325 [20e173] (Pavlo Yatsukhnenko)
165+
* Updates EXISTS documentation and notes change in 4.0.0 [bed186] (Michael Grunder)
166+
* Fix typo in notes [0bed36] (@szepeviktor)
167+
</notes>
168+
</release>
169+
170+
<release>
171+
<stability><release>stable</release><api>stable</api></stability>
172+
<version><release>4.0.0</release><api>4.0.0</api></version>
173+
<date>2018-03-17</date>
174+
<notes>
175+
phpredis 4.0.0
133176

134177
*** WARNING! THIS RELEASE CONTAINS BREAKING API CHANGES! ***
135178

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

0 commit comments

Comments
 (0)