1 Copyright 2008 Google Inc. |
1 Copyright 2008 Google Inc. |
2 All rights reserved. |
2 All rights reserved. |
3 |
3 |
4 App Engine Python SDK - Release Notes |
4 App Engine Python SDK - Release Notes |
|
5 |
|
6 Version 1.2.3 - June 1, 2009 |
|
7 ============================ |
|
8 |
|
9 - Task Queue support available as google.appengine.api.labs.taskqueue. |
|
10 http://code.google.com/appengine/docs/python/taskqueue |
|
11 - Django 1.0 support. You must install Django locally on your machine |
|
12 for the SDK but no longer need to upload it to App Engine. |
|
13 from google.appengine.dist import use_library |
|
14 use_library('django', '1.0') |
|
15 http://code.google.com/p/googleappengine/issues/detail?id=872 |
|
16 - Urlfetch supports asynchronous requests. |
|
17 http://code.google.com/p/googleappengine/issues/detail?id=958 |
|
18 - Urlfetch in SDK now matches App Engine more closely: |
|
19 By default, it now sets the referer header, does not set the Accept |
|
20 header, and sets Accept-Encoding to gzip. |
|
21 http://code.google.com/p/googleappengine/issues/detail?id=970 |
|
22 - Fixed issue with httplib and absolute URLs. |
|
23 http://code.google.com/p/googleappengine/issues/detail?id=1311 |
|
24 - Memcache key length is no longer restricted to 250 bytes: longer keys |
|
25 will be replaced with a hash of the key. |
|
26 - Datastore ancestor queries now work within transactions. |
|
27 - Datastore transactions in SDK now snapshot on the first operation so they |
|
28 do not see writes made during the transaction. Matches App Engine. |
5 |
29 |
6 Version 1.2.2 - April 22, 2009 |
30 Version 1.2.2 - April 22, 2009 |
7 ============================== |
31 ============================== |
8 |
32 |
9 - New quota API which returns the CPU usage of the current request. |
33 - New quota API which returns the CPU usage of the current request. |
33 - New --vhost flag on appcfg.py request_logs command to select logs for |
57 - New --vhost flag on appcfg.py request_logs command to select logs for |
34 a particular host. |
58 a particular host. |
35 - Python _ast module is now available for import |
59 - Python _ast module is now available for import |
36 http://code.google.com/p/googleappengine/issues/detail?id=779 |
60 http://code.google.com/p/googleappengine/issues/detail?id=779 |
37 - Fixed issue with the color argument of the Images API composite method. |
61 - Fixed issue with the color argument of the Images API composite method. |
38 |
|
39 |
62 |
40 Version 1.2.1 - April 13, 2009 |
63 Version 1.2.1 - April 13, 2009 |
41 ============================= |
64 ============================= |
42 |
65 |
43 - Stable, unique IDs for User objects. The Users service now |
66 - Stable, unique IDs for User objects. The Users service now |