App Engine 1.8.4.
[gae.git] / java / RELEASE_NOTES
blobc1e6ad37bca12d0b58a2e49e0fdf2318d84b0f90
1 Copyright 2008 Google Inc.
2 All rights reserved.
4 App Engine Java SDK - Release Notes
6 Version 1.8.4
7 ============
8 - A Datastore Admin fix in this release improves security by ensuring that
9   scheduled backups can now only be started by a cron or task queue task.
10   Administrators can still start a backup by going to the Datastore Admin
11   in the Admin Console.
12 - The Java SDK local datastore now defaults to an HRD-like consistency policy,
13   including eventually consistent global queries. For more information see
14   developers.google.com/appengine/docs/java/tools/devserver#Using_the_Datastore
15 - The Conversion API, a decommissioned feature, has been removed from the SDK.
16   In the next release, the API will be removed from the runtime and any
17   attempt to import the API will raise an exception. Applications in
18   production that import the API should be fixed as soon as possible.
19 - Fixed the implementation of the Cloud SQL JDBC driver for App Engine which
20   restricted the connection lifetime to the lifetime of the HTTP request.
21   This will unblock users who want to use long running connections (e.g. in
22   connection pools).
23 - Fixed bulkloader issue for Java caused by improper updates of the Java
24   Remote API handlers in a previous version of the runtimes.
25 - Fixed Eclipse plugin on the development server to eliminate complaints
26   about missing indexes when using equality filters.
27 - Fixed the issue with SASL provider registration that was impacting
28   developers' ability to connect to GMail via IMAP.
30 Version 1.8.3
31 =============
32 - Published a major rewrite of the Search API documentation. Please see:
33     https://developers.google.com/appengine/docs/java/search
34 - Interfacing into the Task Queue REST API no longer requires including "s~"
35   at the beginning of the project name.
36 - Fixed an issue with the Mail API, email addresses that contain encoded
37   newlines as specified in rfc2047 are now parsed correctly.
38 - Fixed an issue with ChannelService.sendMessage() failing when a client id has
39   3 or more dashes.
40 - Fixed an issue with the Channel API send_message function not working in the
41   SDK.
42 - Fixed an issue with the Local Channel service failing to properly validate
43   tokens.
44 - Fixed an issue with enabling cloud integration for existing apps.
45     https://code.google.com/p/googleappengine/issues/detail?id=9602
46 - Fixed an issue with the Datastore Admin UI failing to load due to the app
47   having too many kinds.
48     https://code.google.com/p/googleappengine/issues/detail?id=9749
50 Version 1.8.2
51 =============
52 - Dedicated memcache is now available to all developers. With
53   dedicated memcache you can purchase in-memory data caching capacity
54   exclusively for your application, cache more data and drive up cache hit
55   rates. This is a Preview feature. For more information please see:
56   https://developers.google.com/appengine/docs/adminconsole/memcache
57 - App Engine Modules is now available to all developers. App Engine Modules
58   allow developers to segment their applications into logical subcomponents.
59   This is a Preview feature. More information on this feature can be found
60   here:
61   https://developers.google.com/appengine/docs/java/modules/
62 - Fixed an issue with the Channel API's Javascript library; a memory leak
63   occurred when closing channels.
64     https://code.google.com/p/googleappengine/issues/detail?id=9283
65 - Fixed an issue with App Engine receiving erroneous XMPP presence from
66   Google Hangouts.
67     https://code.google.com/p/googleappengine/issues/detail?id=9498
69 Version 1.8.1
70 =============
71 - This SDK will be the last release that can deploy Java 6 apps. In 1.8.2,
72   the SDK will only be compiled with the Java 7 compiler and the only target
73   runtime will be Java 7.
74 - The Task Queue async API is now a GA feature. The asynchronous methods
75   improve utilization by allowing your app to add, lease and delete multiple
76   tasks in parallel.
77 - Cloud Console projects are now created by default whenever a new App Engine
78   app is created.  This is a Preview feature.
79 - In an upcoming release the Experimental Google Cloud Storage API Functions
80   will be decommissioned. This API and its Experimental status is documented at
81   the following link:
82   https://developers.google.com/appengine/docs/java/googlestorage/overview
83 - The Google Cloud Storage library will replace Google Cloud Storage API and is
84   now available as a Preview feature.  More information can be found at
85   https://code.google.com/p/appengine-gcs-client/
86 - Bandwidth between App Engine and Google Cloud Storage is currently free of
87   charge (this may change in the future for certain levels of service).
88 - The Search API has graduated from Experimental to Preview. Apps that have
89   billing enabled can exceed the free quota levels and will be charged for
90   usage above these levels.
91 - Estimated number of search results will only be accurate if it is less than
92   or equal to the number of results requested. By default this can be
93   overridden by setting number_found_accuracy QueryOption in the Search API.
94 - Dates, atoms, and number fields can now be found by searching without a field
95   restriction in the Search API.
96 - A quoted empty string now returns atom fields with empty values for the
97   Search API.
98 - Snippet and count functions are no longer allowed in sort expressions for the
99   Search API.
100 - The Search API now has improved error messages for user errors and internal
101   errors.
102 - The Datastore now assigns scattered auto ids by default. Legacy auto ids
103   are still available via the 'auto_id_policy' option in appengine-web.xml.
104 - The Sockets API now allows client code to call get/set options against
105   sockets. Previously, calls raised "Not Implemented" exceptions. When
106   java.net.Socket.get<option>() is called, a mock value is returned, calls to
107   set<option>() will be silently ignored.
108 - Fixed an issue with the namespace not being displayed when a user attempts
109   to select a namespace in the Admin Console.
110     https://code.google.com/p/googleappengine/issues/detail?id=8164
111 - Fixed an issue in the Admin Console Logs page to correctly display 'Until'
112   instead of 'Since' for logs search criteria.
113     https://code.google.com/p/googleappengine/issues/detail?id=8659
115 Version 1.8.0
116 =============
117 - The Mail API now allows attachments with .zip and .gzip extensions as long as
118   the archives do not contain entries with blacklisted extensions.
119   http://code.google.com/p/googleappengine/issues/detail?id=5933
120 - New Billing Enabled apps will no longer default to an email quota of 20,000
121   per day. Instead, apps will need to file a request through the admin console
122   to get email quotas increased.
123 - Admin console dashboard charts and reports for all users have been fully
124   migrated to the new, more reliable backend announced in 1.7.6.
125 - The maximum size of POST requests made through URLfetch has been increased
126   from 5MB to 10MB.
127 - Fixed an interaction issue between the Java MapReduce library and the Files
128   API which causes loss of data. If you are using the experimental Java
129   MapReduce library, we strongly encourage you to update to the latest version
130   of the library in the public svn:
131   https://code.google.com/p/appengine-mapreduce/source/checkout
132 - Fixed an issue with the Mail API to prevent sending mail from a Google Apps
133   mail account that has been suspended.
134     https://code.google.com/p/googleappengine/issues/detail?id=6181
135 - Fixed an issue that caused Full-Text Search to fail in the Java dev_appserver.
136     https://code.google.com/p/googleappengine/issues/detail?id=9088
137 - Fixed an issue with Java dev_appserver which caused the AdWords API to not
138   work.
139     https://code.google.com/p/googleappengine/issues/detail?id=9213
140 - Fixed an issue with the Java SDK jar file being too large for Windows 64.
141 - Fixed a JAXBPermission.setDatatypeConverter permission issue in Java7 runtime.
143 Version 1.7.7
144 =============
145 - The Sockets API, which allows applications to make outgoing TCP connections
146   and send/receive UDP packets to the Internet using both IPv4 and IPv6, is now
147   available as an experimental feature.
148 - The Java runtime now defaults to Java7. If you still need to use the Java6
149   runtime, please use the --use_java6 flag when deploying your app. We encourage
150   you to move to Java7 as soon as possible.
151 - Billing enabled apps will no longer be subject to a $2.10 minimum weekly
152   spend.  Instead, apps will only be charged for their actual usage.
153 - Fixed an issue where Datastore auto ids assigned by the scattered id
154   policy were too large to be represented as floating point numbers in the SDK.
155 - Fixed an issue with sort by doc_id not translating correctly causing
156   InvalidRequest errors in the Search API
157     https://code.google.com/p/googleappengine/issues/detail?id=8958
159 Version 1.7.6
160 =============
161 - Improvements to the App Engine billing system will be rolled out gradually to
162   all apps.
163 - The application summary no longer displays the default version of a running
164   application, instead it lists the application as 'RUNNING'. In an upcoming
165   release applications will have multiple logical sub components, each of which
166   will have a default version.  This UI update is meant to align with this
167   functionality.
168 - Projection queries are now a fully supported GA feature.
169 - The XMPP API now has multi-JID getPresence(). This provides the ability to get
170   the availability of multiple users.
171 - The Java dev_appserver now allocates automatic ids using the 'scattered' id
172   allocation policy by default. For more information, please see "Specifying the
173   Automatic ID Allocation Policy":
174   https://developers.google.com/appengine/docs/java/tools/devserver#Using_the_
175   Datastore
176 - Admin console dashboard charts and current load/errors reports will be moving
177   to a new, more reliable backend. The change will be gradually rolling to users
178   of admin console over the next few weeks.
179 - New Search API quotas are now displayed in the Admin Console. These quotas are
180   not currently enforced, but will be part of the pricing model for the Search
181   API in a future release.
182 - The experimental Search API's ability to explicitly sort search results by
183   SortExpression.RANK_FIELD_NAME (i.e. _order_id) field in ascending order has
184   been removed.
185 - Globally consistent indexes in the experimental Search API are now deprecated
186   and will be removed in the next release.
187 - Task Queue tasks may now be added and deleted asynchronously. This allows
188   applications to perform common task queue operations without blocking. This is
189   an experimental feature.
190 - Fixed an issue which caused an incorrect server error message when setting the
191   default version on the admin console, though the version was set correctly.
192 - Fixed an issue that caused java.security.AccessControlException when creating
193   a SOAP connection.
194 - Fixed an issue that caused NullPointerException in ListIndexesResponse
195     http://code.google.com/p/googleappengine/issues/detail?id=8359
196 - Fixed an issue that caused an incorrect log message when launching the Java
197   dev_appserver
198     https://code.google.com/p/googleappengine/issues/detail?id=8851
200 Version 1.7.5
201 =============
202 - New instance classes F4_1G and B4_1G are now available.  These instances have
203   compute capacity equal to F4/B4 but with a maximum of 1G RAM instead
204   of 512MB.
205 - The DataNucleus plugin has been upgraded to 2.1.2.
206 - The deprecated classes AddException, AddResponse, ListException,
207   ListIndexesException, ListIndexesRequest, ListIndexesResponse, ListRequest,
208   ListResponse, and RemoveException were removed from the Search API in the
209   SDK.  If your app references any of these classes, you must deploy a new
210   version without these references before the next release of App Engine.
211   If you do not do this, your app may stop working in production.
212 - The Conversion API, which was decommissioned last release, has been removed
213   from the SDK. In a future release, the API will be removed from the
214   runtime and applications that attempt to use it may stop working.
215   Applications in production that import the library should be fixed as soon as
216   possible.
217 - We are making Java 7 available as an experimental feature. We strongly
218   encourage local and production testing for all existing applications. For
219   more information, please visit:
220   http://developers.google.com/appengine/docs/java/java7
221 - The Channel API now has the ability to send channel messages from any app
222   version or backend regardless of where the channel was created.
223     http://code.google.com/p/googleappengine/issues/detail?id=5123
224 - The URL Fetch service now supports PATCH method requests.
225     http://code.google.com/p/googleappengine/issues/detail?id=6316
226 - The Mail API can now send mail bounce notifications to the app. The
227   notification will be delivered to /_ah/bounce if mail_bounce inbound
228   services are enabled.
229     http://code.google.com/p/googleappengine/issues/detail?id=7451
230 - The Blobstore service now returns the created filename instead of the blobKey
231   when using Cloud Storage
232     http://code.google.com/p/googleappengine/issues/detail?id=8337
233 - Fixed an issue with Datastore callback annotations not working when running
234   locally on Windows.
235     http://code.google.com/p/googleappengine/issues/detail?id=7208
237 Version 1.7.4
238 =============
239 - Traffic Splitting is now a GA feature.
240 - Task Queue Statistics is now a GA feature.
241 - Logs API now has the ability to fetch requests based on a list of
242   request_ids. Currently, this only works in production and is not supported
243   in dev_appserver.
244 - The SDK now includes an IDE-friendly zip with the source for the App Engine
245   APIs. The zip resides in <SDK_ROOT>/src/user.
246 - Additional support for Maven now exists through both Maven archetypes and a
247   Maven plugin. Documentation for the new Maven support can be found at
248   https://developers.google.com/appengine/docs/java/tools/maven
249 - DISTINCT for Datastore queries is now available as an experimental feature.
250 - The decommissioned Conversion API has been removed.
251 - Various JSP improvements
252     JSPs are now compiled together as opposed to one by one. This improves the
253     compilation process time.
254     JSP compiled classes are packaged in JAR files.
255     You can now avoid the upload of JSP source, which is typically not needed
256     at runtime. This can be done via the new --delete_jsps option in the
257     appcfg tool. By default, this option is not set.
258     You can now package all the WEB-INF/classes/* classes into jar files. This
259     can be done via the new --enable_jar_classes option in the appcfg tools. By
260     default, this option is not set.
261 - Users can now set how many columns can be viewed in the Datastore Viewer via
262   a drop-down menu which customizes the number of columns displayed.
263     http://code.google.com/p/googleappengine/issues/detail?id=8158
264 - Fixed an issue with BackendService.getCurrentInstance() returning thread ID
265   instead of integer instance ID in production.
266     http://code.google.com/p/googleappengine/issues/detail?id=8338
267 - Fixed an issue with Datastore Backup failing when a schema has a very large
268   number of properties.
269     http://code.google.com/p/googleappengine/issues/detail?id=8363
270 - Fixed an issue with users being unable to change Authentication Type after
271   app creation in the Admin Console.
272     http://code.google.com/p/googleappengine/issues/detail?id=8394
274 Version 1.7.3
275 =============
276 - We encourage you to try and test your application using Java 7 and the App
277   Engine SDK. Note that Java 7 is *not* a supported runtime.
278 - Java 7 Features that we encourage you to try in dev appserver:
279     Strings in switch
280     Binary integral literals and underscores in number literals
281     Multi-catch and more precise rethrow
282     Improved type inference for generic instance creation (diamond)
283     try-with-resources statement
284     Simplified varargs method invocation
285 - Java 7 features that are NOT supported:
286     All new Java 7 classes (the Google App Engine whitelist has not been
287     updated yet)
288     Method Handles
289     Invoke Dynamic bytecode
290 - InetAddress name resolution now displays UnknownHostException instead of a
291   runtime exception error when the host is unknown.
292 - Datastore Index stats now report type instead of representation-type.
293 - Class Loading Priority can now be granted to specific JAR files by adding
294   class-loader-config element in appengine-web.xml file. This is an
295   experimental feature.
296 - Queries with transactions are now fully checked for consistency in Remote
297   API.
298 - Global Consistent Indexes are now deprecated in the Search API.
299 - ListResponse<Document> listDocuments(ListRequest) has been deprecated and
300   replaced with GetResponse<Document> getRange(GetRequest) in the Search API.
301 - ListIndexesReponse listIndexes(ListIndexesRequest) has been deprecated and
302   replaced with GetResponse<Index> getIndexes(GetIndexesRequest) in the Search
303   API.
304 - getField(String) has been deprecated and aliased to getFields(String) in the
305   Search API.
306 - AddResponse Index.add() has been deprecated and renamed to PutResponse
307   Index.put() in the Search API.
308 - RemoveResponse Index.remove() has been deprecated and renamed to
309   DeleteReponse Index.delete() in the Search API.
310 - Users can now change authentication options after app creation
311     http://code.google.com/p/googleappengine/issues/detail?id=483
312 - Fixed an issue with Channel API breaking when using urlfetch service. This
313   issue was limited to the SDK.
314     http://code.google.com/p/googleappengine/issues/detail?id=8166
315 - Fixed an issue with ResponseRewriterFilter not being threadsafe when using
316   Remote API.
317     http://code.google.com/p/googleappengine/issues/detail?id=8167
319 Version 1.7.2
320 =============
321 - Paid applications can now upload Static files and Code > 1GB. Additional
322   storage will be billed at $0.13/GB per month.  Free applications will
323   continue to be provided 1GB of storage at no charge. Free quota will apply
324   per application.
325 - Thread support via com.google.appengine.api.ThreadManager is now a
326   GA feature.
327 - The Conversion API will be decommissioned soon. Developers using this API
328   will receive a warning message. Please find an alternative document
329   conversion/OCR service.
330 - You can now fetch Task Queue Statistics. This allows you to fetch
331   statistics and information about your task queue from within your
332   application. Statistics include information such as the number of tasks
333   in a queue, how many tasks were executed in the last minute and enforced
334   rate.  This is an experimental feature.
335 - Added Timezone selection widget in Admin Console Admin Logs.
336 - Added a warning message about caching when modifying or deleting entities
337   in the local Datastore.
338 - Added a flush cache button to the SDK dev console and Admin Console.
339 - Attempting to update multiple entity groups in a single transaction
340   in Datastore now throws an error suggesting to use XG transactions.
341 - Search API now has a string maximum length limit of 2000 characters.
342 - Added millisecond variants for setting start/end time on LogQuery class in
343   Logs Reader API.
344 - The local Datastore now enforces the 500 character maximum key length.
345 - Added SDK response header rewrite framework functionality to help with
346   response headers returned by users.
347 - We now allow a user with multiple google accounts the ability to create an
348   app if they are an SMS verified user.
349     http://code.google.com/p/googleappengine/issues/detail?id=1419
350 - A more useful error message now displays when a deployment fails
351   due to local date/time settings being improperly set.
352     http://code.google.com/p/googleappengine/issues/detail?id=2033
353 - Granted java.io.SerializablePermission for enableSubclassImplementation
354   and enableSubstitution.
355     http://code.google.com/p/googleappengine/issues/detail?id=2500
356 - Cron Descriptions may now include non-ASCII characters.
357     http://code.google.com/p/googleappengine/issues/detail?id=2641
358 - App Config Service Delete App Version Call Count quota raised to
359   10,000/day.
360     http://code.google.com/p/googleappengine/issues/detail?id=2808
361 - There are now more descriptive error messages for Datastore Admin
362   deadline exceeded errors in stack traces.
363     http://code.google.com/p/googleappengine/issues/detail?id=5413
364 - Replaced error code “Administrators cannot be removed right now”
365   with a more descriptive message.
366     http://code.google.com/p/googleappengine/issues/detail?id=7080
367 - Fixed an issue with namespace dropdown in Admin Console appearing blank
368   even though the URL specified namespace is correct.
369 - Fixed an issue with public-root not working with static content
370   in appengine-web.xml.
371 - Fixed an issue with SDK Datastore viewer not showing unindexed properties.
372 - Fixed an issue with ApiProxy.getCurrentEnvironment() not having
373   com.google.appengine.runtime.default_version_hostname
374 - Fixed an issue with mail service sendToAdmins() failing when using
375   multi-arg message constructor.
376 - Fixed an issue with Expires header in SDK to match production behavior.
377 - Fixed an issue with com.google.appengine.api.log.RequestLogs.getCombined()
378   not populating correctly in SDK.
379 - Fixed an issue with runtime failing to use scope with OAuth under certain
380   conditions.
381 - Fixed an issue with support for entities with large numbers of properties
382   in Admin Console Dataviewer where previously the page would fail to render.
383     http://code.google.com/p/googleappengine/issues/detail?id=937
384 - Fixed an issue with multi-line string property not editing correctly
385   in Dataviewer.
386     http://code.google.com/p/googleappengine/issues/detail?id=1725
387 - Fixed an issue with BigDecimal losing precision after Datastore
388   serialization.
389     http://code.google.com/p/googleappengine/issues/detail?id=1748
390 - Fixed an issue where the local Memcache service leaked memory.
391     http://code.google.com/p/googleappengine/issues/detail?id=2428
392 - Fixed an issue with HttpServlet.doOptions throwing SecurityException from
393   HttpServlet.getAllDeclaredMethods
394     http://code.google.com/p/googleappengine/issues/detail?id=2658
395 - Fixed an issue with Paging link in Datastore viewer not working with # or &
396     http://code.google.com/p/googleappengine/issues/detail?id=3591
397 - Fixed an issue with rounding errors when cropping with the local images
398   service.
399     http://code.google.com/p/googleappengine/issues/detail?id=3647
400 - Fixed an issue with Dataviewer GQL stripping new lines after initial run
401   when a user paginates results.
402     http://code.google.com/p/googleappengine/issues/detail?id=4246
403 - Fixed an issue where keeping a file open prevented the deletion in the local
404   Blostore service. This is a Windows only issue.
405     http://code.google.com/p/googleappengine/issues/detail?id=4744
406 - Fixed an issue with LocalServiceTestHelper throwing Multiple Triggers
407   error when used in task queue.
408     http://code.google.com/p/googleappengine/issues/detail?id=4893
409 - Fixed an issue with Admin Console stack trace error reporting in appcfg.
410     http://code.google.com/p/googleappengine/issues/detail?id=4920
411 - Fixed an issue with Datastore viewer showing incorrect result range text
412   on first page.
413     http://code.google.com/p/googleappengine/issues/detail?id=4975
414 - Fixed an issue with custom admin page display when logged into multiple
415   google accounts.
416     http://code.google.com/p/googleappengine/issues/detail?id=5117
417 - Fixed an issue with the inability to carry dynamic proxy objects
418   in session.
419     http://code.google.com/p/googleappengine/issues/detail?id=5299
420 - Fixed an issue with DeferredTaskServlet failing with custom context
421   classloader.
422     http://code.google.com/p/googleappengine/issues/detail?id=5451
423 - Fixed an issue with Admin Console Logs < 30 minutes not being
424   available.
425     http://code.google.com/p/googleappengine/issues/detail?id=5494
426 - Fixed an issue with apps that are using Mail API throwing
427   “No Provider for address type rfc822” error.
428     http://code.google.com/p/googleappengine/issues/detail?id=5769
429 - Fixed an issue with AppStats failing when enabled with Backend in SDK.
430     http://code.google.com/p/googleappengine/issues/detail?id=6071
431 - Fixed an issue with the SDK viewer not being able to view 1000+ entities.
432     http://code.google.com/p/googleappengine/issues/detail?id=6138
433 - Fixed an issue with Viewers being able to prohibit code downloads.
434     http://code.google.com/p/googleappengine/issues/detail?id=6255
435 - Fixed an issue with billing applications that are disabled.
436     http://code.google.com/p/googleappengine/issues/detail?id=6344
437 - Fixed an issue with deploying to an existing version when an app
438   has 10 versions.
439     http://code.google.com/p/googleappengine/issues/detail?id=6803
440 - Fixed an issue with Cron schedule failing on the 1st day of month.
441     http://code.google.com/p/googleappengine/issues/detail?id=7286
442 - Fixed issue with gzip compression for application/plist content type.
443     http://code.google.com/p/googleappengine/issues/detail?id=7641
444 - A note about an upcoming change: starting with the 1.7.3 release
445   of App Engine, data statistics will report statistics on property type
446   usage by indexes using the documented property type names ("Integer",
447   "Key", etc, see
448   https://developers.google.com/appengine/docs/python/datastore/stats)
449   rather than the current property representation names ("INT64",
450   "REFERENCE", etc, see http://goo.gl/db5dT). This will affect the
451   __Stat_PropertyType__, __Stat_PropertyType_Kind__,
452   __Stat_PropertyType_PropertyName_Kind__ and their per-namespace equivalents.
453   This will also affect the displayed "Breakdown by Property Type" under the
454   "Datastore Statistics" in your application's console.
456 Version 1.7.1
457 =============
458 - The URLFetch API now supports multiple cookie headers.
459     http://code.google.com/p/googleappengine/issues/detail?id=3379
460 - You can download 90 days worth of Usage Reports for your application from the
461   Billing History page of the Admin Console.
462 - Task Queue requests now include an X-AppEngine-TaskExecutionCount that counts
463   the number of times a task was run by an instance.
464 - Added support for delete() to the Files API.
465 - Added support for multiple files to be deleted using the Files API.
466 - Added support to delete files from Google Cloud Storage using the Files API.
467 - Added a REQUEST_LOG_ID to be written in the logs and as an
468   ApiProxy.Environment attribute. This can be used to later identifying that
469   request in the application logs.
470 - The Memcache Viewer now supports namespaces.
471     http://code.google.com/p/googleappengine/issues/detail?id=7245
472 - The Mail API now supports the following headers for outgoing mail: List-Id,
473   List-Unsubscribe, On-Behalf-Of, Resent-Date, Resent-From, Resent-To.
474     http://code.google.com/p/googleappengine/issues/detail?id=2559
475     http://code.google.com/p/googleappengine/issues/detail?id=7672
476 - Version 2 of the DataNucleus plugin has been upgraded and is now fully
477   supported. For a full list of improvements please see
478     http://code.google.com/p/datanucleus-appengine/source/browse/branches/2_1_0/dist/RELEASE_NOTES.ORM
479 - The Search API now supports default values for dates in SortExpressions.
480 - The .project and .classpath files are now included in the App Engine demos
481   so that they may be imported by Eclipse.
482 - Fixed an issue with the App Engine satisfaction survey in the Admin Console
483   which was released in 1.6.6, which will be re-enabled in this release.
484 - Fixed an issue where ListIndexes failed when trying to return a schema that
485   contained Geo fields.
486 - Fixed an issue with Search API websafe cursors not being returned as a
487   websafe value.
488 - Fixed an issue where Java's AsyncMemcacheServiceImpl was incorrectly throwing
489   MemcacheServiceException.
490     http://code.google.com/p/googleappengine/issues/detail?id=6236
491 - Fixed a Memcache error when getting HttpSession.
492     http://code.google.com/p/googleappengine/issues/detail?id=6463
493 - Fixed a search issue where snippets failed to highlight when a capital
494   letter is used in a search term.
495     http://code.google.com/p/googleappengine/issues/detail?id=7665
496 - Fixed an issue where JDO and JPA keys-only queries were being executed as
497   full entity queries in the datastore.
498     http://code.google.com/p/googleappengine/issues/detail?id=7712
499 - Fixed an issue where traffic splitting by cookie was not working.
500     http://code.google.com/p/googleappengine/issues/detail?id=7813
502 Version 1.7.0
503 =============
504 - You can now configure your custom domain to serve HTTPS requests with App
505   Engine. You can choose either an SNI, VIP, or SNI and VIP configuration. SNI
506   costs $9/month for 5 certificates. A VIP costs $99/month.
507     https://developers.google.com/appengine/docs/ssl
508 - Premier customers now have the option to create applications to be served from
509   datacenters located in the European Union.
510 - Developers can configure their HRD app to use Google's PageSpeed Service,
511   which automatically speeds up serving of content for your application. The
512   PageSpeed Service costs $0.39/gigabyte in addition to the normal App Engine
513   bandwidth charges.
514     https://developers.google.com/appengine/docs/adminconsole/performancesettings#pagespeed
515 - The Search API now contains support for storing and searching on GeoPoints.
516 - The total size of all application versions is now limited to 1 GB. In the
517   future, you'll be able to purchase additional storage for your application
518   code.
519 - Logs API calls are now $.12/gigabyte for all data read from the Logs API over
520   the first 100MB.
521 - You can now specify a time frame of up to 1 year for the retention of your
522   application logs. All storage above 1 GB is billed based on the prices for
523   logs storage.
524 - You can now specify HTTP headers on static content for your application.
525 - The HRD Blob Migration tool is now generally available.
526 - After using the datastore backup utility, you can now restore that backup
527   to a new app id.
528 - It will not be possible to create new authorizations for M/S applications to
529   access Cloud SQL instances.
530 - You can now delete a Google Cloud Storage object using delete() in the
531   Blobstore Service API.
532 - You can now fetch a Google Cloud Storage object using fetch() in the
533   Blobstore Service API.
534 - You can now store keys for a Google Cloud Storage object in the datastore.
535 - The BlobstoreService.createUploadUrl() call now works for Google Cloud Storage
536   buckets.
537 - You can now use ImageService.getServingUrl() and
538   ImageService.deleteServingUrl() for Google Cloud Storage objects.
539 - You can now specify your own Security Provider in Java.
540     http://code.google.com/p/googleappengine/issues/detail?id=1612
541 - The Java Datastore API now supports Or queries.
542 - We've increased various Search API limits. New limits are a maximum of 1000
543   documents returned from search() or listDocuments(), a maximum of 1000
544   indexes returned from listIndexes(), and a maximum offset of 1000 for search()
545   or listIndexes()
546 - Fixed a javascript syntax error in the Admin Console.
547     http://code.google.com/p/googleappengine/issues/detail?id=7566
548 - Fixed an issue in the Search API tab of the Admin Console where it threw an
549   error displaying non-ascii characters.
550     http://code.google.com/p/googleappengine/issues/detail?id=7601
552 Version 1.6.6
553 =============
554 - On May 8, 2012 we released an experimental Search API.
555     http://googleappengine.blogspot.com/2012/05/looking-for-search-find-it-on-google.html
556 - The Admin Console now displays the quotas for Search API Calls and Search
557   Stored Data.
558 - The Search API has deprecated the ListDocumentsException class. When using
559   this class you will see a compile-time warning.
560 - The Search API has deprecated the orderId attribute on the Document class. It
561   has been superseded by the rank attribute.
562 - The Search API has replaced AddDocumentResponse with AddResponse. This will
563   require fixing and redeploying applications that use Index.add().
564 - App creation for apps using the Master/Slave datastore is now restricted to
565   only those users who already own a Master/Slave app.
566 - Apps with billing enabled are now able to configure up to 100 cron jobs.
567 - Admin Console can no longer be included in an <iframe>.  To prevent
568   clickjacking attacks on the Admin Console, we are now setting
569   X-Frame-Options: SAMEORIGIN.  To read more about clickjacking, please read:
570   https://www.owasp.org/index.php/Clickjacking.
571 - The datastore now supports embedding entities as properties of other entities.
572 - The Admin Console will now periodically prompt administrators to take an
573   optional App Engine satisfaction survey.
574 - Appstats now contains information about the cost of the RPCs made during the
575   request.
576 - Fixed an issue where large datastore backups were unable to be deleted.
577 - Fixed an issue where datastore backups fail due to an ascii decoding issue.
578 - Fixed an issue where running a projection query on a multi-valued property
579   with an equality filter did not return any results.
580 - Fixed an issue where XG transactions did not work with the Remote API.
581     http://code.google.com/p/googleappengine/issues/detail?id=7238
583 Version 1.6.5
584 =============
585 - You can now perform datastore queries that return a subset of your entity
586   properties with the same performance and cost of a keys-only query. This
587   feature is experimental.
588 - In the High Replication Datastore, there is a new metadata kind,
589   __entity_group__, that has a numeric __version__ property. This property is
590   guaranteed to increase on every change to the entity group.
591 - The Images API now supports manipulating objects hosted on Google Cloud
592   Storage.
593 - In the Images API, the getServingUrl() call now optionally allows you to
594   specify if the URL you are generating should be served over https.
595 - In the Task Queue REST API, you can now specify a tag when you insert a task
596   on a Pull Queue.
597 - In the Task Queue API, you can specify a deadline for the leaseTasks() call.
598   The default deadline has been increased from 5 seconds to 10 seconds.
599 - You can now use cron to schedule Datastore backups.
600 - The Datastore Admin now has a page that displays information on the status of
601   your Datastore backups and restores.
602 - You can now abort your Datastore backup or restore from the Datastore Admin.
603 - You can now restore a single Datastore Kind from the Datastore Admin from a
604   Datastore backup.
605 - In the Admin Console, you can report production issues with your application
606   directly to Google from the application's pages. Simply click the "Report
607   Production Issues" link, fill out the requested information, and submit.
608 - All user requests have X-AppEngine-Region, X-AppEngine-City, and
609   X-AppEngine-CityLatLong headers which contain location information based on
610   the IP address of the client request. For a full description of these headers,
611   see:
612     https://developers.google.com/appengine/docs/java/runtime#Request_Headers
613 - As announced in 1.6.4, omitting the <threadsafe> directive from
614   appengine-web.xml results in an error.
616 Version 1.6.4
617 =============
618 - Billed applications that have specified additional logs retention over 1 GB
619   are now being charged for that storage at $0.24/GB/month (the first gigabyte
620   of logs storage is free). All logs beyond an application's specified storage
621   limit will be deleted. Please examine your Application Settings page to verify
622   you are retaining the desired amount of logs.
623 - Datastore statistics now show the amount of storage used by application
624   indexes.
625 - We have released an experimental utility for migrating your application's
626   blobs at the same time you migrate your datastore data. You can opt-in to
627   blob migration in the Admin Console when you start your migration.
628 - We have updated the experimental Backup/Restore functionality to include
629   the option to backup and restore to Google Storage for Developers.
630 - Version 2.0 of the App Engine DataNucleus plugin is now available as an
631   experimental release. This plugin contains support for JDO 3 and JPA 2 and
632   over 40 bug fixes. For a full list see:
633     http://code.google.com/p/datanucleus-appengine/source/browse/branches/2_0_0/dist/RELEASE_NOTES.ORM
634 - Threads are available as an experimental feature via
635   com.google.appengine.api.ThreadManager.
636 - The Admin Console now provides a Memcache viewer that lists Memcache stats and
637   can display Memcache content based on key.
638 - Using the blobstoreService.serve method, your application can serve objects
639   hosted on Google Cloud Storage.
640 - The method ApiProxy.getRemainingMillis() returns the amount of milliseconds
641   remaining before a request hits the request deadline.
642 - New datastore query related callbacks - PreGet(), PreQuery(), and PostLoad()
643   are now available.
644 - Omitting the <threadsafe> directive from appengine-web.xml now results in
645   a warning. Starting with the 1.6.5 release, omitting this directive will
646   result in an error.
647 - You can set an RPC deadline for the Task Queue API's leaseTasks() method.
648 - The Datastore Admin tab in the Admin Console now shows entities from every
649   namespace.
650     http://code.google.com/p/googleappengine/issues/detail?id=3962
651 - GQL queries in the Admin Console no longer throw an error when a trailing
652   semi-colon is included.
653 - Fixed an issue where setting ApiProxy delegate caused ClassCastException in
654   unit test teardown.
655     http://code.google.com/p/googleappengine/issues/detail?id=4442
656 - Fixed an issue where <async-session-persistence> did not work.
657     http://code.google.com/p/googleappengine/issues/detail?id=5774
658 - The Datastore Admin now shows entities from every namespace.
659     http://code.google.com/p/googleappengine/issues/detail?id=3962
660 - Fixed an issue in the Java Development Server where Task Queue retry
661   parameters were ignored.
662     http://code.google.com/p/googleappengine/issues/detail?id=5200
663 - Fixed an issue in the Java Pipeline API
664   (http://code.google.com/p/appengine-pipeline/) that would lead to "No object
665   found in pool with id=barrier(...)" errors when used in HRD applications.
668 Version 1.6.3
669 =============
670 - In the Admin Console, you can use the new Traffic Splitting feature to send a
671   certain percentage of traffic to a non-default application version. The
672   traffic is split by either cookie or IP address.
673 - Emails that are sent from Google Apps domains email addresses where the domain
674   has been set up to use DKIM will be signed: when an email was from a request
675   that originated on that app's domain or any time the email was sent from
676   an app adminstrator, including when that email is sent from a cron job or task
677   queue request.
678 - In the Admin Console, you can now choose how much and how long you'd like to
679   store logs.  All apps get 1G for free and eventually will be able to pay for
680   more, while the amount can be increased this release we won't start charging
681   for the additional capacity until the next release at the earliest.
682 - The instances screen in the Admin Console now has a button to shut down
683   a specific instance.
684 - Each application log has a link to the instance that served the request. If
685   the instance is no longer serving requests, a message will be displayed.
686 - The TaskQueue API now supports the ability to tag a Pull Queue task. You may
687   then lease tasks by tag. This feature is experimental.
688 - Using Google Apps wildcard domain mappings, you can access alternate
689   versions of your app via a custom domain.
690 - Push and Pull Queues are now listed separately in the SDK development console.
691 - The PermGen size for  backend and frontend instances classes has been
692   increased. The values are as follows: F1/B1 - 44MB, F2/B2 - 108MB,
693   F4/B4 - 236MB, B8 - 492.
694 - The DataNucleus Enhancer command line tool
695   (com.google.appengine.tools.enhancer.Enhance) now supports the
696   -enhancerVersion flag, which allow you to specify the version of DataNucleus
697   with which to enhance your JDO/JPA classes.
698 - The dev appserver command line now supports the --generated_dir flag, which
699   allows you to specify a directory in which to write files generated by the
700   SDK.
701 - Fixed a StackOverflowError when using the Remote API.
702     http://code.google.com/p/googleappengine/issues/detail?id=6349
704 Version 1.6.2
705 =============
706 - The Admin Console Datastore Admin has added experimental backup and restore
707   functionality. The job occurs within your application and counts against your
708   application quota, including Instance Hours, Datastore Ops and Datastore
709   Storage.
710 - Developers can now specify how long a channel token will last until it
711   expires, with the default remaining two hours. Channel API quota is now
712   measured both in calls to create a channel and the number of hours of channel
713   time requested. The maximum hours of quota is the maximum number of channel
714   creation calls * 2, so free apps get 200 hours of requested channel token
715   time.
716 - Task Queue API requests now include a X-Appengine-TaskETA header, that can be
717   used to measure task delivery latency.
718 - We have removed the deprecated labs version of the TaskQueue API.
719 - The default API deadlines for Blobstore API calls have been raised to 15s for
720   online and 30s for offline requests, up from 5s.
721 - The Images API now allows you to stretch an image without maintaining the
722   aspect ratio.
723     http://code.google.com/p/googleappengine/issues/detail?id=2220
724 - Mail Quota for App Engine apps that have signed up for billing will only be
725   increased after the first payment for the app is processed.
726 - Fixed an issue where the SDK did not resize images down to 512 pixels by
727   default, as it does in production.
728 - Fixed an issue with the Images API where valid images were returning a
729   NotImageError.
730     http://code.google.com/p/googleappengine/issues/detail?id=5545
732 Version 1.6.1
733 =============
734 - You can now configure Frontend Instance Classes from your Admin Console's
735   application settings page. Three classes are available, with increasing
736   memory, CPU limits, and associated cost. By default, all applications use the
737   basic frontend instance setting of 128MB memory and 600MHz CPU.
738 - We've added new functionality to the Log API that will allow you to read your
739   application's logs programmatically.
740 - We are releasing an experimental Conversion API that will allow you to convert
741   between document types including .doc, .html, .pdf, images using OCR, and
742   more.
743 - The High Replication Datastore migration utility is now available as a GA
744   feature, and is no longer experimental.
745 - The dev appserver now emits a warning when loading any classes that fall under
746   com.google.appengine.repackaged.*.
747 - Version 2.0.0 of the DataNucleus App Engine plugin is available as an
748   experimental download from http://goo.gl/kyQiO. This release
749   adds support for JPA2 and JDO3. Installation instructions are available at
750   http://goo.gl/ELBL4.
751 - The Blobstore API now supports the multiple="true" attribute to the HTML input
752   tag.
753 - TaskOptions.Param now implements Serializable.
754     http://code.google.com/p/googleappengine/issues/detail?id=3712
755 - Fixed an issue in the SDK where logging "null" caused a 500 error.
756 - Fixed an issue with backends where SessionManager might try to save a session
757   forever under certain circumstances.
758 - Fixed an issue where cached static files served to IPs on the DoS blacklist
759   consumed bandwidth quota.
760     http://code.google.com/p/googleappengine/issues/detail?id=4607
762 Version 1.6.0
763 =============
764 - On November 7th, App Engine will be out of Preview. The new Terms of Service
765   and previously announced pricing changes will be in effect. Additionally, all
766   paid apps are now covered by our SLA.
767     http://code.google.com/appengine/docs/billing.html
768 - Paid apps can now specify the maximum pending latency for instances and the
769   minimum number of idle instances for your application in the Admin Console.
770 - Task Queue storage has been separated in to its own line item. Previously,
771   this was included in Datastore storage.
772 - We have released an experimental utility, available in the Admin Console, to
773   assist in migrating your application to the High Replication datastore. This
774   utility allows you to copy the bulk of your data in the background, while the
775   source application is still serving. You then need a brief read-only period to
776   migrate your application data while you copy the data that has changed from
777   the time the original copy started.
778 - Blobstore, which was previously limited to apps with billing enabled, is now
779   available for all apps.
780 - We have published a new article on Datastore Index Selection and Advanced
781   Search which explains our recent improvements to the query planner that make
782   exploding indexes unnecessary.
783     http://code.google.com/appengine/articles/indexselection.html
784 - Applications can now receive xmpp error stanzas at /_ah/xmpp/error.
785 - In the Admin Console data viewer, you can now filter by namespace from a drop
786   down menu, if applicable.
787 - In the Admin Console's Datastore Statistics, we now offer namespace suggest
788   for filtering stats.
789 - Added API functionality for making calls to the Memcache API asynchronously.
790 - In the Memcache API, getIdentifiable() and putIfUntouched() now support
791   batch operations.
792 - We've added a page, /_ah/admin/capabilitiesstatus, to the dev console that
793   allows you to configure the capability state of the local API implementations
794   when running locally.
795 - We've added LocalCapabilitiesServiceTestConfig to the testing API, which
796   allows you to configure the capability state of the local API implementations
797   in your tests.
798 - The Datastore API now supports callbacks that can execute before or after
799   put() and delete() calls.
800 - The queue-name argument is now optional for async-session-persistence in
801   appengine-web.xml.
802 - Fixed a ClassNotFound error when using async-session-persistence.
803     http://code.google.com/p/googleappengine/issues/detail?id=5774
804 - Fixed an issue with memcache serialization when using a entity key with a name
805   that points to the same reference as the key's parent.
806     http://code.google.com/p/googleappengine/issues/detail?id=2088
807 - Fixed an issue where DoS stats in the Admin Console didn't work for High
808   Replication apps.
809     http://code.google.com/p/googleappengine/issues/detail?id=5237
810 - WARNING: Starting with 1.6.1 (our next release, NOT this release), URLFetch
811   requests will honor the Accept-Encoding header. If your code sets this header
812   then it must be prepared to receive content of the specified type. For more
813   information please see
814     http://code.google.com/p/googleappengine/issues/detail?id=4978
816 Version 1.5.5
817 =============
818 - We have increased the number of files you can upload with your application to
819   from 3,000 to 10,000.
820 - We have increased the size limit for a single file uploaded to App Engine from
821   10MB to 32MB.
822 - We have increased the Frontend request deadline from 30 seconds to 60 seconds.
823 - We have increased the online URLFetch maximum deadline from 10 seconds to 60
824   seconds. The default deadline remains at 10 seconds. The offline maximum deadline
825   for URLFetch remains at 10 minutes.
826 - We have increased the URLFetch Post payload from 1MB to 5MB.
827 - App Engine now supports Cross Group (XG) transactions with the High
828   Replication Datastore, which allow you to perform transactions across multiple
829   entity groups.
830     http://code.google.com/appengine/docs/java/datastore/transactions.html
831 - We have added a graph to the admin console that displays the number of
832   instances for which you will be billed.
833 - In the XMPP API, getPresence() is deprecated in favor of using the inbound
834   presence handlers documented in
835   http://code.google.com/appengine/docs/java/xmpp/overview.html#Handling_User_Presence.
836 - Fixed an issue in the Admin Console where the "Run Now" button did not work
837   for tasks with a '-' in the name.
838 - Fixed an issue to provide a better error message when a user tries to parse an
839   HttpRequest's input stream more than once in a request.
840 - Fixed an issue to provide a better error message when using the Mail API to
841   send email to an invalid user address.
842 - Fixed an issue in the SDK where HttpServletRequest.getInputStream().read()
843   always returned -1.
844     http://code.google.com/p/googleappengine/issues/detail?id=5396
845 - Fixed an issue where you could not schedule a cron job to run every 100
846   minutes.
847     http://code.google.com/p/googleappengine/issues/detail?id=5861
849 Version 1.5.4
850 =============
851 - You can now specify the maximum size for a blob in
852   BlobstoreService.createUploadUrl().
853 - Zigzag merge join queries will now continue scanning up to the 30 second
854   Datastore query deadline. For zigzag queries that used to generate
855   DatastoreNeedIndexException, many will now succeed. A small percentage will
856   now instead timeout.
857 - The SDK datastore viewer in the dev console now displays the number of "Write
858   Ops" for each entity. "Write Ops" are the total number of entity and index
859   writes that were required to create the entity.
860 - The Prospective Search API is available in Java for all applications. This API
861   is still experimental, so applications will be limited to a maximum of 1000
862   subscriptions.
863 - We made a classloading improvement that we expect to help loading request
864   latencies for projects with large numbers of jars.
865 - Added support for the set_default_version flag to Appcfg.
866 - The Java Remote API now recognizes the HTTP_X_APPENGINE_INBOUND_APPID. This
867   means that the Datastore Admin copy functionality will work when using
868   Java's Remote API with the destination app.
869 - Fixed an issue that incorrectly allowed creation of tasks with whitespace in
870   the url.
871 - Fixed the error message for "transaction not found" to be more descriptive.
872 - Fixed an issue with the dev appserver's local Blobstore implementation trying
873   to modify an immutable collection.
874     http://code.google.com/p/googleappengine/issues/detail?id=3081
875 - Fixed an SDK issue where CONFIG, FINE, FINER, FINEST logging messages were not
876   displayed.
877     http://code.google.com/p/googleappengine/issues/detail?id=4591
880 Version 1.5.3
881 =============
882 - We've removed the limit on the size of blob uploads using the Blobstore API.
883 - You can now send emails with any attachment extension that is not included on
884   the email attachment extension blacklist.
885 - Added a getIndexes() method to the DatastoreService to retrieve an
886   application's indexes and their corresponding states.
887 - The development server has been updated to understand the reduced index
888   requirements of the 1.5.2 datastore query planner changes.
889 - The Datastore Admin functionality can now be enabled directly in the Admin
890   Console.
891 - You can now use Remote API to access the services of one App Engine
892   application from a different App Engine application.
893 - The Java Testing APIs now default to UTC if no timezone is specified.
894 - AppCfg now supports download_app, which will download all files that were
895   uploaded from your war directory.
896 - AppCfg now supports the -V (version) and -A (application) flags.
897 - Added app_identity api with methods to work with service accounts for
898   asserting identity on outbound HTTP calls.
899     http://code.google.com/appengine/docs/java/appidentity/overview.html
900 - Added an improved HRD migration tool that requires a read-only period relative
901   to your datastore write rate (as opposed to your datastore size, which is how
902   the current version behaves). The tool is not yet generally available.  If you
903   are interested in being an early adopter please fill out this form:
904   http://goo.gl/3jrXu
905 - Fixed an issue in the Channel API where jsapi was not served with the correct
906   mime type.
907 - Fixed an issue where blobs could not be uploaded using HTTPS.
908 - Fixed an issue where GQL didn't allow querying for valid kind names
909   containing '.', '-', and ':' by supporting quoted identifiers.
910     http://code.google.com/p/googleappengine/issues/detail?id=2584
912 Version 1.5.2
913 =============
914 - You can now specify the minimum pending latency for instances and the maximum
915   number of idle instances for your application in the Admin Console.
916 - The datastore now never requires an exploding index.
917     http://code.google.com/appengine/docs/python/datastore/queries.html#Big_Entities_and_Exploding_Indexes
918 - The SDK will now never suggest indexes with the same property repeated, as
919   such indexes are likely to be exploding indexes.
920 - Datastore stats are now available on a per-namespace basis.
921 - The queue details page in the Admin Console now contains request header
922   details, previous run information, and a task payload viewer.
923 - You can modify the lease on a task leased from a pull queue using the
924   modifyTaskLease() method.
925 - Pull Task maximum size has been increased to 1MB.
926 - You can now update the number of available backend instances without needing
927   to first stop the backend using the "backend configure" appcfg directive.
928 - You can now set the "References" and "In-Reply-To" headers with the Mail API.
929     http://code.google.com/p/googleappengine/issues/detail?id=2802
930 - The whitelist has been updated to include support for JSR 105.
931 - When the SDK throws a DatastoreNeedIndexException for a missing index
932   definition, the exception can now be caught.
934 Version 1.5.1
935 =============
936 - The development server's datastore and testing service implementations now
937   contains logic that closely replicates the consistency guarantees of the High
938   Replication datastore. To use, run the dev_appserver with the flag
939   -Ddatastore.default_high_rep_job_policy_unapplied_job_pct=20.
940 - All user request have an X-AppEngine-Country header which contains the
941   ISO-3166-1 alpha-2 country code for the user, based on the IP address of the
942   client request.
943 - The Channel API can now provide user presence, this can be configured by
944   adding channel_presence to the list of inbound services for your application.
945 - The Images API now supports the WebP format.
946 - You can switch the timezone for App Engine logs in the Admin Console.
947   http://code.google.com/p/googleappengine/issues/detail?id=734
948 - Added javax.xml.ws.Service$Mode to the whitelist.
949   http://code.google.com/p/googleappengine/issues/detail?id=4770
950 - You can configure your application to asynchronously write https session data
951   by adding <async-session-persistence enabled="true"/> to your
952   appengine-web.xml.
953   http://code.google.com/p/googleappengine/issues/detail?id=1692
954 - The local task queue unit testing API now supports Deferred Tasks.
955 - Fixed an issue where using reserved URLs did not cause an error in the SDK.
956 - Fixed an issue where having a backends.xml configuration file caused logging
957   to stdout to fail in the SDK.
958 - Fixed an issue where the Channel API didn't work with non-default versions of
959   applications using the High Replication datastore.
960 - Fixed an issue where the Remote API rtok comparison was broken for some users,
961   causing appfcg download data to fail.
962 - Fixed an issue with the SDK where you could not apply a transform to PNG
963   images.
964   http://code.google.com/p/googleappengine/issues/detail?id=3458
965 - When displaying corrupt data in the Admin Console dataviewer, a useful error
966   will be displayed, instead of a 500.
967   http://code.google.com/p/googleappengine/issues/detail?id=4945
968 - Fixed an issue with the SDK where non-string index names caused an error upon
969   upload.
970   http://code.google.com/p/googleappengine/issues/detail?id=5004
971 - Datanucleus now supports polymorphic relationships.
972   http://code.google.com/p/datanucleus-appengine/issues/detail?id=153
973 - Datanucleus now supports PreparedQuery#countEntities(FetchOptions).
974   http://code.google.com/p/datanucleus-appengine/issues/detail?id=225
975 - Fixed an issue with datanucleus where recursive relation did not work.
976   http://code.google.com/p/datanucleus-appengine/issues/detail?id=80
978 Version 1.5.0.1
979 ===============
980 - Fixed a bug that caused appengine-jsr107cache-1.5.0.jar to be empty.
982 Version 1.5.0
983 =============
984 - Support for Backends which allow developers to create infrastructure
985   components that complement the existing dynamic apps that App Engine already
986   provides. Instances of a backend can maintain state, be addressed
987   individually, and are not subject to per-request time limits. They can also be
988   configured to consume more memory and CPU than ordinary dynamic instances.
989 - Task Queues support pull mode, allowing for more control over task queue work
990   rates. To use pull queues, include the 'mode' element in your queue.xml.
991 - Pull queues are supported by a REST API, allowing access from outside App
992   Engine. To use the REST API, you must also include a valid ACL section
993   specifying which users can lease tasks from the pull queue.
994 - Task Queue payload limits have been increased. Queues support 100KB per task.
995   Within App Engine, the new limit is 32 MB per batch of tasks. With the REST
996   API the limit is 1 MB per batch.
997 - HTTP request and response sizes have been increased to 32 MB.
998 - We have removed the rate quotas for requests, datastore operations,
999   memcache operations, and image API operations. Resource quotas still apply.
1000 - When creating new applications, developers will now see the High Replication
1001   Datastore as the default configuration option.  Developers that still wish to
1002   use the Master/Slave configuration must explicitly choose this option at
1003   application creation time.
1004 - The Task Queue maximum configurable processing rate has been increased to
1005   500/s.
1006 - Modified Dashboard latency graphs to indicate they only include dynamic
1007   requests.
1008 - We have added two restrictions to the Mail API to improve the reliability
1009   of the service for all applications.
1010   - Emails must be sent from email accounts managed by Google (either Gmail or
1011     a domain signed up for Google Apps).
1012   - Reduced the number of free recipients per day from 2000 to 100 for new
1013     applications.
1014 - Fixed an issue where the Javadoc for the File API was not generated.
1015 - Fixed an issue where the API Deadlines were not being enforced in the SDK.
1016 - Fixed an issue with Federated Users causing the Admin Console dataviewer to
1017   fail.
1018     http://code.google.com/p/googleappengine/issues/detail?id=384
1019 - Fixed an issue causing SDK URL Fetch not to work behind proxy.
1020     http://code.google.com/p/googleappengine/issues/detail?id=544
1021 - Fixed an issue deploying an app with version set to 0.
1022     http://code.google.com/p/googleappengine/issues/detail?id=735
1023 - Improved support for reserving an app id that is a canonicalized version of
1024   a user's Gmail address.
1025     http://code.google.com/p/googleappengine/issues/detail?id=1196
1026 - Added a more useful error message for unavailable App Ids.
1027     http://code.google.com/p/googleappengine/issues/detail?id=1303
1028 - Added clearer error messaging for invalid transactions in the SDK.
1029     http://code.google.com/p/googleappengine/issues/detail?id=1357
1030 - Added better error messages for cron.xml parsing.
1031     http://code.google.com/p/googleappengine/issues/detail?id=1490
1032 - Entity constructors are now consistent with KeyFactory constructors.
1033     http://code.google.com/p/googleappengine/issues/detail?id=1626
1034 - Task Queue names can now include the "_" character.
1035     http://code.google.com/p/googleappengine/issues/detail?id=1723
1036 - The sender of an email is no longer BCC'd when they are already included in
1037   the email.
1038     http://code.google.com/p/googleappengine/issues/detail?id=1907
1039 - Added a more helpful error message when trying to send email to a malformed
1040   address.
1041     http://code.google.com/p/googleappengine/issues/detail?id=2386
1042 - The SDK now returns an error if the Content-length header is not included in a
1043   post request, matching production.
1044     http://code.google.com/p/googleappengine/issues/detail?id=2512
1045 - Fixed an issue where the wrong type of error was being thrown on HTTP request
1046   timeout.
1047     http://code.google.com/p/googleappengine/issues/detail?id=2464
1048 - Fixed an issue where the Admin Console didn't keep the app version viewed
1049   consistent across actions.
1050     http://code.google.com/p/googleappengine/issues/detail?id=4023
1051 - Added Javadocs for TaskOptions.taskName().
1052     http://code.google.com/p/googleappengine/issues/detail?id=4316
1053 - Fixed a typo in the Admin Console on the New App page.
1054     http://code.google.com/p/googleappengine/issues/detail?id=4620
1055 - Fixed an issue where sending mail from an app registered on the HR datastore
1056   required the app id be prefaced with s~.
1057     http://code.google.com/p/googleappengine/issues/detail?id=4671
1058 - Fixed an issue where HTTP POST was broken in the SDK if the Content-Length
1059   header was specified.
1060     http://code.google.com/p/googleappengine/issues/detail?id=4836
1062 Version 1.4.3
1063 =============
1064 - Added FileService API that allows writing to and reading from files in
1065   blobstore.
1066 - You can now specify cron execution for a time interval between a start and end
1067   time.
1068 - You can now configure the specific application version to which a task queue
1069   or cron job will send requests.
1070 - The Admin Console Task Queues page now displays a more accurate estimate of
1071   queue size for queues containing more than 2000 tasks.
1072 - Java applications can enable concurrent request support by setting
1073   <threadsafe> to True in their appengine-web.xml. This flag indicates that
1074   request handlers for your app are thread safe and multiple request handlers
1075   may safely run at the same time in the same memory space for your application.
1076 - Deferred library support now available in Java.
1077     http://code.google.com/p/googleappengine/issues/detail?id=2381
1078 - Remote API library now available in Java. This can be used in conjunction with
1079   apps using either the Java or the Python runtime.
1080 - The Java SDK now supports kindless and ancestor only queries.
1081 - Fixed an issue where JAX-WS clients in the SDK could not handle receiving a
1082   SOAP fault.
1083 - Fixed an issue where the SDK did not support fetching HTTPS URLs.
1084 - Fixed an issue where no link was displayed in the Admin Console blobstore
1085   viewer for an unnamed blob.
1086 - Fixed an issue where the Admin Console data viewer couldn't edit entities
1087   with ByteString properties.
1088     http://code.google.com/p/googleappengine/issues/detail?id=2367
1089 - Fixed an issue where the Admin Console crashed when using a non-ascii
1090   key_name.
1091     http://code.google.com/p/googleappengine/issues/detail?id=2451
1092 - The Disable Application admin function has been button-ized.
1093     http://code.google.com/p/googleappengine/issues/detail?id=4323
1094 - Fixed a regex validation issue in the queue.xml file that caused some uploads
1095   to break.
1096     http://code.google.com/p/googleappengine/issues/detail?id=4365
1097 - Fixed an issue where the Java SDK Task Queue did not support 10 minute
1098   timeouts.
1099     http://code.google.com/p/googleappengine/issues/detail?id=4564
1100 - Fixed an issue where the Channel API in the SDK didn't properly send messages
1101   with unicode characters.
1102     http://code.google.com/p/googleappengine/issues/detail?id=4675
1104 Version 1.4.2
1105 =============
1106 - You can now vacuum datastore indexes with the Java SDK.
1107 - The XMPP API was updated to include presence and allow subscriptions.
1108 - The Task Queue now supports programmatic deleting of tasks.
1109     http://code.google.com/p/googleappengine/issues/detail?id=2588
1110 - The maximum rate per queue at which tasks are processed has been increased to
1111   100 task per second.
1112 - The maximum number of concurrent requests for a single queue can be specified
1113   in the application's queue.xml. This provides an additional easy-to-use form
1114   of rate limiting. The current number of running tasks is also displayed in
1115   the Admin Console.
1116 - Metadata queries in the Datastore now support cursors.
1117 - Admin Console logs viewer now displays time as YYYY-MM-DD HH:MM:SS.mmm.
1118 - The Mail API added KML and KMZ files as allowed attachments.
1119 - Added support for verifying the server SSL certificate when making a
1120   URLFetch request to an HTTPS URL. This will become the default in a future
1121   release.
1122 - Added a warning when an admin tries to upload a queue.yaml where the number
1123   of new queues and the number of disabled queues exceeds 100.
1124 - Added a putIfUntouched() method to the Memcache API.
1125     http://code.google.com/p/googleappengine/issues/detail?id=2139
1126 - Added JAX-WS support for writing SOAP clients and SAAJ support for writing
1127   SOAP servers. JAX-WS for SOAP servers is not yet supported.
1128 - Fixed an issue where mail from @appid.appspotmail.com did not work when
1129   sending mail to app admins.
1130 - Fixed an issue where the SDK did not enforce the 100 task limit for the Task
1131   Queue.
1132     http://code.google.com/p/googleappengine/issues/detail?id=3296
1133 - Fixed an issue where the Java SDK URLFetch did not support 32MB response
1134   sizes.
1135     http://code.google.com/p/googleappengine/issues/detail?id=4215
1136 - Fixed an issues where <jsp-file> mappings in web.xml were broken.
1137     http://code.google.com/p/googleappengine/issues/detail?id=4216
1139 Version 1.4.1
1140 =============
1141 There were no updates to the Java SDK for the 1.4.1 App Engine release.
1143 Version 1.4.0
1144 =============
1145 - The Always On feature allows applications to pay and keep 3 instances of their
1146   application always running, which can significantly reduce application
1147   latency.
1148 - Developers can now enable Warmup Requests. By specifying  a handler in an
1149   app's appengine-web.xml, App Engine will attempt to send a Warmup Request to
1150   initialize new instances before a user interacts with it. This can reduce the
1151   latency an end-user sees for initializing your application.
1152 - The Channel API is now available for all users.
1153 - Task Queue has been officially released, and is no longer an experimental
1154   feature. The API import paths that use 'labs' have been deprecated. Task queue
1155   storage will count towards an application's overall storage quota, and will
1156   thus be charged for.
1157 - The deadline for Task Queue and Cron requests has been raised to 10 minutes.
1158   Datastore and API deadlines within those requests remain unchanged.
1159 - For the Task Queue, developers can specify task retry-parameters in their
1160   queue.xml.
1161 - Apps that have enabled billing are allowed up to 100 queues with the Task
1162   Queue API.
1163 - Metadata Queries on the datastore for datastore kinds, namespaces, and entity
1164   properties are available.
1165 - URL Fetch allowed response size has been increased, up to 32 MB. Request size
1166   is still limited to 1 MB.
1167 - The request and response sizes for the Images API have been increased to
1168   32 MB.
1169 - The total size of Memcache batch operations is increased to 32 MB. The 1 MB
1170   limit on individual Memcache objects still applies.
1171 - The attachment size for outgoing emails has been increased from 1 MB to 10 MB.
1172   The size limit for incoming emails is still 10 MB.
1173 - Size and quantity limits on datastore batch get/put/delete operations have
1174   been removed. Individual entities are still limited to 1 MB, but your app may
1175   batch as many entities together for get/put/delete calls as the overall
1176   datastore deadline will allow for.
1177 - When iterating over query results, the datastore will now asynchronously
1178   prefetch results, reducing latency in many cases by 10-15%.
1179 - The Admin Console Blacklist page lists the top blacklist rejected visitors.
1180 - The automatic image thumbnailing service supports arbitrary crop sizes up to
1181   1600px.
1182 - Overall average instance latency in the Admin Console is now a weighted
1183   average over QPS per instance.
1184 - Added a low-level AysncDatastoreService for making calls to the datastore
1185   asynchronously.
1186 - Added a getBodyAsBytes() method to QueueStateInfo.TaskStateInfo, this returns
1187   the body of the task state as a pure byte-string.
1188 - The whitelist has been updated to include all classes from javax.xml.soap.
1189 - Fixed an issue sending email to multiple recipients.
1190     http://code.google.com/p/googleappengine/issues/detail?id=1623
1191 - Revert the default logging level during GWT hosted mode back to INFO.
1192     http://code.google.com/p/googleappengine/issues/detail?id=4011
1193 - Fixed an issue with OpenId over SSL.
1194   http://code.google.com/p/googleappengine/issues/detail?id=3393
1196 Version 1.3.8
1197 =============
1198 - You can run task queue tasks immediately from the admin console.
1199 - Added an OutputSettings class to the Images API to specify the JPEG encoding
1200   quality when running in production.
1201 - Support for login of multiple Google accounts within an app, and longer login
1202   sessions. For more information see:
1203     http://www.google.com/support/accounts/bin/answer.py?answer=181599
1204 - In queue.xml, the maximum allowed bucket size is now 100.
1205 - Removed limits on zigzag merge-join queries. Therefore the error "The built-in
1206   indices are not efficient enough for this query and your data. Please add a
1207   composite index for this query." will no longer be thrown in most cases,
1208   enabling more types of queries without indexes.
1209 - The whitelist has been updated to include java.net.InetAddress and some
1210   interfaces and abstract classes in javax.xml.soap, including
1211   javax.xml.soap.SOAPMessage.
1212 - Fixed an issue reserving App Ids by owners of emails containing periods,
1213   multiple cases, and googlemail.com address.
1214     http://code.google.com/p/googleappengine/issues/detail?id=1196
1215 - Fixed an issue where TaskOptions had no public getters, making testing
1216   impossible.
1217     http://code.google.com/p/googleappengine/issues/detail?id=3243
1218 - Fixed an issue on the development server where PNGs were being returned as
1219   JPEGs.
1220     http://code.google.com/p/googleappengine/issues/detail?id=3661
1222 Version 1.3.7
1223 =============
1224 - Fixed an SDK issue where calling getServingUrl raised an exception.
1225     http://code.google.com/p/googleappengine/issues/detail?id=3598
1227 Version 1.3.6
1228 =============
1229 - Multitenancy is now supported in the datastore, allowing better
1230   compartmentalization of user data.
1231 - Automatic image thumbnailing is now available in the Images API using
1232   getServingUrl.
1233 - Users can now serve custom static error pages for over_quota, dos_api_denial
1234   and default cases.
1235 - Results of datastore count() queries and offsets for all datastore queries
1236   are no longer capped at 1000.
1237 - Added a pause queue button to the task queue details page in the Admin
1238   Console.
1239 - Historical graphs have been added to all of the dashboard graphs in the Admin
1240   Console.
1241 - Content-range headers are supported on Blobstore downloads.
1242 - New method to allocate datastore ids in a given range: allocateIdRange()
1243 - The app.yaml format is supported with Java applications.
1244 - Increased several rate limited quotas for free applications.
1245 - Fixed an issue that did not allow forms of over 200,000 bytes to be submitted.
1246    http://code.google.com/p/googleappengine/issues/detail?id=1608
1248 Version 1.3.5
1249 =============
1250 - Ability to configure the Task Queue storage limit with the
1251   total-storage-limit field in the queue.xml file.
1252 - Task Queues now support up to 50 qps per queue, up from 50 qps per app.
1253 - Developers can programmatically access Blobs with BlobstoreInputStream, which
1254   provides an InputStream view of a blob in Blobstore
1255 - Bulkloader transform helpers for lists and hierarchical keys were added.
1256 - remote_api_shell commands can be sent over HTTPS or HTTP.
1257 - Admin Console logs now include information on request time latency.
1258 - The datastore now supports end cursors.
1259 - Fixed an issue where requesting /appstats would not properly direct to
1260   /appstats/.
1261 - Fixed an issue with inconsistent URL mappings between the SDK and production.
1262     http://code.google.com/p/googleappengine/issues/detail?id=2598
1264 Version 1.3.4
1265 =============
1266 - Client side bulkloader available with the Python SDK that has a new
1267   configuration syntax and wizard for easier import/export with the datastore.
1268   Can be used by enabling remote_api in your Java application
1269 - Applications can now be configured to authenticate with OpenID by selecting
1270   the OpenID option when creating your application in the admin console
1271     http://code.google.com/p/googleappengine/issues/detail?id=248
1272     http://code.google.com/p/googleappengine/issues/detail?id=56
1273 - New API to allow App Engine apps to act as OAuth service providers
1274     http://code.google.com/p/googleappengine/issues/detail?id=919
1275 - The version update check in the Java SDK now uses https
1276 - Allow full access to javax.el.*
1277     http://code.google.com/p/googleappengine/issues/detail?id=3157
1278 - Increased the timeout during deployment to 15 minutes
1279 - Fixed an issue with JPA where an illegal cast exception was thrown during the
1280   fetch of integer fields
1281 - MemcacheService.setNamespace() is deprecated in favor of
1282   MemcacheServiceFactory.getMemcacheManager(namespace)
1283 - Support in the SDK for Java 1.5 is being deprecated. These warnings now appear
1284   when starting the SDK
1286 Version 1.3.3.1
1287 ===============
1288 - Fixed an issue where servlet filters could cause 404s
1289     http://code.google.com/p/googleappengine/issues/detail?id=3138
1291 Version 1.3.3
1292 =============
1293 - Added two new system properties com.google.appengine.application.id and
1294   com.google.appengine.application.version
1295 - DeadlineExceededException is now always thrown before
1296   HardDeadlineExceededError
1297 - Decreased likelihood of "Too many URLMap" deployment errors for complex
1298   web apps
1299 - Fixed an error where QuotaService.getCpuTimeInMegaCycles() was returning
1300   cycles instead of megacycles
1301 - Fixed an issue between differing behavior of jsp in the production and
1302   development environments
1303     http://code.google.com/p/googleappengine/issues/detail?id=3022
1304 - Fixed an issue uploading webapps with .tag files
1305     http://code.google.com/p/googleappengine/issues/detail?id=2902
1307 Version 1.3.2
1308 =============
1309 - New API to read the contents of uploaded Blobs (fetch_data)
1310     http://code.google.com/p/googleappengine/issues/detail?id=2536
1311 - URLFetch now supports accessing ports 80-90, 440-450, and 1024-65535
1312 - Mail API now allows common document formats as attachments
1313     http://code.google.com/p/googleappengine/issues/detail?id=494
1314 - The Task Queue API now supports adding multiple tasks in a single call to
1315   Queue.add()
1316 - Fixed charset handling for inbound emails
1317     http://code.google.com/p/googleappengine/issues/detail?id=2326
1318 - Fixed issue with compositing background colors in dev_appserver
1319 - New feature in the datastore to specify whether to use strong or eventually
1320   consistent reads (the default is strong)
1321 - New datastore feature allows setting deadlines for operations
1322 - Increased the maximum Task Queue refill rate from 20/s to 50/s
1323 - Support for IP blacklisting to prevent denial of service (DoS) attacks
1324 - App Stats is now available for the Java SDK in addition to Python
1325 - Fix issue with expiration times not being reset on Put on the Memchache API
1326     http://code.google.com/p/googleappengine/issues/detail?id=1284
1327 - Fix issue preventing static files from being served when a servlet is mapped to root
1328     http://code.google.com/p/googleappengine/issues/detail?id=1379
1330 Version 1.3.1
1331 =============
1332   - Datastore Query Cursors
1333       http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Query_Cursors
1334   - Transactional Tasks
1335   - Support for Custom Admin Console pages
1336   - Java Precompilation is now on by default
1337       Developers can opt-out of precompilation by setting the flag in
1338       appengine-web.xml:
1339       <precompilation-enabled>false</precompilation-enabled>
1340   - New built-in support for unit testing (see appengine-testing.jar)
1341       http://code.google.com/appengine/docs/java/tools/localunittesting.html
1342       http://code.google.com/p/googleappengine/issues/detail?id=326
1343   - net.sf.jsr107 package included as an alternative to the low-level
1344     Memcache API
1345   - javax.annotation.Resource/Resources added to the package whitelist
1346   - New "month" and "synchronized" syntax for Cron configuration
1347       http://code.google.com/appengine/docs/java/config/cron.html
1348   - URLFetch supports asynchronous requests
1349       http://code.google.com/p/googleappengine/issues/detail?id=1899
1350   - appcfg.sh uses HTTPS for application deployment
1351   - appcfg.sh adds request_logs --append
1352   - Changes to the order queries without a specified sort order are returned
1353     Only queries that use IN will see different results.
1354   - Added support for multiple != filters on the same property
1355   - Improved support for keys-only queries when using IN and != filters
1356   - Support for ETags, If-matches, If-not-matches HTTP Headers, as well as 304
1357     status codes now available on static files (not yet available on the
1358     dev_appserver or Blobstore blobs)
1359       http://code.google.com/p/googleappengine/issues/detail?id=575
1360   - Fixed issue where the maximum transform count was enforced for composite
1361     operations
1362       http://code.google.com/p/googleappengine/issues/detail?id=1656
1363   - Fixed issue with whitespace on the end of strings in web.xml
1364       http://code.google.com/p/googleappengine/issues/detail?id=2242
1365   - Fixed web.xml <error-page> entries for 404 error codes
1366       http://code.google.com/p/googleappengine/issues/detail?id=1477
1367   - Added validation prevent welcome-files with absolute paths
1368       http://code.google.com/p/googleappengine/issues/detail?id=1249
1369   - Fixed issue where cancelling a deployment in progress could unintentionally
1370     corrupt the SDK
1371       http://code.google.com/p/googleappengine/issues/detail?id=2255
1372   - Fixed issue with QuotaService.getCpuTimeInMegaCycles() returning 0
1373       http://code.google.com/p/googleappengine/issues/detail?id=2639
1374   - Fixed issue where JSP exceptions will be incorrectly cast causing a
1375     ClassCastException
1376       http://code.google.com/p/googleappengine/issues/detail?id=1438
1378 Version 1.3.0
1379 =============
1380   - Support for the new Blobstore API
1381   - New com.google.appengine.runtime.{version,environment} system properties
1382     (and a SystemProperty accessor class)
1383   - New sample applications for GWT 2.0
1384   - Optimizations for many reflection operations
1386 Version 1.2.8
1387 =============
1388   - Support for JAXB. JAXB is included in JDK 1.6 (and App Engine's production
1389     servers). If you're using JDK 1.5 with your local dev_appserver, you will
1390     need to include the JAXB libraries with your application to use it.
1391       http://code.google.com/p/googleappengine/issues/detail?id=1267
1392   - New support for application pre-compilation to reduce the length of
1393     loading requests. To enable pre-compilation on your application, add this
1394     flag to your appengine-web.xml:
1395       <precompilation-enabled>true</precompilation-enabled>
1396     If you have trouble deploying your application, you should remove this
1397     flag or set it to false.
1398   - Added Quota API (com.google.appengine.api.quota) to match Python API.
1399   - Low-level Memcache API now supports batchIncrement().
1400   - HTTPResponse object now has getFinalUrl() method for 302 redirects.
1401     - http://code.google.com/p/googleappengine/issues/detail?id=1464
1402   - Java Dev Appserver now automatically executes tasks.  If you prefer the
1403     old behavior where tasks do not automatically execute you can use the
1404     following flag when starting the server:
1405       -Dtask_queue.disable_auto_task_execution
1406   - Additional file extensions permitted when sending mail.
1407     - http://code.google.com/p/googleappengine/issues/detail?id=494
1408   - Fixed issue with Java mail handler not processing multipart messages
1409     correctly.
1410   - Fixed agent code included in appengine-local-runtime.jar results in
1411     RuntimeException.
1412     - http://code.google.com/p/googleappengine/issues/detail?id=2280
1413   - Fixed issue with sort orders defined on properties that allow multiple
1414     values.
1415     - http://code.google.com/p/googleappengine/issues/detail?id=2349
1416   - Fixed problem with dropped query strings after requiring log-in.
1417     - http://code.google.com/p/googleappengine/issues/detail?id=2225
1418   - Removed limitation preventing multiple parameters with the same name.
1419     - http://code.google.com/p/googleappengine/issues/detail?id=2090
1420   - Fixed issue with local datastore incorrectly sorting results of ancestor
1421     queries.
1422     - http://code.google.com/p/googleappengine/issues/detail?id=2177
1423   - New Index building status page in the Admin Console
1424   - Task Queue now supports purging queues, and deleting tasks and queues via
1425     the Admin Console.
1426     - http://code.google.com/p/googleappengine/issues/detail?id=2159
1427     - http://code.google.com/p/googleappengine/issues/detail?id=1740
1428   - Over Quota HTTP status code changed from 403 to 503, other to 500.
1429     - http://code.google.com/p/googleappengine/issues/detail?id=961
1430   - Task Queue now considers all HTTP 2xx status codes to represent success.
1432 For past release notes, visit:
1433 http://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes