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