summaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Fix #79, #80 -- Fix storing non-ASCII values on Python 2 and binary values ↵Nicolas Noé2017-11-141-0/+3
| | | | on Python 3
* Add testing for Python 3.6Tim Graham2017-10-301-1/+1
|
* Remove testing for Python 3.3Tim Graham2016-12-211-1/+1
|
* Adding notes about changes.Sean Reifschneider2016-12-171-0/+15
|
* Adding changelog entries.Sean Reifschneider2016-05-271-0/+19
|
* Readme changes for delete() time=None changeSean Reifschneider2016-05-271-0/+4
|
* Fix for value being boolean in set().release-1.57Sean Reifschneider2015-07-311-0/+7
|
* For 1.56 release.release-1.56Sean Reifschneider2015-07-261-1/+1
|
* Updating changelog.release-1.55Sean Reifschneider2015-07-261-0/+6
|
* Adding Changelog entry.Sean Reifschneider2015-03-191-0/+3
|
* Adding changelog entry for pluggable compressors.Sean Reifschneider2014-09-271-0/+2
|
* Adding changelog entry.Sean Reifschneider2014-09-271-0/+2
|
* Fixes for empty/None keys.Sean Reifschneider2014-09-241-0/+2
| | | | | Empty keys with a prefix are ok (for _multi() mostly). _multi() was silently converting None key to a string.
* Ready for release.release-1.54Sean Reifschneider2014-09-211-0/+8
|
* MemcachedKeyCharacterError better describes errorSean Reifschneider2014-09-211-0/+3
|
* Adding Changelog for touch()Sean Reifschneider2014-02-081-0/+2
|
* Changelog entry for zewt patch.Sean Reifschneider2014-02-081-0/+2
|
* Changing unknown flags on GET to raise ValueError.Sean Reifschneider2013-08-251-0/+3
|
* Alowing SERVER_MAX* to be set after import.Sean Reifschneider2013-08-121-0/+3
|
* For 1.53 release.release-1.53Sean Reifschneider2013-06-071-0/+4
|
* Marking connection dead in readline().Sean Reifschneider2013-06-031-0/+11
| | | | Also fixing a docstring test.
* Reverting back to re.match for key checking.Sean Reifschneider2013-06-021-0/+8
|
* For 1.51 release.release-1.51Sean Reifschneider2013-05-061-0/+6
|
* Fixing reference to README in setup.pyrelease-1.50Sean Reifschneider2013-05-061-1/+1
|
* Changing check_key to check_keys.release-1.49Sean Reifschneider2013-05-061-1/+5
|
* check_key disabling and performance improvements.Sean Reifschneider2013-05-041-0/+8
| | | | | | | | | | * Client() now takes a "check_key" option, which defaults to True. If False, it disables the checking of keys to ensure they have acceptable size and are composed of non-control characters. Suggested by Ben Hoyt. * Converting control character checking of keys based on performance testing of alternatives by Ben Hoyt.
* Converting unicode test from using u''.Sean Reifschneider2013-04-171-0/+2
|
* Updating ChangingLog.Sean Reifschneider2013-04-161-0/+2
|
* Set after server dies raises AttributeError.Sean Reifschneider2013-03-301-0/+3
|
* incr/decr return None on server connection fail.Sean Reifschneider2013-03-291-0/+3
|
* Adding patch for IPv6 connection string.Sean Reifschneider2013-03-281-0/+3
|
* Changing location to github.Sean Reifschneider2013-03-271-0/+4
|
* * Bug #974632: _ConnectionDeadError sometimes was escaping the get/setSean Reifschneider2012-04-111-0/+8
| | | | | | | | | code. This should return to readline() not raising an exception, except in the case that it's called from the get/set(). Report from Gary Poster, proposed patch by Brad Crittenden. Misc fixes by Brad Crittenden: fixing a docstring, if "port" is set to any false-like value it will default to 11211.
* For release.Sean Reifschneider2011-11-291-0/+2
|
* Bug #887765: Interrupted connection to memcache server can causeSean Reifschneider2011-11-291-0/+7
| | | | | | | | inconsistencies. Added "flush_on_reconnect" (defaults to off) to Client() which will cause a client that has lost connection to a server and then reconnects to flush the cache on the reconnect so that it doesn't get old values from that server. Patch by Daniel Benamy.
* Ready for a new release.Sean Reifschneider2011-11-271-0/+2
|
* Adding attribution of last change.Sean Reifschneider2011-11-271-1/+1
|
* Bug #745633: Values of maximum size are not storedSean Reifschneider2011-11-271-0/+7
| | | | | | | | API inconsistency, max value length was tested for <= while max KEY length was <. So I picked that keys and values *LONGER* than the specified max value are what is used, and added documentation and tests to that effect. The test for max value tested that length plus 4, so I've changed that to be that value plus 1.
* Changelog for last commit.Sean Reifschneider2011-11-271-0/+7
|
* * Bug #713451: server.expect("END") needs to be in a finally blockSean Reifschneider2011-11-271-0/+4
| | | | | Expect an "END" when the _recv_value() raises an exception. Patch by Jay Farrimond.
* Reverting patch that allows spaces in key.Sean Reifschneider2011-11-271-3/+0
|
* Bug: #741090: cas cache can grow unbounded. Default now is that theSean Reifschneider2011-11-271-0/+6
| | | | | | | cache is not used, unless the "Client()" object is created with "cache_cas=True". In that case, you need to have your own cas clearing code, a simple one would be to use Client().reset_cas() to completely clear the cas_ids cache. Problem pointed out by Shaun Cutts.
* Bug: #794456: Spaces in memcache keynamesSean Reifschneider2011-11-271-0/+3
| | | | Now allow spaces in keys. Proposed by cpaetzel.
* Bug #728359: Make python-memcache work on memcache restarts.Sean Reifschneider2011-11-271-0/+4
| | | | | Patch by Tarek Ziade', reviewed and further patches submitted by Hugo Beauze'e-Luysse and Neganov Alexandr.
* * Bug #798342: If memcached server sends unknown flag in response forSean Reifschneider2011-11-271-0/+5
| | | | | | "get", results in: "UnboundLocalError: local variable 'val' referenced before assignment" Now returns "None" instead. Patch by Sharoon Thomas
* Changelog for new release.Sean Reifschneider2010-12-201-0/+2
|
* Changelog entry for last commit.Sean Reifschneider2010-12-161-0/+3
|
* Adding marker for 1.46 release.Sean Reifschneider2010-12-161-0/+2
|
* Delete result code checking.Sean Reifschneider2010-12-151-0/+5
|
* When using set_multi and one value is too big, tracebackSean Reifschneider2010-12-151-0/+4
|