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