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