Skip to content

Commit d019588

Browse files
committed
Notes for version 3.0.1
1 parent 115cc0a commit d019588

File tree

2 files changed

+54
-22
lines changed

2 files changed

+54
-22
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
memcached extension changelog
22

3+
Version 3.0.1 (2017-02-07)
4+
-------------
5+
6+
* Add API entries for flushBuffers() and getAllKeys() (#316)
7+
* Ignore specific errors from memcached_dump for getAllKeys() with newer memcached servers (#315)
8+
* Fix compiling with memcached binary protocol enabled (#312)
9+
* Restore php_libmemcached_compat with workaround for missing memcached_exists (#314)
10+
* Travis CI purge old versions of memcached and libmemcached (#309)
11+
312
Version 3.0.0 (2017-01-27)
413
--------------------------
514
* Support for PHP 7.0 and PHP 7.1

package.xml

+45-22
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
2121
<email>[email protected]</email>
2222
<active>yes</active>
2323
</lead>
24-
<date>2017-01-27</date>
24+
<date>2017-02-07</date>
2525
<version>
26-
<release>3.0.0</release>
26+
<release>3.0.1</release>
2727
<api>3.0.0</api>
2828
</version>
2929
<stability>
@@ -36,26 +36,12 @@ PHP7 release of memcached extension. Note that support for libmemcached 0.x seri
3636
and the oldest actively tested version is 1.0.2. It is highly recommended to use version 1.0.18 of
3737
libmemcached.
3838

39-
API
40-
* The method signature of get, getByKey, getMulti, and getMultiByKey changed.
41-
* get* and getMulti* commands no longer take cas or user flags parameters.
42-
* get* and getMulti* commands now take the Memcached::GET_EXTENDED flag to retrieve user flags and cas tokens.
43-
* Fixes getStats command to return all stats from all servers
44-
* Fixes allKeys command behaviour
45-
* Fixes error where cache callback for get command was not setting expiration time properly
46-
* Added server type to server list
47-
* Remove use_sasl ini-variable and initialise sasl as needed
48-
* CAS tokens are returned as integers and they overflow to strings as needed
49-
50-
Session handler
51-
* The session memcached protocol config name was changed, and the default protocol was changed from text to binary protocol. If your memcached setup does not support the binary protocol(e.g. if using twemproxy), then set memcached.sess_binary_protocol = Off. (Previously called memcached.sess_binary)
52-
* Session lock algorithm updated (new ini-values memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and memcached.sess_lock_retries)
53-
* Session extension uses PHP allocators (still some work to do on the rest of the extension)
54-
* Ini-values take effect during session_start or session_regenerate_id
55-
* Fixes crash with session_regenerate_id (work-around for PHP bug)
56-
57-
Tests
58-
* Fix several problematic tests
39+
Fixes
40+
* Add API entries for flushBuffers() and getAllKeys() (#316)
41+
* Ignore specific errors from memcached_dump for getAllKeys() with newer memcached servers (#315)
42+
* Fix compiling with memcached binary protocol enabled (#312)
43+
* Restore php_libmemcached_compat with workaround for missing memcached_exists (#314)
44+
* Travis CI purge old versions of memcached and libmemcached (#309)
5945
</notes>
6046
<contents>
6147
<dir name="/">
@@ -196,6 +182,43 @@ Tests
196182
<configureoption name="with-libmemcached-dir" default="no" prompt="libmemcached directory"/>
197183
</extsrcrelease>
198184
<changelog>
185+
<release>
186+
<stability>
187+
<release>stable</release>
188+
<api>stable</api>
189+
</stability>
190+
<version>
191+
<release>3.0.0</release>
192+
<api>3.0.0</api>
193+
</version>
194+
<date>2016-01-27</date>
195+
<notes>
196+
PHP7 release of memcached extension. Note that support for libmemcached 0.x series has been discontinued
197+
and the oldest actively tested version is 1.0.2. It is highly recommended to use version 1.0.18 of
198+
libmemcached.
199+
200+
API
201+
* The method signature of get, getByKey, getMulti, and getMultiByKey changed.
202+
* get* and getMulti* commands no longer take cas or user flags parameters.
203+
* get* and getMulti* commands now take the Memcached::GET_EXTENDED flag to retrieve user flags and cas tokens.
204+
* Fixes getStats command to return all stats from all servers
205+
* Fixes allKeys command behaviour
206+
* Fixes error where cache callback for get command was not setting expiration time properly
207+
* Added server type to server list
208+
* Remove use_sasl ini-variable and initialise sasl as needed
209+
* CAS tokens are returned as integers and they overflow to strings as needed
210+
211+
Session handler
212+
* The session memcached protocol config name was changed, and the default protocol was changed from text to binary protocol. If your memcached setup does not support the binary protocol(e.g. if using tw
213+
* Session lock algorithm updated (new ini-values memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and memcached.sess_lock_retries)
214+
* Session extension uses PHP allocators (still some work to do on the rest of the extension)
215+
* Ini-values take effect during session_start or session_regenerate_id
216+
* Fixes crash with session_regenerate_id (work-around for PHP bug)
217+
218+
Tests
219+
* Fix several problematic tests
220+
</notes>
221+
</release>
199222
<release>
200223
<stability>
201224
<release>alpha</release>

0 commit comments

Comments
 (0)