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