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