1.7.0 SDK for Eclipse
[gae.git] / python / RELEASE_NOTES
blobaf966e8bb172767f76754d5b59c141b7f18c18ca
1 Copyright 2008 Google Inc.
2 All rights reserved.
4 App Engine Python SDK - Release Notes
6 Version 1.6.6
7 ===============================
8 - On May 8, 2012 we released an experimental Search API.
9     http://googleappengine.blogspot.com/2012/05/looking-for-search-find-it-on-google.html
10 - The Admin Console now displays the quotas for Search API Calls and Search
11   Stored Data.
12 - The Search API has deprecated the order_id attribute on Document class. It has
13   been replaced with the rank attribute.
14 - The Search API has deprecated the document attribute on ListResponse and
15   replaced it with a result attribute. Also the document_id attribute on
16   OperationResult class is deprecated and replaced with the id attribute.
17 - Fixed an issue where unicode is not consistently handled in the Python Search
18   API.
19 - App creation for apps using the Master/Slave datastore is now restricted to
20   only those users who already own a Master/Slave app.
21 - Apps with billing enabled are now able to configure up to 100 cron jobs.
22 - Admin Console can no longer be included in an <iframe>.  To prevent
23   clickjacking attacks on the Admin Console, we are now setting
24   X-Frame-Options: SAMEORIGIN.  To read more about clickjacking, please read:
25   https://www.owasp.org/index.php/Clickjacking.
26 - The Admin Console will now periodically prompt administrators to take an
27   optional App Engine satisfaction survey.
28 - You can now use the third party PyAMF library with Python 2.7. This is
29   available as an experimental feature.
30 - For NDB, Rollback has been added to the default list of flow exceptions.
31     http://code.google.com/p/appengine-ndb-experiment/issues/detail?id=179
32 - Fixed an issue where large datastore backups were unable to be deleted.
33 - Fixed an issue where datastore backups fail due to an ASCII decoding issue.
34 - Fixed an issue where the SDK did not import subpackages correctly when using
35   import hooks.
36 - Fixed an issue where running a projection query on a multi-valued property
37   with an equality filter did not return any results.
38 - Fixed an issue where unicode environment variables were dropped in Appstats
39   when using Python 2.7.
40     http://code.google.com/p/googleappengine/issues/detail?id=6448
41 - Fixed an issue where XG transactions did not work with the Remote API.
42     http://code.google.com/p/googleappengine/issues/detail?id=7238
44 Version 1.6.5
45 ===============================
46 - You can now perform datastore queries that return a subset of your entity
47   properties with the same performance and cost of a keys-only query. This
48   feature is experimental.
49 - In the High Replication Datastore, there is a new metadata kind,
50   __entity_group__, that has a numeric __version__ property. This property is
51   guaranteed to increase on every change to the entity group.
52 - The Images API now supports manipulating objects hosted on Google Cloud
53   Storage.
54 - In the Images API, the get_serving_url call now optionally allows you to
55   specify if the URL you are generating should be served over https.
56 - In the Task Queue REST API, you can now specify a tag when you insert a task
57   on a Pull Queue.
58 - In the Task Queue API, you can specify a deadline for the lease_tasks call.
59   The default deadline has been increased from 5 seconds to 10 seconds.
60 - You can now use cron to schedule Datastore backups.
61 - The Datastore Admin now has a page that displays information on the status of
62   your Datastore backups and restores.
63 - You can now abort your Datastore backup or restore from the Datastore Admin.
64 - You can now restore a single Datastore Kind from the Datastore Admin from a
65   Datastore backup.
66 - In the Admin Console, you can report production issues with your application
67   directly to Google from the application's pages. Simply click the "Report
68   Production Issues" link, fill out the requested information, and submit.
69 - All user requests have X-AppEngine-Region, X-AppEngine-City, and
70   X-AppEngine-CityLatLong headers which contain location information based on
71   the IP address of the client request. For a full description of these headers,
72   see:
73     https://developers.google.com/appengine/docs/python/runtime#Request_Headers
74 - We have added support for concurrent transactions to @db.transactional and
75   db.run_in_transaction_options() along with other transaction propagation
76   options.
77 - We've introduced an experimental new Mac Installer that only supports Python
78   2.7.
79 - In your app.yaml file, you can include an env_variables stanza that will set
80   the given environment variables in your application's runtime.
81 - Jinja2 now includes the _debugsupport module.
82 - Fixed an issue with the dev_appserver where it defaulted the HTTP
83   Content-Type of a request to text/plain instead of text/html.
84 - Fixed an issue where the SDK would include some indexes that were not needed
85   in production.
86 - Fixed an issue in the SDK where the SDK admin console would not display utf-8
87   encoded list property values.
88   http://code.google.com/p/googleappengine/issues/detail?id=7079
90 Version 1.6.4
91 ===============================
92 - Billed applications that have specified additional logs retention over 1 GB
93   are now being charged for that storage at $0.24/GB/month (the first gigabyte
94   of logs storage is free). All logs beyond an application's specified storage
95   limit will be deleted. Please examine your Application Settings page to verify
96   you are retaining the desired amount of logs.
97 - Datastore statistics now show the amount of storage used by application
98   indexes.
99 - We have released an experimental utility for migrating your application's
100   blobs at the same time you migrate your datastore data. You can opt-in to
101   blob migration in the Admin Console when you start your migration.
102 - We have updated the experimental Backup/Restore functionality to include
103   the option to backup and restore to Google Cloud Storage.
104 - The NDB datastore API is now generally available. For full release notes
105   on the version 0.9.9 and 1.0.0 fixes that have been integrated into the
106   API see:
107     http://code.google.com/p/appengine-ndb-experiment/source/browse/RELEASE_NOTES?name=sandbox
108 - In the Python 2.7 runtime, Background threads are available as an
109   experimental release when using App Engine backends.
110 - Using the Blobstore API's serve_blob() method, your application can serve
111   objects hosted on Google Storage for Developers.
112 - The Admin Console now provides a Memcache viewer that lists Memcache stats and
113   can display Memcache content based on key.
114 - In the Capabilities API stub in the SDK, you can now enable or disable
115   a capability using SetPackagedEnabled.
116 - The Windows installer now prompts to install Python 2.7 instead of
117   Python 2.5.
118 - The Testbed API now supports the Capabilities API.
119 - GQL queries in the Admin Console no longer throw an error when a trailing
120   semi-colon is included.
121 - The Datastore API now includes a NonTransactional decorator to ensure that
122   a function is run outside of a transaction. Existing transactions are paused
123   while the function is executing.
124 - The Datastore Admin tab in the Admin Console now shows entities from every
125   namespace.
126     http://code.google.com/p/googleappengine/issues/detail?id=3962
127 - Fixed an issue with _strptime when threadsafe was specified.
128     http://code.google.com/p/googleappengine/issues/detail?id=6489
129 - Fixed an issue where DatastoreFileStub.__del__ fails on tempfile.msktemp.
130     http://code.google.com/p/googleappengine/issues/detail?id=6749
131 - WebOb 1.1.1 is now included in the SDK, and used by default there when
132   Python 2.7 is specified.
133     http://code.google.com/p/googleappengine/issues/detail?id=7014
134 - Fixed an issue where the index.yaml file was cleared if your skip_files entry
135   differs from the default skip_files list.
136     http://code.google.com/p/googleappengine/issues/detail?id=7031
138 Version 1.6.3
139 ===============================
140 - In the Admin Console, you can use new the Traffic Splitting feature to send a
141   certain percentage of traffic to a non-default application version. The
142   traffic is split by either cookie or IP address.
143 - Emails that are sent from Google Apps domains email addresses where the domain
144   has been set up to use DKIM will be signed: when an email was from a request
145   that originated on that app's domain or any time the email was sent from
146   an app adminstrator, including when that email is sent from a cron job or task
147   queue request.
148 - In the Admin Console, you can now choose how much and how long you'd like to
149   store logs.  All apps get 1G for free and eventually will be able to pay for
150   more, while the amount can be increased this release we won't start charging
151   for the additional capacity until the next release at the earliest.
152 - The instances screen in the Admin Console now has a button to shut down
153   a specific instance.
154 - Each application log has a link to the instance that served the request. If
155   the instance is no longer serving requests, a message will be displayed.
156 - The TaskQueue API now supports the ability to tag a Pull Queue task. You may
157   then lease tasks by tag. This feature is experimental.
158 - Using Google Apps wildcard domain mappings, you can access alternate
159   versions of your app via a custom domain.
160 - Push and Pull Queues are now listed separately in the SDK development console.
161 - Developer documentation for the experimental NDB API, the replacement for
162   db.py, is now available.
163 - Appcfg now supports OAuth2.
164 - webapp 2.5.1 is now available in the Python 2.7 runtime.
165 - Django 1.3 is now available in the Python 2.7 runtime.
166 - GQL Query now supports custom type casting for list elements for "IN" filters.
167 - Fixed an issue where StringProperty's validate() didn't check the 500 byte
168   limit.
169     http://code.google.com/p/googleappengine/issues/detail?id=4030
170 - Fixed an issue where the datastore admin didn't work with Federated Login.
171     http://code.google.com/p/googleappengine/issues/detail?id=4111
172 - Fixed an issue in the SDK where failing to call _RemoveTxn in the
173   datastore_stub_util caused a memory leak:
174     http://code.google.com/p/googleappengine/issues/detail?id=6157
175 - Code that inherits from the deferred library's TaskHandler can now define
176   custom handling of exceptions.
177     http://code.google.com/p/googleappengine/issues/detail?id=6478
178 - Fixed an issue where logging in the SDK was broken in Windows 7 using
179   Python 2.7.2.
180     http://code.google.com/p/googleappengine/issues/detail?id=6756
181 - Fixed an issue in the SDK where the Conversion API call limited was limited
182   to 1 MB when the production limit is 2 MB.
183     http://code.google.com/p/googleappengine/issues/detail?id=6794
184 - Fixed an issue so that a deferred task retries like a push queue task when
185   using the SingularTaskFailure exception:
186     http://code.google.com/p/googleappengine/issues/detail?id=6412
189 Version 1.6.2
190 ===============================
191 - The Admin Console Datastore Admin has added experimental backup and restore
192   functionality. The job occurs within your application and counts against your
193   application quota, including Instance Hours, Datastore Ops and Datastore
194   Storage.
195 - Developers can now specify how long a channel token will last until it
196   expires, with the default remaining two hours. Channel API quota is now
197   measured both in calls to create a channel and the number of hours of channel
198   time requested. The maximum hours of quota is the maximum number of channel
199   creation calls * 2, so free apps get 200 hours of requested channel token
200   time.
201 - Python Django now work with Cloud SQL without additional configuration. For
202   further information see https://developers.google.com/cloud-sql/.
203 - Task Queue API requests now include a X-Appengine-TaskETA header, that can be
204   used to measure task delivery latency.
205 - The default API deadlines for Blobstore API calls have been raised to 15s for
206   online and 30s for offline requests, up from 5s.
207 - The Images API now allows you to stretch an image without maintaining the
208   aspect ratio.
209     http://code.google.com/p/googleappengine/issues/detail?id=2220
210 - The Blobstore API now includes the asynchronous function calls
211   create_upload_url_async, delete_async, and fetch_data_async.
212 - Django version 1.3 is now available in the Python 2.5 runtime.
213 - We've added a django_wsgi builtin to allow easier bootstrapping of Django
214   applications.
215 - Mail Quota for App Engine apps that have signed up for billing will only be
216   increased after the first payment for the app is processed.
217 - As announced in 1.6.1, in this release for the experimental Python 2.7
218   runtime, the mapreduce and datastore_admin builtins are not available to apps
219   deployed to Python 2.7.
220 - Fixed an issue with remote_api where calling fetch_page() with a page size
221   of 301 and chaining the calls through the returned cursor was skipping half
222   of the results.
223 - Fixed an issue where the PIL _imagingmath module was not available in Python
224   2.7.
225 - Fixed an issue where the SDK did not resize images down to 512 pixels by
226   default, as it does in production.
227 - Fixed an issue with the Images API where valid images were returning a
228   NotImageError.
229     http://code.google.com/p/googleappengine/issues/detail?id=5545
230 - Fixed an issue where the SDK didn't start when using Python 2.7 and the
231   --backends flag.
232     http://code.google.com/p/googleappengine/issues/detail?id=6187
233 - Fixed an issue where Jinja2 was not included in the SDK for use with Python
234   2.7.
235     http://code.google.com/p/googleappengine/issues/detail?id=6265
236 - Fixed an issue with the sql datastore stub in Python 2.7 where the sqlite
237   module no longer accepted strings with non-ASCII characters.
238     http://code.google.com/p/googleappengine/issues/detail?id=6290
239 - Fixed an issue where gzip did not work with Python 2.7 in the dev_appserver.
240     http://code.google.com/p/googleappengine/issues/detail?id=6324
241 - Fixed an issue where urllib2 did not work with Python 2.7.
242     http://code.google.com/p/googleappengine/issues/detail?id=6567
243 - Fixed an error in the Datastore Viewer where an error was thrown when viewing
244   an Entity which defines an index with no properties.
245     http://code.google.com/p/googleappengine/issues/detail?id=6600
246 - Fixed an issue where transactional tasks were not enqueued in the SDK when
247   running in high_replication mode.
248     http://code.google.com/p/googleappengine/issues/detail?id=6669
250 Version 1.6.1
251 ===============================
252 - You can now configure Frontend Instance Classes from your Admin Console's
253   application settings page. Three classes are available, with increasing
254   memory, CPU limits, and associated cost. By default, all applications use the
255   basic frontend instance setting of 128MB memory and 600MHz CPU.
256 - We've added new functionality to the Log API that will allow you to read your
257   application's logs programmatically.
258 - We are releasing an experimental Conversion API that will allow you to convert
259   between document types including .doc, .html, .pdf, images using OCR, and
260   more.
261 - The High Replication Datastore migration utility is now available as a GA
262   feature, and is no longer experimental.
263 - The ext.db API query functions (run, fetch, count, get) now accept the keyword
264   arguments: deadline, read_policy, prefetch_size, batch_size, limit, offset,
265   start_cursor, end_cursor, keys_only. It is recommended that developers use
266   Query.run() with a limit or batch_size instead of Query.fetch() when iterating
267   over results.
268 - The ext.db API model functions (get, put, delete, allocate_ids) now directly
269   accept the keyword arguments: deadline, read_policy
270 - The Blobstore API now supports the multiple="true" attribute to the HTML input
271   tag.
272 - Fixed an issue logging unicode objects in the SDK.
273 - Fixed an issue with the dev_appserver where HTTP HEAD always returned
274   content-length: 0.
275     http://code.google.com/p/googleappengine/issues/detail?id=2000
276 - Fixed an issue in the SDK where importing Crypto.Util.Counter caused an
277   ImportError.
278     http://code.google.com/p/googleappengine/issues/detail?id=4168
279 - Fixed an issue where the SDK didn't work with virtualenv.
280     http://code.google.com/p/googleappengine/issues/detail?id=4339
281 - Fixed an issue where cached static files served to IPs on the DoS blacklist
282   consumed bandwidth quota.
283     http://code.google.com/p/googleappengine/issues/detail?id=4607
284 - Fixed an issue that was causing slow serving of requests in the SDK.
285     http://code.google.com/p/googleappengine/issues/detail?id=6005
286 - Fixed an issue where the Channel API didn't work in the SDK with Python 2.7.
287     http://code.google.com/p/googleappengine/issues/detail?id=6267
288 - Fixed an httplib compatibility issue between Python 2.5 and Python 2.7 in the
289   SDK.
290     http://code.google.com/p/googleappengine/issues/detail?id=6271
291 - Fixed an issue where queries larger than 1MB didn't work with Python 2.7.
292     http://code.google.com/p/googleappengine/issues/detail?id=6282
293 - Fixed an error in the SDK on first page load for a handler.
294     http://code.google.com/p/googleappengine/issues/detail?id=6302
295 - Fixed an issue in the SDK that caused slowness due to app's logs being written
296   to the datastore. Set the --persist_logs flag in the SDK if you are using the
297   Logservice API to read logs.
298     http://code.google.com/p/googleappengine/issues/detail?id=6355
299 - WARNING: Starting with the 1.6.2 release of the experimental Python 2.7
300   runtime, the mapreduce and datastore_admin builtins will not be supported.
302 Version 1.6.0
303 ===============================
304 - On November 7th, App Engine will be out of Preview. The new Terms of Service
305   and previously announced pricing changes will be in effect. Additionally, all
306   paid apps are now covered by our SLA.
307     http://code.google.com/appengine/docs/billing.html
308 - Paid apps can now specify the maximum pending latency for instances and the
309   minimum number of idle instances for your application in the Admin Console.
310 - Task Queue storage has been separated in to its own line item. Previously,
311   this was included in Datastore storage.
312 - We have released an experimental utility, available in the Admin Console, to
313   assist in migrating your application to the High Replication datastore. This
314   utility allows you to copy the bulk of your data in the background, while the
315   source application is still serving. You then need a brief read-only period to
316   migrate your application data while you copy the data that has changed from
317   the time the original copy started.
318 - Blobstore, which was previously limited to apps with billing enabled, is now
319   available for all apps.
320 - We have published a new article on Datastore Index Selection and Advanced
321   Search which explains our recent improvements to the query planner that make
322   exploding indexes unnecessary.
323     http://code.google.com/appengine/articles/indexselection.html
324 - Applications can now receive xmpp error stanzas at /_ah/xmpp/error.
325 - In the Admin Console data viewer, you can now filter by namespace from a drop
326   down menu, if applicable.
327 - In the Admin Console's Datastore Statistics, we now offer namespace suggest
328   for filtering stats.
329 - We have released as experimental the full MapReduce framework.
330 - The SDK now supports Python 2.7.
331 - Python 2.7 now supports WebOb 1.1.1, which has some significant bug fixes.
332   Applications that explicitly set the "webob" version to "1.1" in their
333   app.yaml files must update the version to "1.1.1".
334 - The mail_stub.get_sent_messages() call now returns EmailMessage instances.
335 - Fixed an issue when setting an initial_value in memcache.incr unexpectedly
336   returned a string.
337     http://code.google.com/p/googleappengine/issues/detail?id=2012
338 - Fixed an issue where DoS stats in the Admin Console didn't work for High
339   Replication apps.
340     http://code.google.com/p/googleappengine/issues/detail?id=5237
341 - WARNING: Starting with 1.6.1 (our next release, NOT this release), URLFetch
342   requests will honor the Accept-Encoding header. If your code sets this header
343   then it must be prepared to receive content of the specified type. For more
344   information please see
345     http://code.google.com/p/googleappengine/issues/detail?id=4978
347 Version 1.5.5
348 ===============================
349 - Python 2.7 is now available as an experimental runtime for all applications
350   using the High Replication Datastore. To upload your app to the Python 2.7
351   runtime, change the runtime argument in your app.yaml to python27. Note that
352   the dev_appserver does NOT work with Python 2.7 - you must deploy your
353   application in order test it.
354 - We have increased the number of files you can upload with your application
355   from 3,000 to 10,000.
356 - We have increased the size limit for a single file uploaded to App Engine from
357   10MB to 32MB.
358 - We have increased the Frontend request deadline from 30 seconds to 60 seconds.
359 - We have increased the online URLFetch maximum deadline from 10 seconds to 60
360   seconds. The default deadline remains at 10 seconds. The offline maximum deadline
361   for URLFetch remains at 10 minutes.
362 - We have increased the URLFetch Post payload from 1MB to 5MB.
363 - App Engine now supports Cross Group (XG) transactions with the High
364   Replication Datastore, which allow you to perform transactions across
365   multiple entity groups.
366     http://code.google.com/appengine/docs/python/datastore/transactions.html
367 - We have released an experimental API that can write to Google Storage for
368   Developers directly from App Engine.
369     http://code.google.com/appengine/docs/python/googlestorage/overview.html
370 - We have added a graph to the admin console that displays the number of
371   instances for which you will be billed.
372 - In the XMPP API, get_presence() is deprecated in favor of using the inbound
373   presence handlers documented in
374   http://code.google.com/appengine/docs/python/xmpp/overview.html#Handling_User_Presence.
375 - The Task Queue API 'target' parameter now accepts a new value,
376   taskqueue.DEFAULT_APP_VERSION, which will send the task to the default
377   frontend version, rather than the version or backend where the 'add' method is
378   being called.
379 - In the URLFetch API, make_fetch_call() now returns an RPC object.
380 - Fixed an issue in the Admin Console where the "Run Now" button did not work
381   for tasks with a '-' in the name.
382 - Fixed an issue where the SDK did not decode Base64 encoded blobs.
383 - Fixed an issue to provide a better error message when using the Mail API to
384   send email to an invalid user address.
385 - Fixed an issue in the SDK where a skip_files entry caused an ImportError when
386   the library was located elsewhere in the PYTHONPATH.
387 - Fixed an issue in the SDK index viewer where the arrows indicating whether a
388   query was ascending or descending were not properly rendered.
389 - Fixed an issue where httplib did not support the deadline argument for
390   URLFetch calls.
391     http://code.google.com/p/googleappengine/issues/detail?id=2216
392 - Fixed an issue where you could not schedule a cron job to run every 100
393   minutes.
394     http://code.google.com/p/googleappengine/issues/detail?id=5243
395 - Fixed an issue in the SDK where failed tasks retried immediately instead of
396   waiting for 30 seconds.
397     http://code.google.com/p/googleappengine/issues/detail?id=5587
398 - Fixed an issue making it possible to modify request headers using the deferred
399   library.
400     http://code.google.com/p/googleappengine/issues/detail?id=5861
402 Version 1.5.4
403 ===============================
404 - You can now specify the maximum size for a blob in create_upload_url().
405 - Zigzag merge join queries will now continue scanning up to the 30 second
406   Datastore query deadline.  For zigzag queries that used to generate NeedIndex
407   errors, many will now succeed.  A small percentage will now instead timeout.
408 - The SDK datastore viewer in the dev console now displays the number of "Write
409   Ops" for each entity. "Write Ops" are the total number of entity and index
410   writes that were required to create the entity.
411 - Added API functionality for making calls to the Memcache API asynchronously.
412 - Fixed an issue that incorrectly allowed creation of tasks with whitespace in
413   the url.
414 - Fixed the error message for "transaction not found" to be more descriptive.
415 - Fixed an issue where blobstore uploads didn't work in the SDK with the
416   -a 0.0.0.0 flag set.
417 - Fixed an issue where --dry_run was broken for upload_data in bulkload.py.
418 - Fixed an issue where db.Model().to_xml() incorrectly updated auto-updating
419   properties.
420     http://code.google.com/p/googleappengine/issues/detail?id=322
421 - Fixed an issue where the SDK didn't expand the '~' in a file path.
422     http://code.google.com/p/googleappengine/issues/detail?id=522
423 - Fixed an issue where is_saved() wasn't valid after db.Model.__init__.
424     http://code.google.com/p/googleappengine/issues/detail?id=844
425 - Fixed an issue where GQL IN queries with an empty list returned all entities.
426     http://code.google.com/p/googleappengine/issues/detail?id=932
427 - Fixed an issue where the SDK's sqlite stub did not handle cursors on
428   descending queries correctly.
429     http://code.google.com/p/googleappengine/issues/detail?id=3121
430 - Fixed a typo in the SDK's Datastore Stats generator message.
431     http://code.google.com/p/googleappengine/issues/detail?id=5425
433 Version 1.5.3
434 =============================
435 - We've removed the limit on the size of blob uploads using the Blobstore API.
436 - You can now send emails with any attachment extension that is not included on
437   the email attachment extension blacklist.
438 - Added a db.get_indexes() method to retrieve an application's indexes and
439   their corresponding states.
440 - The dev_appserver has been updated to understand the reduced index
441   requirements of the 1.5.2 datastore query planner changes.
442 - The Datastore Admin functionality can now be enabled directly in the Admin
443   Console.
444 - Added cas(), the compare-and-set function, to the Memcache API.
445    http://code.google.com/p/googleappengine/issues/detail?id=2139
446 - Added a set_default_fetch_deadline to the URLFetch API which sets the
447   URLFetch deadline globally.
448 - Added app_identity api with methods to get the application id, default
449   hostname, and service accounts for asserting identity on outbound HTTP calls.
450     http://code.google.com/appengine/docs/python/appidentity/overview.html
451 - Added an improved HRD migration tool that requires a read-only period relative
452   to your datastore write rate (as opposed to your datastore size, which is how
453   the current version behaves). The tool is not yet generally available.  If you
454   are interested in being an early adopter please fill out this form:
455   http://goo.gl/3jrXu
456 - Fixed an issue in the Channel API where jsapi was not served with the correct
457   mime type.
458 - Fixed an issue that broke use_library when the Python SDK was located in a
459   directory that contained the word 'django'.
460 - Fixed an issue where blobs could not be uploaded using HTTPS.
461 - Fixed an issue where GQL didn't allow querying for valid kind names
462   containing '.', '-', and ':' by supporting quoted identifiers.
463     http://code.google.com/p/googleappengine/issues/detail?id=2584
465 Version 1.5.2
466 =============================
467 - You can now specify the minimum pending latency for instances and the maximum
468   number of idle instances for your application in the Admin Console.
469 - The datastore now never requires an exploding index.
470     http://code.google.com/appengine/docs/python/datastore/queries.html#Big_Entities_and_Exploding_Indexes
471 - The SDK will now never suggest indexes with the same property repeated, as
472   such indexes are likely to be exploding indexes.
473 - The SDK now supports multiple concurrent transactions.
474 - Datastore stats are now available on a per-namespace basis.
475 - The queue details page in the Admin Console now contains request header
476   details, previous run information, and a task payload viewer.
477 - You can modify the lease on a task leased from a pull queue using the
478   modify_task_lease() method.
479 - Pull Task maximum size has been increased to 1MB.
480 - You can now update the number of available backend instances without needing
481   to first stop the backend using the "backend configure" appcfg.py directive.
482 - You can now set the "References" and "In-Reply-To" headers with the Mail API.
483     http://code.google.com/p/googleappengine/issues/detail?id=2802
484 - The SDK "application" environment variable will now be prefixed with dev~.
485   The new preferred way of retrieving your app id is to use
486   appidentity.get_application_id(). The --default_partition flag can be used
487   for applications whose code relied on a specific environment variable.
488 - In the Deferred API, defer() now accepts the _target parameter.
489 - Added a to_dict() function to db.py which converts a model to a dictionary.
490 - Added a get_original_metadata() method to the Images API to extract EXIF
491   information from images.
492     http://code.google.com/p/googleappengine/issues/detail?id=4133
493 - Added an @transactional decorator to db.py for functions that should
494   always be run in a transaction.
495 - Fixed an issue in the SDK where the Deferred API did not work when using
496   the --backends flag.
497     http://code.google.com/p/googleappengine/issues/detail?id=5072
499 Version 1.5.1
500 ============================
501 - ProtoRPC is a new experimental library that provides a simple method for
502   creating a well-defined and easy-to-use web-based RPC service.
503 - The development server's datastore implementation now contains logic that
504   closely replicates the consistency guarantees of the High Replication
505   datastore. To use, run the dev_appserver with the flag --high_replication set
506   to True.
507 - All user request have an X-AppEngine-Country header which contains the
508   ISO-3166-1 alpha-2 country code for the user, based on the IP address of the
509   client request.
510 - The Channel API can now provide user presence, this can be configured by
511   adding channel_presence to the list of inbound services for your application.
512 - The Images API now supports the WebP format. Due to limitations in PIL, the
513   SDK does not support the WebP format.
514 - You can switch the timezone for App Engine logs in the Admin Console.
515   http://code.google.com/p/googleappengine/issues/detail?id=734
516 - Fixed an issue in the SDK where leased tasks had the POST method. They now
517   have a PULL method.
518 - Fixed an issue where the Channel API didn't work with non-default versions of
519   applications using the High Replication datastore.
520 - When displaying corrupt data in the Admin Console dataviewer, a useful error
521   will be displayed, instead of a 500.
522   http://code.google.com/p/googleappengine/issues/detail?id=4945
524 Version 1.5.0
525 ==============================
526 - Support for Backends which allow developers to create infrastructure
527   components that complement the existing dynamic apps that App Engine already
528   provides. Instances of a backend can maintain state, be addressed
529   individually, and are not subject to per-request time limits. They can also be
530   configured to consume more memory and CPU than ordinary dynamic instances.
531 - Task Queues support pull mode, allowing for more control over task queue work
532   rates. To use pull queues, include the 'mode' argument in your queue.yaml.
533 - Pull queues are supported by a REST API, allowing access from outside App
534   Engine. To use the REST API, you must also include a valid ACL section
535   specifying which users can lease tasks from the pull queue.
536 - Task Queue payload limits have been increased. Queues support 100KB per task.
537   Within App Engine, the new limit is 32 MB per batch of tasks. With the REST
538   API the limit is 1 MB per batch.
539 - HTTP request and response sizes have been increased to 32 MB.
540 - We have removed the rate quotas for requests, datastore operations,
541   memcache operations, and image API operations. Resource quotas still apply.
542 - When creating new applications, developers will now see the High Replication
543   Datastore as the default configuration option.  Developers that still wish to
544   use the Master/Slave configuration must explicitly choose this option at
545   application creation time.
546 - The Task Queue maximum configurable processing rate has been increased to
547   500/s.
548 - We have added two restrictions to the Mail API to improve the reliability
549   of the service for all applications.
550   - Emails must be sent from email accounts managed by Google (either Gmail or
551     a domain signed up for Google Apps).
552   - Reduced the number of free recipients per day from 2000 to 100 for new
553     applications.
554 - All application Owners, as listed in the Admin Console, can download the app's
555   code, unless code download is disabled for the application.
556 - Added db.py support for making calls to the datastore asynchronously.
557   Available functions are get_async(), put_async(), delete_async(),
558   allocate_ids_async(). Call get_result on the return value of asynchronous
559   datastore functions to block on the call.
560 - Metadata queries can now get all namespaces, kinds, and properties in a given
561   range.
562 - The Testbed API now supports the Channel API.
563 - Users can provide Django settings to be loaded in webapp's django_setup.
564 - Modified Dashboard latency graphs to indicate they only include dynamic
565   requests.
566 - Fixed an issue where metadata queries did not support unicode characters.
567 - Fixed an issue where HTTP headers could contain new line characters.
568 - A warning message is shown when the Python version used to run the SDK is
569   different than the Python version used in production.
570 - Fixed an issue with Federated Users causing the Admin Console dataviewer to
571   fail.
572     http://code.google.com/p/googleappengine/issues/detail?id=384
573 - MacOS and Windows style newlines are now supported for logging in the SDK.
574     http://code.google.com/p/googleappengine/issues/detail?id=560
575 - Fixed an issue where sending mail with smtp_host set did not work.
576     http://code.google.com/p/googleappengine/issues/detail?id=626
577 - Fixed the file permissions for appinfo_errors.py and appinfo.py in the SDK.
578     http://code.google.com/p/googleappengine/issues/detail?id=725
579 - Fixed an issue deploying an app with version set to 0.
580     http://code.google.com/p/googleappengine/issues/detail?id=735
581 - Fixed an issue where the SDK allowed GET or DELETE with a body, which does
582   not work in production.
583     http://code.google.com/p/googleappengine/issues/detail?id=983
584 - Fixed an issue where URLFetch/urllib did not work with MacOS and
585   Python 2.6.0-2.6.3.
586     http://code.google.com/p/googleappengine/issues/detail?id=985
587 - Fixed the an issue in the SDK where the mail body was incorrectly generated
588   when the sendmail option was enabled.
589     http://code.google.com/p/googleappengine/issues/detail?id=1061
590 - Fixed an issue in the SDK dataviewer where editing a ListProperty(db.Category)
591   resulted in a BadValueError.
592     http://code.google.com/p/googleappengine/issues/detail?id=1139
593 - Fixed an issue in the SDK where the signal module could be imported, as it
594   is not supported.
595     http://code.google.com/p/googleappengine/issues/detail?id=1150
596 - Improved support for reserving an app id that is a canonicalized version of
597   a user's Gmail address.
598     http://code.google.com/p/googleappengine/issues/detail?id=1196
599 - Added a more useful error messages for unavailable App Ids.
600     http://code.google.com/p/googleappengine/issues/detail?id=1303
601 - The SDK now uses hashlib instead of sha. Python 2.4 is no longer supported.
602     http://code.google.com/p/googleappengine/issues/detail?id=1334
603 - Fixed an issue where images.composite() did not support PNG transparency in
604   the SDK.
605     http://code.google.com/p/googleappengine/issues/detail?id=1417
606 - Added better error messages for cron.yaml parsing.
607     http://code.google.com/p/googleappengine/issues/detail?id=1490
608 - Fixed an issue where uploading an index.yaml file with DOS line endings
609   caused an error.
610     http://code.google.com/p/googleappengine/issues/detail?id=1548
611 - Fixed an issue where unicode characters in a script caused an error.
612     http://code.google.com/p/googleappengine/issues/detail?id=1675
613 - Task Queue names can now include the "_" character.
614     http://code.google.com/p/googleappengine/issues/detail?id=1723
615 - The sender of an email is no longer BCC'd when they are already included in
616   the email.
617     http://code.google.com/p/googleappengine/issues/detail?id=1907
618 - Fixed an issue where non-string types were interpreted as strings when
619   parsing the index.yaml file.
620     http://code.google.com/p/googleappengine/issues/detail?id=2158
621 - Image API now supplies image format.
622     http://code.google.com/p/googleappengine/issues/detail?id=2308
623 - Fixed webapp.request.get_range to work with default=None.
624     http://code.google.com/p/googleappengine/issues/detail?id=2363
625 - Added a more helpful error message when trying to send email to a malformed
626   address.
627     http://code.google.com/p/googleappengine/issues/detail?id=2386
628 - The SDK now returns an error if the Content-length header is not included in a
629   post request, matching production.
630     http://code.google.com/p/googleappengine/issues/detail?id=2512
631 - Fixed an issue using URLFetch to fetch pages where the URL contained unicode.
632     http://code.google.com/p/googleappengine/issues/detail?id=2670
633 - Fixed an issue where the SDK looked in the wrong folder for the SDK Version
634   file.
635     http://code.google.com/p/googleappengine/issues/detail?id=3050
636 - Fixed a webapp.Request get() issue where the default was not being properly
637   returned when allow_multiple was set to True.
638     http://code.google.com/p/googleappengine/issues/detail?id=3235
639 - Fixed an issue where handler.get_url did not work for non-default versions of
640   Django.
641     http://code.google.com/p/googleappengine/issues/detail?id=3300
642 - Fixed an issue where X-AppEngine-TaskRetryCount did not increment in the SDK.
643     http://code.google.com/p/googleappengine/issues/detail?id=3501
644 - Applied a user patch that partially fixed an issue where bulkloader resume
645   was not working.
646     http://code.google.com/p/googleappengine/issues/detail?id=3581
647 - Fixed a logging issue with the SDK BlobImageDispatcher.
648     http://code.google.com/p/googleappengine/issues/detail?id=3606
649 - ListProperty now supports datetime.time and datetime.date, as documented.
650     http://code.google.com/p/googleappengine/issues/detail?id=3818
651 - Fixed an issue where the Content-length header was being incorrectly stored as
652   an integer.
653     http://code.google.com/p/googleappengine/issues/detail?id=3875
654 - Fixed an issue where the Admin Console didn't keep the app version viewed
655   consistent across actions.
656     http://code.google.com/p/googleappengine/issues/detail?id=4023
657 - Fixed an issue using os.environ in appengine_config.py in the SDK.
658     http://code.google.com/p/googleappengine/issues/detail?id=4209
659 - Fixed an issue where HTTP requests on the SDK where truncated if a semicolon
660   was included in the request.
661     http://code.google.com/p/googleappengine/issues/detail?id=4241
662 - Fixed an issue where images.get_serving_url() did not handle blob_info.key()
663   correctly.
664     http://code.google.com/p/googleappengine/issues/detail?id=4346
665 - Fixed an issue where checking for a new version caused the appcfg download_app
666   command to fail.
667     http://code.google.com/p/googleappengine/issues/detail?id=4553
668 - Fixed a typo in the Admin Console on the New App page.
669     http://code.google.com/p/googleappengine/issues/detail?id=4620
670 - Return a better error when a ReferenceProperty fails to resolve.
671     http://code.google.com/p/googleappengine/issues/detail?id=4626
672 - Fixed an issue where sending mail from an app registered on the HR datastore
673   required the app id be prefaced with s~.
674     http://code.google.com/p/googleappengine/issues/detail?id=4671
675 - Fixed an issue where URLFetch with urllib over HTTPS didn't work.
676     http://code.google.com/p/googleappengine/issues/detail?id=4824
679 Version 1.4.3
680 =================================
681 - Added Files API that allows writing to and reading from files in blobstore.
682 - You can now specify cron execution for a time interval between a start and end
683   time.
684 - You can now configure the specific application version to which a task queue
685   or cron job will send requests.
686 - The Admin Console Task Queues page now displays a more accurate estimate of
687   queue size for queues containing more than 2000 tasks.
688 - The Prospective Search API (formerly named the Matcher API) is available for
689   use by all applications. This API is still experimental, so applications will
690   be limited to a maximum of 1000 subscriptions.
691 - The Testbed API provides easy configuration of stub libraries for local
692   integration tests.
693 - In the Images API, the quality parameter was added to the resize, rotate,
694   horizontal_flip, vertical_flip, crop and im_feeling_lucky methods.
695 - Fixed an issue where static file serving in the dev_appserver didn't support
696   etags.
697     http://code.google.com/p/googleappengine/issues/detail?id=368
698 - An error is now raised when the script mapping in the app.yaml file is missing
699   the .py file extension.
700     http://code.google.com/p/googleappengine/issues/detail?id=976
701 - Fixed an issue where no link was displayed in the Admin Console blobstore
702   viewer for an unnamed blob.
703 - Fixed an issue where the Admin Console data viewer couldn't edit entities
704   with ByteString properties.
705     http://code.google.com/p/googleappengine/issues/detail?id=2367
706 - Fixed an issue where the Admin Console crashed when using a non-ascii
707   key_name.
708     http://code.google.com/p/googleappengine/issues/detail?id=2451
709 - Fixed an issue filtering on __key__ while using the --use_sqlite option with
710   the dev_appserver.
711     http://code.google.com/p/googleappengine/issues/detail?id=3232
712 - The Disable Application admin function has been button-ized.
713     http://code.google.com/p/googleappengine/issues/detail?id=4323
714 - Fixed an SDK issue where debugging logging wouldn't correctly print URLFetch
715   payloads.
716     http://code.google.com/p/googleappengine/issues/detail?id=783
717 - Fixed an SDK issue where an incompatible line ending was used on blob upload.
718     http://code.google.com/p/googleappengine/issues/detail?id=3328
719 - Added more graceful handling of the missing mapreduce.yaml file when the user
720   has enabled the Datastore Admin but is not otherwise using the MapReduce
721   framework.
722     http://code.google.com/p/googleappengine/issues/detail?id=3903
723 - Fixed an issue where the method webapp_add_wsgi_middleware was no longer
724   recognized.
725     http://code.google.com/p/googleappengine/issues/detail?id=4236
727 Version 1.4.2
728 ================================
729 - The XMPP API was updated to include presence and allow subscriptions.
730 - The Task Queue now supports programmatic deleting of tasks.
731     http://code.google.com/p/googleappengine/issues/detail?id=2588
732 - The maximum rate per queue at which tasks are processed has been increased to
733   100 tasks per second.
734 - The maximum number of concurrent requests for a single queue can be specified
735   in the application's queue.yaml. This provides an additional easy-to-use form
736   of rate limiting. The current number of running tasks is also displayed in
737   the Admin Console.
738 - Metadata queries in the Datastore now support cursors.
739 - Admin Console logs viewer now displays time as YYYY-MM-DD HH:MM:SS.mmm.
740 - The Mail API added KML and KMZ files as allowed attachments.
741 - Added support for verifying the server SSL certificate when making a
742   URLFetch request to an HTTPS URL. This will become the default in a future
743   release.
744 - Added a warning when an admin tries to upload a queue.yaml where the number
745   of new queues and the number of disabled queues exceeds 100.
746 - Django 1.2.5 is available via use of the use_library() declaration. This
747   version of Django has also been added to the Python SDK.
748 - Added builtin support for the deferred library.
749 - If Python Precompilation fails, an error will be printed but the app will
750   still be uploaded.
751 - Added a --disable_sdk_update_check command line flag to the dev_appserver.
752 - Fixed an issue where the datastore copy functionality did not work if writes
753   were disabled on the source application.
754 - Fixed an issue where mail from @appid.appspotmail.com did not work when
755   sending mail to app admins.
756 - Fixed an issue where the dev_appserver URLFetch API limit was 16MB. It is now
757   32 MB to match production.
758 - Fixed a zipimport issue on Windows which was not working due to path
759   separators.
760     http://code.google.com/p/googleappengine/issues/detail?id=2086
761 - Fixed an issue where the SDK did not enforce the 100 task limit for the Task
762   Queue.
763     http://code.google.com/p/googleappengine/issues/detail?id=3296
764 - Fixed an issue where Query.order() was broken for properties with the 'name'
765   attribute.
766     http://code.google.com/p/googleappengine/issues/detail?id=3693
767 - Fixed an unhelpful error message in the Python namespace_manager.
768     http://code.google.com/p/googleappengine/issues/detail?id=3931
771 Version 1.4.1
772 ================================
773 - During application creation, developers can choose between two Datastore
774   configurations: High Replication or Master/Slave.
775     http://code.google.com/appengine/docs/python/datastore/hr/#Selecting_a_Datastore
776 - You can set your application's datastore to read-only mode in the Admin
777   Console. Any writes attempted while the app is set to read-only will throw a
778   CapabilityDisabledError. This feature can be helpful for migrating or copying
779   data between two applications.
780     http://code.google.com/appengine/docs/adminconsole/applicationsettings.html#Disable_Datastore_Writes
781 - The Datastore Admin tool has been updated to allow copying of one app's
782   datastore to another. The destination app must have the Remote API enabled.
783     http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html
784 - The deadline for offline URL Fetch API requests for Python and Java have been
785   increased to a maximum of 10 minutes. The default deadline for offline
786   URL Fetch requests remains the same.
787 - Fixed an issue where an AttributeError was occasionally thrown on a datastore
788   query.
789     http://code.google.com/p/googleappengine/issues/detail?id=4196
791 Version 1.4.0
792 ================================
793 - The Always On feature allows applications to pay and keep 3 instances of their
794   application always running, which can significantly reduce application
795   latency.
796 - Developers can now enable Warmup Requests. By specifying  a handler in an
797   app's app.yaml, App Engine will attempt to send a Warmup Request to initialize
798   new instances before a user interacts with it. This can reduce the latency an
799   end-user sees for initializing your application.
800 - The Channel API is now available for all users.
801 - Task Queue has been officially released, and is no longer an experimental
802   feature. The API import paths that use 'labs' have been deprecated. Task queue
803   storage will count towards an application's overall storage quota, and will
804   thus be charged for.
805 - The deadline for Task Queue and Cron requests has been raised to 10 minutes.
806   Datastore and API deadlines within those requests remain unchanged.
807 - For the Task Queue, developers can specify task retry_parameters in their
808   queue.yaml.
809 - Apps that have enabled billing are allowed up to 100 queues with the Task
810   Queue API.
811 - Metadata Queries on the datastore for datastore kinds, namespaces, and entity
812   properties are available.
813 - URLFetch allowed response size has been increased, up to 32 MB. Request size
814   is still limited to 1 MB.
815 - The request and response sizes for the Images API have been increased to
816   32 MB.
817 - The total size of Memcache batch operations is increased to 32 MB. The 1 MB
818   limit on individual Memcache objects still applies.
819 - The attachment size for outgoing emails has been increased from 1 MB to 10 MB.
820   The size limit for incoming emails is still 10 MB.
821 - Size and quantity limits on datastore batch get/put/delete operations have
822   been removed. Individual entities are still limited to 1 MB, but your app may
823   batch as many entities together for get/put/delete calls as the overall
824   datastore deadline will allow for.
825 - When iterating over query results, the datastore will now asynchronously
826   prefetch results, reducing latency in many cases by 10-15%.
827 - The Admin Console Blacklist page lists the top blacklist rejected visitors.
828 - The automatic image thumbnailing service supports arbitrary crop sizes up to
829   1600px.
830 - Overall average instance latency in the Admin Console is now a weighted
831   average over QPS per instance.
832 - The developer who uploaded an app version can download that version's code
833   using the appcfg.py download_app command. This feature can be disabled on
834   a per application basis in the admin console, under the 'Permissions' tab.
835   Once disabled, code download for the application CANNOT be re-enabled.
836 - Fixed an issue where custom Admin Console pages did not work for Google
837   Apps for your Domain users.
838 - In the Python runtime, an instance is killed and restarted when a request
839   handler hits DeadlineExceededError. This should fix an issue related to
840   intermittent SystemErrors using Django.
841     http://code.google.com/p/googleappengine/issues/detail?id=772
842 - Allow Django initialization to be moved to appengine_config.py to avoid
843   Django version conflicts when mixing webapp.template with pure Django.
844     http://code.google.com/p/googleappengine/issues/detail?id=1758
845 - Fixed an issue with OpenId over SSL.
846   http://code.google.com/p/googleappengine/issues/detail?id=3393
847 - Fixed an issue on the dev_appserver where login/logout code didn't work using
848   Python 2.6.
849     http://code.google.com/p/googleappengine/issues/detail?id=3566
850 - Fixed an issue in the dev_appserver where get_serving_url did not work
851   for transparent, cropped PNGs:
852     http://code.google.com/p/googleappengine/issues/detail?id=3887
853 - Fixed an issue with the DatastoreFileStub.
854     http://code.google.com/p/googleappengine/issues/detail?id=3895
856 Version 1.3.8
857 ==================================
858 - Builtin app.yaml handlers are available for common application functions,
859   such as appstats.
860     http://code.google.com/appengine/docs/python/config/appconfig.html#Builtin_Handlers
861 - The Admin Console now provides an experimental tool to delete all entities in
862   the datastore or all entities of a given type. This is available only if
863   enabled using the datastore_admin builtin. Deleting entities will count
864   against application quota.
865     http://code.google.com/appengine/docs/python/datastore/creatinggettinganddeletingdata.html#Deleting_Entities_in_Bulk
866 - You can run task queue tasks immediately from the Admin Console.
867 - You can now specify the quality of JPEG images via the Image API's
868   execute_transforms function. Available in production only.
869 - Support for login of multiple Google accounts within an app, and longer login
870   sessions. For more information see:
871     http://www.google.com/support/accounts/bin/answer.py?answer=181599
872 - In queue.yaml, the maximum allowed bucket size is now 100.
873 - Precompilation is now enabled by default. To disable, use the
874   --no_precompilation flag when updating your app.
875 - BlobInfo now has an open() method that returns a BlobReader.
876 - BlobReader now accepts a BlobInfo.
877 - Removed limits on zigzag merge-join queries. Therefore the error "The built-in
878   indices are not efficient enough for this query and your data. Please add a
879   composite index for this query." will no longer be thrown in most cases,
880   enabling more types of queries without indexes.
881 - Fixed an issue with task queue tasks not running on the dev_appserver when
882   using Python 2.6.
883 - Fixed an issue on the dev_appserver where auto task running wasn't working for
884   BulkAdd.
885 - Fixed an issue reserving App Ids by owners of similarly-named mails accounts
886   containing periods, multiple cases, and googlemail.com address.
887     http://code.google.com/p/googleappengine/issues/detail?id=1196
888 - Fixed an issue on the development server where PNGs were being returned as
889   JPEGs.
890     http://code.google.com/p/googleappengine/issues/detail?id=3661
892 Version 1.3.7
893 ===============================
894 - Fix an issue where namespace_manager.google_apps_namespace() was not included
895   in the 1.3.6 release.
897 Version 1.3.6
898 =================================
899 - Multitenancy is now supported in the datastore, allowing better
900   compartmentalization of user data.
901 - Automatic image thumbnailing is now available in the Images API using
902   get_serving_url().
903 - Users can now serve custom static error pages for over_quota, dos_api_denial
904   and default cases.
905 - Results of datastore count() queries and offsets for all datastore queries
906   are no longer capped at 1000.
907 - Added a pause queue button to the task queue details page in the Admin
908   Console.
909 - Historical graphs have been added to all of the dashboard graphs in the Admin
910   Console.
911 - Content-range headers are supported on Blobstore downloads.
912 - Remote API now supports the Blobstore API.
913 - New method to allocate datastore ids in a given range: db.allocate_id_range().
914 - New db method is_in_transaction() determines if a transaction is still open.
915 - Increased several rate limited quotas for free applications.
916 - Fixed an issue in db.py where unindexed property lists for user-specified
917   property names were ignored.
918 - Fixed an issue where the task queue uses local time instead of UTC time to
919   compute job ETA.
920     http://code.google.com/p/googleappengine/issues/detail?id=2508
921 - Fixed an issue in the SDK with datastore cursors being too large.
922     http://code.google.com/p/googleappengine/issues/detail?id=3152
924 Version 1.3.5
925 =================================
926 - Developers can enable Python pre-compilation to decrease start up time for
927   new application instances. This can be enabled by including the
928   derived_file_type in your app.yaml.
929 - Ability to configure the Task Queue storage limit with the
930   total_storage_limit field in the queue.yaml file.
931 - Task Queues now support up to 50 qps per queue, up from 50 qps per app.
932 - Developers can programmatically access Blobs with BlobReader, a file-like
933   interface for reading blobs.
934 - Bulkloader transform helpers for lists and hierarchical keys were added.
935 - remote_api_shell commands can be sent over HTTPS or HTTP.
936 - Admin Console logs now include information on request time latency.
937 - Db.delete will now accept an iterable, in addition to a list of models or
938   keys.
939 - The datastore now supports end cursors.
940 - Fixed an issue properly handling a query with an offset that returns no
941   results.
942 - Fixed an issue that improperly allowed quad-dotted netmasks as subnet prefixes
943   for the DoS API.
944 - Fixed an issue via user submitted patch in the SDK dataviewer displaying
945   multiline StringProperties.
946     http://code.google.com/p/googleappengine/issues/detail?id=502
948 Version 1.3.4
949 =================================
950 - New bulkloader configuration syntax and wizard for easier import/export with
951   the datastore.
952 - Applications can now be configured to authenticate with OpenID by selecting
953   the OpenID option when creating your application in the admin console.
954     http://code.google.com/p/googleappengine/issues/detail?id=248
955     http://code.google.com/p/googleappengine/issues/detail?id=56
956 - New API to allow App Engine apps to act as OAuth service providers.
957     http://code.google.com/p/googleappengine/issues/detail?id=919
958 - Auto task execution is now enabled in the dev_appserver. To turn this off
959   use the flag --disable_task_running.
960 - Fixed an issue using db.put() with constructor initialized id based keys.
961     http://code.google.com/p/googleappengine/issues/detail?id=3209
963 Version 1.3.3
964 =================================
965 - A new experimental feature allows you to set dev_appserver datastore file
966   stub to use sqlite. To enable, set the flag --use_sqlite=true.
967 - It is now possible to implement properties on db.Expando.
968 - Fixed a datastore issue where an error was thrown when setting a query offset
969   to more than the number of results throws an error.
970     http://code.google.com/p/googleappengine/issues/detail?id=2875
971 - Fixed issue not allowing ByteString type to be viewed in the Development
972   Console datastore viewer.
973     http://code.google.com/p/googleappengine/issues/detail?id=1176
975 Version 1.3.2
976 =================================
977 - New API to read the contents of uploaded Blobs (fetch_data)
978     http://code.google.com/p/googleappengine/issues/detail?id=2536
979 - URLFetch now supports accessing ports 80-90, 440-450, and 1024-65535
980 - Mail API now allows common document formats as attachments
981     http://code.google.com/p/googleappengine/issues/detail?id=494
982 - The Task Queue API now supports adding multiple tasks in a single call to
983   Queue.add()
984 - Fixed charset handling for inbound emails
985     http://code.google.com/p/googleappengine/issues/detail?id=2326
986 - Fixed issue with compositing background colors in dev_appserver
987 - New feature in the datastore to specify whether to use strong or eventually
988   consistent reads (the default is strong)
989 - New datastore feature allows setting deadlines for operations
990 - Increased the maximum Task Queue refill rate from 20/s to 50/s
991 - Support for IP blacklisting to prevent denial of service (DoS) attacks
992 - Fix an issue with Mac Launcher in Mac OSX 10.5.5
993     http://code.google.com/p/googleappengine/issues/detail?id=778
994 - Fix issue with slow updates when there are many skipped files
995     http://code.google.com/p/googleappengine/issues/detail?id=2492
996 - Fix issue with cursor not updating when using a GqlQuery
997     http://code.google.com/p/googleappengine/issues/detail?id=2757
999 Version 1.3.1
1000 ================================
1001   - Datastore Query Cursors
1002       http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Query_Cursors
1003   - Transactional Task Creation
1004   - Support for Custom Admin Console pages
1005   - New "month" and "synchronized" syntax for Cron configuration
1006       http://code.google.com/appengine/docs/java/config/cron.html
1007   - Application Stats library now included in with SDK
1008       http://code.google.com/appengine/docs/python/tools/appstats.html
1009   - Bulk Loader supports bulk downloading all kinds simultaneously
1010   - appcfg.py validates SSL certificates for HTTPS on Upload
1011   - Support for ETags, If-matches, If-not-matches HTTP Headers, as well as 304
1012     status codes now available on static files (not available on the
1013     dev_appserver or Blobstore blobs)
1014       http://code.google.com/p/googleappengine/issues/detail?id=575
1016 Version 1.3.0 - December 14, 2009
1017 ================================
1018   - Adds support for the new Blobstore API
1020 Version 1.2.8 - October 28, 2009
1021 ================================
1022   - New memcache offset_multi method and batch support in incr and decr.
1023   - Urlfetch Response object now contains final_url of 302 redirects.
1024       http://code.google.com/p/googleappengine/issues/detail?id=1464
1025   - Additional file extensions permitted when sending mail.
1026       http://code.google.com/p/googleappengine/issues/detail?id=494
1027   - Fixed issue decoding messages for incoming mail.
1028       http://code.google.com/p/googleappengine/issues/detail?id=2289
1029   - Fixed issue with datastore list properties containing both blob (or text)
1030     and non-blob values.
1031   - Admin console includes more information about indexes being built.
1032   - Fixed Users API usage with remote_api
1033       http://code.google.com/p/googleappengine/issues/detail?id=1205
1034   - Fixed issue with IN queries in remote_api
1035       http://code.google.com/p/googleappengine/issues/detail?id=1986
1036   - Bulk Loader --dump and --restore now work across app IDs.
1037   - Bulk Loader --restore works with numeric IDs.
1038   - Bulk Loader exporter maps __key__ property to the entity key.
1039   - Fixed issue in Bulk Loader with missing properties on export.
1040       http://code.google.com/p/googleappengine/issues/detail?id=2068
1041   - Fixed issue in Bulk Loader with line breaks in data.
1042   - Fixed exception in Bulk Loader with certain data ranges.
1043       http://code.google.com/p/googleappengine/issues/detail?id=2085
1044   - Added SERVER_SOFTWARE environment variable to runtime.
1045   - Over Quota HTTP status code changed from 403 to 503
1046       http://code.google.com/p/googleappengine/issues/detail?id=961
1047   - Task Queue now considers all HTTP 2xx status codes to represent success
1048       http://code.google.com/p/googleappengine/issues/detail?id=1779
1049   - Task Queue now supports purging all tasks in a queue from the Admin Console.
1050       http://code.google.com/p/googleappengine/issues/detail?id=2159
1051   - Task Queue now supports deleting a non-empty queue from the Admin Console.
1052       http://code.google.com/p/googleappengine/issues/detail?id=1740
1053   - New "auth_fail_action: unauthorized" option in app.yaml: when present, a
1054     401 status code will be returned instead of a 302 redirect to the Google
1055     Accounts login page for pages with login: required. [Python only for now]
1058 Version 1.2.7 - October 14, 2009
1059 ================================
1060   - Changed the 'key' parameter to Model.__init__ to be keyword only.
1061   - Fixed taskqueue import in Remote API.
1062     http://code.google.com/p/googleappengine/issues/detail?id=2259
1065 Version 1.2.6 - September 17, 2009
1066 ==================================
1067   - Added incoming email support.
1068       http://code.google.com/p/googleappengine/issues/detail?id=165
1069   - Remote API now supports XMPP and task queues.
1070   - The default for all handlers is now secure: optional. Users can
1071     now access all pages via SSL unless explicitly disallowed.
1072   - Remote API now supports HTTPS.
1073       http://code.google.com/p/googleappengine/issues/detail?id=1461
1074   - Appcfg now uses https by default.
1075       http://code.google.com/p/googleappengine/issues/detail?id=794
1076   - Appcfg.py now supports the --application and --version flags to
1077     override the values specified in app.yaml.
1078       http://code.google.com/p/googleappengine/issues/detail?id=670
1079   - GQL now supports '= NULL' queries.
1080   - The db.Model constructor now supports explicitly setting a key
1081     (and thus an id) for a Model instance.
1082   - New Datastore stats api. Stats are also visible in the admin console.
1083   - Bulkloader dump and restore now supports restoring to a different
1084     app id and restoring numeric keys.
1087 Version 1.2.5 - August 13, 2009
1088 ===============================
1089   - The Windows Python SDK now includes a GUI launcher, similar to the Mac SDK.
1090   - Added XMPP support.
1091       http://code.google.com/appengine/docs/python/xmpp
1092       http://code.google.com/p/googleappengine/issues/detail?id=231
1093   - Datastore now supports multiple writes to the same entity within a
1094     transaction.
1095   - Datastore entity key names can now start with a digit.
1096       http://code.google.com/p/googleappengine/issues/detail?id=1352
1097   - Datastore now supports ancestor + kind queries without a composite index
1098       http://code.google.com/p/googleappengine/issues/detail?id=1003
1099   - Bulkloader now supports configurationless dump and restore with new
1100     --dump and --restore options.
1101   - Bulkloader now supports a --dry_run flag to testing data prior to uploading.
1102   - Appcfg.py now allows specifying any end date for request_logs.
1103   - Urlfetch now allows setting the Referer header.
1104       http://code.google.com/p/googleappengine/issues/detail?id=445
1105   - Urlfetch stub now correctly handles HEAD requests.
1106       http://code.google.com/p/googleappengine/issues/detail?id=866
1107   - New remote_api_shell tool for interactive remote_api operations.
1108   - New google.ext.ereporter module to collect and email exception reports.
1109   - New google.ext.deferred module to execute ad-hoc tasks on the Task Queue.
1111 Version 1.2.4 - July 16, 2009
1112 =============================
1113   - Added support for kindless queries, ie. transaction descendant queries.
1114       http://code.google.com/p/googleappengine/issues/detail?id=913
1115   - Composite indexes no longer required for certain types of key queries.
1116   - Improved exception reporting in the bulkloader.
1117   - Datastore transaction RPC sent at beginning of transaction rather than
1118     upon first Datastore request.
1119   - PolyModel supports keys_only query.
1120       http://code.google.com/p/googleappengine/issues/detail?id=1630
1121   - Remote API supports more API's (Images, Memcache and URLFetch).
1122       http://code.google.com/p/googleappengine/issues/detail?id=1596
1123   - Remote API shell.
1124   - Support for multiple inheritance for Model and PolyModel.
1125   - Enhancement to SearchableModel allowing multiple properties to be
1126     indexed.
1127   - Various code quality improvements.
1129 Version 1.2.3 - June 1, 2009
1130 ============================
1132   - Task Queue support available as google.appengine.api.labs.taskqueue.
1133       http://code.google.com/appengine/docs/python/taskqueue
1134   - Django 1.0 support. You must install Django locally on your machine
1135     for the SDK but no longer need to upload it to App Engine.
1136       from google.appengine.dist import use_library
1137       use_library('django', '1.0')
1138       http://code.google.com/p/googleappengine/issues/detail?id=872
1139   - Urlfetch supports asynchronous requests.
1140       http://code.google.com/p/googleappengine/issues/detail?id=958
1141   - Urlfetch in SDK now matches App Engine more closely:
1142     By default, it now sets the referer header, does not set the Accept
1143     header, and sets Accept-Encoding to gzip.
1144       http://code.google.com/p/googleappengine/issues/detail?id=970
1145   - Fixed issue with httplib and absolute URLs.
1146       http://code.google.com/p/googleappengine/issues/detail?id=1311
1147   - Memcache key length is no longer restricted to 250 bytes: longer keys
1148     will be replaced with a hash of the key.
1149   - Datastore ancestor queries now work within transactions.
1150   - Datastore transactions in SDK now snapshot on the first operation so they
1151     do not see writes made during the transaction. Matches App Engine.
1153 Version 1.2.2 - April 22, 2009
1154 ==============================
1156   - New quota API which returns the CPU usage of the current request.
1157       from google.appengine.api import quota
1158       cpu_usage_so_far = quota.get_request_cpu_usage()
1159   - Urlfetch fetch now has support for user configurable deadlines.
1160       http://code.google.com/p/googleappengine/issues/detail?id=79
1161   - Urlfetch in the SDK allows the Accept-Encoding header to match App Engine.
1162       http://code.google.com/p/googleappengine/issues/detail?id=1071
1163   - urllib now supports HTTPS in addition to HTTP
1164       http://code.google.com/p/googleappengine/issues/detail?id=1156
1165   - Datastore indexes on single properties can now be disabled by setting
1166     indexed=False on the property constructor.
1167   - Datastore now supports Key-only queries, using either SELECT __key__ or
1168     or db.Query(Model, keys_only=True)
1169   - Fixed issues with Datastore IN filters and sorting: sort order is now
1170     correct, and can be used with __key__.
1171       http://code.google.com/p/googleappengine/issues/detail?id=1100
1172       http://code.google.com/p/googleappengine/issues/detail?id=1016
1173   - Cron supports additional time specification formats.
1174       http://code.google.com/p/googleappengine/issues/detail?id=1261
1175   - Fixed an issue in the dev_appserver admin console datastore viewer
1176     (/_ah/admin/datastore) with sorting columns containing None types.
1177       http://code.google.com/p/googleappengine/issues/detail?id=1007
1178   - Bulk Loader improvements:  New appcfg download_data command.
1179     Better backoff support and debugging output for long requests.
1180   - New --vhost flag on appcfg.py request_logs command to select logs for
1181     a particular host.
1182   - Python _ast module is now available for import
1183       http://code.google.com/p/googleappengine/issues/detail?id=779
1184   - Fixed issue with the color argument of the Images API composite method.
1186 Version 1.2.1 - April 13, 2009
1187 =============================
1189   - Stable, unique IDs for User objects. The Users service now
1190     provides a unique user_id for each user that stays the same even
1191     if a user changes her email address.
1192       http://code.google.com/p/googleappengine/issues/detail?id=1019
1193   - The Images API now supports compositing images and calculating
1194     a color histogram for an image.
1195   - New allowed mail attachment types: ics, vcf
1196       http://code.google.com/p/googleappengine/issues/detail?id=494
1197   - Urlfetch requests can now set the User-Agent header.
1198       http://code.google.com/p/googleappengine/issues/detail?id=342
1199   - An App Engine-specific version of the Python PyCrypto cryptography
1200     library is now available. Learn more at
1201       http://code.google.com/appengine/docs/python/tools/libraries.html
1202   - The bulk loader configuration format has changed.to allow non-CSV
1203     input. This change is not backwards compatible, so you will need to
1204     update your code.
1205     An early release of the bulk downloader is also now available in
1206     bulkloader.py. Learn more about these changes at:
1207       http://code.google.com/appengine/docs/python/tools/uploadingdata.html
1208   - Fixed parsing of unicode GQL queries.
1209       http://code.google.com/p/googleappengine/issues/detail?id=1105
1210   - Fixed dev_appserver security restrictions for os.path
1211       http://code.google.com/p/googleappengine/issues/detail?id=1068
1212   - Fixed Reply-To header set in emails sent from dev_appserver.
1213       http://code.google.com/p/googleappengine/issues/detail?id=1017
1216 Version 1.2.0 - March 24, 2009
1217 ==============================
1218   - Cron support. Appcfg.py will upload the schedule to App Engine.
1219       The dev_appserver console at /_ah/admin describes your schedule but does
1220       not automatically run scheduled jobs. Learn more at
1221       http://code.google.com/appengine/docs/python/config/cron.html
1222   - New allow_skipped_files flag in dev_appserver to allow it to read files
1223     which are not available in App Engine.
1224       http://code.google.com/p/googleappengine/issues/detail?id=550
1225   - New upload_data command in appcfg to run the bulk uploader.
1226       http://code.google.com/appengine/docs/python/tools/uploadingdata.html
1228 Version 1.1.9 - February 2, 2009
1229 ================================
1231   - HTTP Request and Response limit raised to 10MB from 1MB.
1232     Note that API call limits remain at 1MB.
1233       http://code.google.com/p/googleappengine/issues/detail?id=78
1234   - urllib and urllib2 now available, implemented using urlfetch.
1235     Also adds additional stubs which may enable other modules.
1236       http://code.google.com/p/googleappengine/issues/detail?id=61
1237       http://code.google.com/p/googleappengine/issues/detail?id=68
1238       http://code.google.com/p/googleappengine/issues/detail?id=572
1239       http://code.google.com/p/googleappengine/issues/detail?id=821
1240   - Early release of a new data bulk upload tool, bulkloader.py
1241       http://code.google.com/appengine/docs/python/tools/uploadingdata.html
1242   - New remote_api for datastore at google.appengine.ext.remote_api
1243   - Single property descending indexes are automatically generated.
1244   - Added db.Query support for IN and != operators.
1245       http://code.google.com/p/googleappengine/issues/detail?id=751
1246   - Fixed issue where gql date/time parsing could not handle Unicode strings.
1247   - Fixed issue with db model instance key() returning the wrong key for
1248     unsaved instances with parent as key
1249       http://code.google.com/p/googleappengine/issues/detail?id=883
1250   - New run_in_transaction_custom_retries method for datastore.
1251   - Fixed issue with relative dev_appserver datastore and history paths.
1252       http://code.google.com/p/googleappengine/issues/detail?id=845
1253   - Static files and skipped files are not readable in dev_appserver, to match
1254     the behavior on App Engine.
1255       http://code.google.com/p/googleappengine/issues/detail?id=550
1256   - Images API allows multiple transforms of the same type in one request. A
1257     limit of 10 total transforms per request has been added.
1258   - PIL import will work with both PIL.Image and Image.
1259       http://code.google.com/p/googleappengine/issues/detail?id=929
1260   - Fixed an issue with sending email in dev_appserver when the application
1261     code changed.
1262       http://code.google.com/p/googleappengine/issues/detail?id=182
1263   - Memcache counters (incr/decr) do nothing on non positive integers to match
1264     the behavior on App Engine.
1265       http://code.google.com/p/googleappengine/issues/detail?id=918
1267 Version 1.1.8 - January 7, 2008
1268 =================================
1269   - Skip_files RegexStr validator allows lists to for regex-ors.
1270       http://code.google.com/p/googleappengine/issues/detail?id=81
1271   - sys.path and sys.argv are no longer reset for each request.
1272       http://code.google.com/p/googleappengine/issues/detail?id=772
1273   - New ByteString data type for the datastore.  Indexed non-text short-blob.
1274   - UserProperty now takes auto_current_user and auto_current_user_add
1275     attributes.
1276   - Support for polymorphic models and queries.
1277   - db.Model.order() now supports __key__.
1278       http://code.google.com/p/googleappengine/issues/detail?id=884
1279   - Urlfetch no longer sets content-length: 0 when there is no body.
1280       http://code.google.com/p/googleappengine/issues/detail?id=817
1281   - Get height and width of an image via the Images API.
1282       http://code.google.com/p/googleappengine/issues/detail?id=435
1283   - Limit auto-Bcc of email sender to the case where the email sender is the
1284     currently-logged-in user.
1285   - Adds limit of 100 order/filters on datastore query size to the SDK.
1286   - Fix unicode support for the bulkloader
1287       http://code.google.com/p/googleappengine/issues/detail?id=157
1288   - Bulkload.py from the appengine/tools directory to the appengine/ directory
1289   - Modify webapp to use logging.exception instead of logging.error.
1290   - Additional fixes to SDK sanitizing response headers to match production.
1291       http://code.google.com/p/googleappengine/issues/detail?id=198
1293 Version 1.1.7 - November 20, 2008
1294 =================================
1295   - Fixed an issue with urlfetch response headers.
1296       http://code.google.com/p/googleappengine/issues/detail?id=877
1298 Version 1.1.6 - November 17, 2008
1299 =================================
1301   - Datastore now supports filtering and sorting on the __key__ special
1302     property, which evaluates to each entity's key.
1303   - Fixed a bug where it was possible to append None to ListProperty.
1304   - Datastore appengine.ext.db models allow deletion by key without
1305     instantiating a model instance.
1306   - Datastore models allow access to key name before put() if key_name given.
1307   - Datastore fetch max results and max query offset match production limits.
1308   - Fixed an issue in production where query fails with NeedIndexError when
1309     a model has two ancestor indexes.
1310     http://code.google.com/p/googleappengine/issues/detail?id=423
1311   - Allow trailing whitespace in PropertyValueFromString for datetime.
1312   - Fixed to_xml on models with binary data in a BlobProperty: they now
1313     are base64 encoded.
1314     Note: This changes XML serialization.
1315       http://code.google.com/p/googleappengine/issues/detail?id=430
1316   - Fixed an issue with setting expando attributes.
1317       http://code.google.com/p/googleappengine/issues/detail?id=431
1318   - Fixed an issue where TypeError was raised instead of NeedIndexError for
1319     "merge join" queries, i.e. queries with only equals filters and no ancestor
1320     or sort orders, that still need an index.
1321       http://code.google.com/p/googleappengine/issues/detail?id=749
1322   - URLFetch in the SDK now has the same 5 second timeout to match production.
1323   - URLFetch response headers are combined
1324       http://code.google.com/p/googleappengine/issues/detail?id=412
1325   - URLFetch now uses original method when following a redirect.
1326       http://code.google.com/p/googleappengine/issues/detail?id=363
1327   - URLFetch logs a warning when using a non standard port.
1328       http://code.google.com/p/googleappengine/issues/detail?id=436
1329   - URLFetch allows integers as values in request headers.
1330   - Enforce response size and API request size limits to match production.
1331       http://code.google.com/p/googleappengine/issues/detail?id=447
1332   - SDK sanitizes response headers to match production
1333       http://code.google.com/p/googleappengine/issues/detail?id=198
1334   - Login URLs now require login in the SDK to match production.
1335       http://code.google.com/p/googleappengine/issues/detail?id=53
1336   - Fixed an issue with long URLs in HTTP 302 redirect responses.
1337       http://code.google.com/p/googleappengine/issues/detail?id=407
1338   - Fixed an issue with regular expressions in static_files in app.yaml
1339       http://code.google.com/p/googleappengine/issues/detail?id=711
1340   - SDK only allows "C" locale to match production.
1341       http://code.google.com/p/googleappengine/issues/detail?id=356
1342   - Support the bufsize positional arg in open()/file().
1343   - lstat is aliased to stat.
1344   - appcfg handles index building errors more gracefully.
1345   - Fixed an issue with symlinks in the path to the Python core libraries.
1348 Version 1.1.5 - September 29, 2008
1349 ==================================
1351   - Additional fixes for file paths on Windows and OSX.
1352   - Sped up the datastore stub.
1353   - Allow different types in list properties in datastore.Entity and Expando.
1354   - Add add_multi and replace_multi to memcache API.
1355       http://code.google.com/appengine/docs/memcache/clientclass.html#Client_add_multi
1356       http://code.google.com/appengine/docs/memcache/clientclass.html#Client_replace_multi
1357   - Ignore errors from the API proxy when calling memcache read methods.
1358   - Set the webapp Request charset property more accurately from CONTENT_TYPE.
1359   - Fixed an issue in the development console with schema caching.
1360   - Fixed an issue with StringListProperty not returning a class
1361       http://code.google.com/p/googleappengine/issues/detail?id=415
1362   - Fixed an issue in the development console where quotes couldn't be used
1363       within fields.
1364   - Fixed an issue with TimeProperty("0:0") (midnight).
1365       http://code.google.com/p/googleappengine/issues/detail?id=279
1367 Version 1.1.4 - September 26, 2008
1368 ==================================
1370   - Fixed issue with incorrectly escaping static_files paths on Windows.
1371   - Workaround -inf not being supported on Windows in Datastore.
1373 Version 1.1.3 - September 8, 2008
1374 =================================
1376   - Added support for zipimport.
1377       http://code.google.com/p/googleappengine/issues/detail?id=70
1378       http://code.google.com/p/googleappengine/issues/detail?id=161
1379   - Added zipserve module for serving static content from a zip file.
1380       See google/appengine/ext/zipserve/__init__.py for more information.
1381   - Added a memcache viewer to the development console.
1382       http://code.google.com/appengine/docs/thedevwebserver.html#The_Development_Console
1383   - Added new follow_redirects flag to the URLFetch service.
1384       http://code.google.com/p/googleappengine/issues/detail?id=404
1385   - Fixed caching headers for static content.
1386   - Fixed an issue with incorrectly escaping paths on Windows.
1387   - Fixed an issue with the current directory while running applications.
1389 Version 1.1.2 - August 20, 2008
1390 ===============================
1392   - Batch puts across Datastore entity groups.
1393   - Transaction retries reduced from 10 to 3.
1394   - Fixed certain transaction failures being silent.
1395   - Added support for indexes with a single repeated property.
1397 Version 1.1.1 - July 21, 2008
1398 =============================
1400   - Fixed DELETE for URLFetch on dev_appserver.
1401       http://code.google.com/p/googleappengine/issues/detail?id=566
1402   - Fixed PATH_INFO to be un-escaped version of the path.
1403       http://code.google.com/p/googleappengine/issues/detail?id=267
1404       http://code.google.com/p/googleappengine/issues/detail?id=457
1405   - Fixed order function testing for property on Expando class.
1406   - Support all mail attachment mime-types under Windows.
1407   - Added support for date and time objects to GQL.
1408       http://code.google.com/p/googleappengine/issues/detail?id=318
1409   - Fixed memcache KeyError problem.
1410       http://code.google.com/p/googleappengine/issues/detail?id=417
1411   - Default URLFetch POST content-type is x-www-form-urlencoded.
1412   - Fixed problems where global variables would be set to None
1413     when a request raised an exception or returned an error
1414     response.
1415   - Added support for GIFs and JPEG using PIL.
1416   - Added support for type conversion of literals to GQL.
1417   - Added support for pickling Expando instances.
1418       http://code.google.com/p/googleappengine/issues/detail?id=545
1419   - Added APPLICATION_ID environment variable to runtime.
1420   - Added support for key_name to djangoforms.
1421   - Added ability to put multiple transaction groups in one request
1422     outside of transactions.
1423   - Added support for downloading request logs using appcfg.
1424       http://code.google.com/p/googleappengine/issues/detail?id=76
1425   - Fixed DateProperty not supporting values before 1970 and beyond
1426     Jan. 19, 2038.
1427       http://code.google.com/p/googleappengine/issues/detail?id=352
1428   - Set cap of 5000 indexed properties per entity.
1429   - GoogleAppEngineLauncher now has context menus in the main project
1430     window.
1431   - UI improvements to GoogleAppEngineLauncher preferences window.
1432   - Fixed GoogleAppEngineLauncher broken symlink for bulk_uploadclient.
1434 Version 1.1.0 - May 28, 2008
1435 ============================
1437   - Added an API for image manipulation.
1438       http://code.google.com/p/googleappengine/issues/detail?id=38
1439   - Added memcache API.
1440   - Fixed URLFetch for URLs with query strings.
1441       http://code.google.com/p/googleappengine/issues/detail?id=341
1442       http://code.google.com/p/googleappengine/issues/detail?id=346
1443       http://code.google.com/p/googleappengine/issues/detail?id=369
1444   - Added support for multiple values for the same filter string.
1445   - Fixed URLFetch's referrer to now set itself to the application's
1446     host-name.
1447   - Added --show_mail_body flag to dev_appserver.py.
1448   - Added support for IN and != to GQL.
1449   - Fixed URLFetch to accept strings as well as constant integers.
1450       http://code.google.com/p/googleappengine/issues/detail?id=234
1451   - Added CURRENT_VERSION_ID environment variable.
1452   - Fixed uploading issues affecting @googlemail.com developers.
1453       http://code.google.com/p/googleappengine/issues/detail?id=119
1454   - Fixed Datastore API to allow the assignment of [] to non-dynamic
1455     DB attributes.
1456       http://code.google.com/p/googleappengine/issues/detail?id=276
1457       http://code.google.com/p/googleappengine/issues/detail?id=254
1458   - Fixed NeedIndexError to include the index that the query needed.
1460 Version 1.0.2 - May 15, 2008
1461 ============================
1463   - Fixed UTC timezone issue on Windows.
1464       http://code.google.com/p/googleappengine/issues/detail?id=131
1465   - Fixed webapp template cache bug.
1466       http://code.google.com/p/googleappengine/issues/detail?id=273
1467   - URLFetch service redirect behavior now matches deployed behavior.
1468       http://code.google.com/p/googleappengine/issues/detail?id=84
1469   - Better handling of bad HOMEDRIVE parameters on Windows.
1470       http://code.google.com/p/googleappengine/issues/detail?id=27
1471   - Fixed HTTP response header termination.
1472       http://code.google.com/p/googleappengine/issues/detail?id=209
1473   - Fixed behavior with source files that have Windows line-endings or
1474     missing line-endings.
1475       http://code.google.com/p/googleappengine/issues/detail?id=237
1476       http://code.google.com/p/googleappengine/issues/detail?id=258
1477   - Fixed C-Extension module loading issues.
1478       http://code.google.com/p/googleappengine/issues/detail?id=95
1479       http://code.google.com/p/googleappengine/issues/detail?id=83
1480   - Fixed Windows DLL extension loading issues.
1481       http://code.google.com/p/googleappengine/issues/detail?id=222
1482   - Added missing os.uname function.
1483       http://code.google.com/p/googleappengine/issues/detail?id=186
1484   - Windows installer can now over-install.
1485       http://code.google.com/p/googleappengine/issues/detail?id=241
1486   - Windows installer now allows installation even if it can't find Python.
1487       http://code.google.com/p/googleappengine/issues/detail?id=5
1488   - Fixed skip_files exception.
1489       http://code.google.com/p/googleappengine/issues/detail?id=80
1490   - Better error handling for cookie-file related problems.
1491   - User platform, SDK version, and Python version are now supplied to
1492     server-side on deployment; also supplied on dev_appserver start-up
1493     if the "nag" is enabled.
1496 Version 1.0.1 - April 14, 2008
1497 ==============================
1499   - Fixed app.yaml static_dir attribute on Windows.
1500   - Fixed uploading large files on OSX.
1501   - Fixed recursion issue in webapp template rendering cache.
1502   - Fixed MacPorts installation.