From 26d41ac211c4debae5f8323822bd5ec446dbacc0 Mon Sep 17 00:00:00 2001
From: Artur Signell
@@ -124,10 +131,6 @@
browsers, most notably old Internet Explorer versions.
Release Notes for Vaadin Framework
@version@
-
Package Contents
- WebApplicationContext now provides a way to switch the session - id to prevent session fixation attacks -
Notification now supports a plain text mode for its contents
@@ -184,18 +187,27 @@ details of the enhancements can be found at dev.vaadin.com.#7179 PortalDefaultWidgetset no longer automatically tries to - load Google Analytics scripts
-#5924 Browser context menu is no longer prevented in Table if - there is no click handler or no actions enabled
-#7292 TreeTable now renders correctly when pagelength is set to - zero
-#6499 AbstractApplicationServlet.handleDownload now closes - streams properly in case of exceptions
-#7369 It is now possible to use Vaadin components as - SessionScoped beans
-#5738 TabSheet's first visible tab is now always rendered with - the correct style name
+ +
+ #7224 Table context menu does not work before refreshing table contents
+ #7369 Vaadin and CDI - can't use SessionScoped beans
+ #5924 Link as generated table column does not present browser context menu on right click
+ #6499 AbstractApplicationServle#handleDownload() does not close streams in case of exception
+ #7292 Changing pagelength in an expand/collapse listener does not redraw a TreeTable correctly
+ #7322 Column header moves downwards when selected
+ #7387 TreeTable loses formatting when using addGeneratedColumn
+ #7433 GAE integration test should use GAEApplicationServlet
+ #5488 Link: Error when trying to use a link to a file with a percent in the filename
+ #5738 TabSheet's first visible tab should be rendered as if it is the first tab
+ #7032 LoginForm should explicitly define utf-8 charset in getLoginHTML() method
+ #7065 ConcurrentModificationException in AbstractWebApplicationContext.endTransaction() and startTransaction()
+ #7092 TextField does not support setting maxLength=0
+ #7284 Disabling a VNativeButton should set v-disabled style
+ #7338 Column alignment cannot be changed from right/center to left
+ #7340 The rendering is wrong the first time a table column is sorted
+ #7388 Expand/collapse icon offset in IE7
+ #7422 AbstractComponent.setStyleName containing spaces causes illogical results
+
The full @@ -301,7 +313,8 @@ obscure message in other versions of Windows. Workaround: use 7-Zip or some other good unzip program for Windows. -
+ +Session support must be enabled in @@ -324,13 +338,15 @@
Avoid using the session for storage, usual App Engine - limitations apply (no synchronization, i.e, unreliable).
Vaadin uses memcache for mutex, the key is of the form _vmutex<sessionid> . -
The Vaadin WebApplicationContext class is serialized @@ -341,12 +357,14 @@ with identifiers of the type _vac<sessionid> . -
DO NOT update application state when serving an ApplicationResource (e.g ClassResource.getStream()). -
AVOID (or be very careful when) updating application state in a TransactionListener @@ -355,10 +373,12 @@ and changes can thus go missing (it should be safe to update things that can be safely discarded later - i.e valid only for the current request) -
The application remains locked during uploads - a - progress bar is not possible