diff -r 5c931bd3dc1e -r a7766286a7be thirdparty/google_appengine/RELEASE_NOTES --- a/thirdparty/google_appengine/RELEASE_NOTES Thu Feb 12 10:24:37 2009 +0000 +++ b/thirdparty/google_appengine/RELEASE_NOTES Thu Feb 12 12:30:36 2009 +0000 @@ -3,6 +3,45 @@ App Engine SDK - Release Notes +Version 1.1.9 - February 2, 2009 +================================ + + - HTTP Request and Response limit raised to 10MB from 1MB. + Note that API call limits remain at 1MB. + http://code.google.com/p/googleappengine/issues/detail?id=78 + - urllib and urllib2 now available, implemented using urlfetch. + Also adds additional stubs which may enable other modules. + http://code.google.com/p/googleappengine/issues/detail?id=61 + http://code.google.com/p/googleappengine/issues/detail?id=68 + http://code.google.com/p/googleappengine/issues/detail?id=572 + http://code.google.com/p/googleappengine/issues/detail?id=821 + - Early release of a new data bulk upload tool, bulkloader.py + http://code.google.com/appengine/docs/python/tools/uploadingdata.html + - New remote_api for datastore at google.appengine.ext.remote_api + - Single property descending indexes are automatically generated. + - Added db.Query support for IN and != operators. + http://code.google.com/p/googleappengine/issues/detail?id=751 + - Fixed issue where gql date/time parsing could not handle Unicode strings. + - Fixed issue with db model instance key() returning the wrong key for + unsaved instances with parent as key + http://code.google.com/p/googleappengine/issues/detail?id=883 + - New run_in_transaction_custom_retries method for datastore. + - Fixed issue with relative dev_appserver datastore and history paths. + http://code.google.com/p/googleappengine/issues/detail?id=845 + - Static files and skipped files are not readable in dev_appserver, to match + the behavior on App Engine. + http://code.google.com/p/googleappengine/issues/detail?id=550 + - Images API allows multiple transforms of the same type in one request. A + limit of 10 total transforms per request has been added. + - PIL import will work with both PIL.Image and Image. + http://code.google.com/p/googleappengine/issues/detail?id=929 + - Fixed an issue with sending email in dev_appserver when the application + code changed. + http://code.google.com/p/googleappengine/issues/detail?id=182 + - Memcache counters (incr/decr) do nothing on non positive integers to match + the behavior on App Engine. + http://code.google.com/p/googleappengine/issues/detail?id=918 + Version 1.1.8 - January 7, 2008 ================================= - Skip_files RegexStr validator allows lists to for regex-ors.