|
1 | 1 | Change Log |
2 | 2 | ========== |
3 | | -New in draft |
| 3 | +New in version 2.0.0 |
4 | 4 | -------------------- |
5 | | -* Change set_many and set_multi api return value. see [pr](https://github.com/pinterest/pymemcache/pull/179) |
| 5 | +* Change set_many and set_multi api return value. `PR#179 <https://github.com/pinterest/pymemcache/pull/179>`_ |
| 6 | +* Fix support for newbytes from python-future. `PR#187 <https://github.com/pinterest/pymemcache/pull/187>`_ |
| 7 | +* Add support for Python 3.7, and drop support for Python 3.3 |
| 8 | +* Properly batch Client.set_many() call. `PR#182 <https://github.com/pinterest/pymemcache/pull/182>`_ |
| 9 | +* Improve _check_key() and _store_cmd() performance. `PR#183 <https://github.com/pinterest/pymemcache/pull/183>`_ |
| 10 | +* Properly batch Client.delete_many() call. `PR#184 <https://github.com/pinterest/pymemcache/pull/184>`_ |
| 11 | +* Add option to explicitly set pickle version used by serde. `PR#190 <https://github.com/pinterest/pymemcache/pull/190>`_ |
6 | 12 |
|
7 | 13 | New in version 1.4.4 |
8 | 14 | -------------------- |
9 | 15 | * pypy3 to travis test matrix |
10 | 16 | * full benchmarks in test |
11 | 17 | * fix flake8 issues |
12 | 18 | * Have mockmemcacheclient support non-ascii strings |
| 19 | +* Switch from using pickle format 0 to the highest available version. See `PR#156 <https://github.com/pinterest/pymemcache/pull/156>`_ |
| 20 | + |
| 21 | + *Warning*: different versions of python have different highest pickle versions: https://docs.python.org/3/library/pickle.html |
| 22 | + |
13 | 23 |
|
14 | 24 | New in version 1.4.3 |
15 | 25 | -------------------- |
16 | 26 | * Documentation improvements |
17 | | -* Fixed cachedump stats command, see [ticket](https://github.com/pinterest/pymemcache/issues/103) |
| 27 | +* Fixed cachedump stats command, see `ticket <https://github.com/pinterest/pymemcache/issues/103>`_ |
18 | 28 | * Honor default_value in HashClient |
19 | 29 |
|
20 | 30 | New in version 1.4.2 |
21 | 31 | -------------------- |
22 | | -* Drop support for python 2.6, see [ticket](https://github.com/pinterest/pymemcache/issues/139) |
| 32 | +* Drop support for python 2.6, see `ticket <https://github.com/pinterest/pymemcache/issues/139>`_ |
23 | 33 |
|
24 | 34 | New in version 1.4.1 |
25 | 35 | -------------------- |
26 | | -* Python 3 serializations [fixes](https://github.com/pinterest/pymemcache/pull/131) |
| 36 | +* Python 3 serializations `fixes <https://github.com/pinterest/pymemcache/pull/131>`_ |
27 | 37 | * Drop support for pypy3 |
28 | 38 | * Comment cleanup |
29 | 39 | * Add gets_many to hash_client |
@@ -82,4 +92,3 @@ New in version 1.3.0 |
82 | 92 | New in version 1.2.9 |
83 | 93 | -------------------- |
84 | 94 | * Introduced PooledClient a thread-safe pool of clients |
85 | | - |
|
0 commit comments