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