diff options
author | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-04-11 15:57:07 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-04-15 09:54:20 +0000 |
commit | 434a2628cf23c72b329d18ee05a6fc03b13685dd (patch) | |
tree | 1a462c17aa99f63e5be65f608bded2c2ebb01862 /WebContent | |
parent | fcc7895d4bbc2e37b473708b00912ecadbf1722a (diff) | |
download | vaadin-framework-434a2628cf23c72b329d18ee05a6fc03b13685dd.tar.gz vaadin-framework-434a2628cf23c72b329d18ee05a6fc03b13685dd.zip |
Add a section on incompatible changes to release-notes (#13502)
Change-Id: I73cc9c7b5509dff0cb5376af9bf4b0ef572add05
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/release-notes.html | 72 |
1 files changed, 60 insertions, 12 deletions
diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index 01cf665c5d..dccc82e1bf 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -46,6 +46,12 @@ @version@</a></li> <li><a href="#enhancements">Enhancements in Vaadin @version-minor@</a></li> + <li><a href="#incompatible">Incompatible changes in + @version-minor@</a></li> + <li><a href="#behavioraltering">Behavior altering + changes in @version-minor@</a></li> + <li><a href="#knownissues">Known issues in + @version-minor@</a></li> <li><a href="#limitations">Limitations in @version-minor@</a></li> <li><a href="#vaadin">Vaadin Installation</a></li> @@ -76,44 +82,44 @@ href="http://vaadin.com/download/release/@version-minor@/@version-minor@.0/release-notes.html">Release Notes for Vaadin @version-minor@.0</a>. </p> - + <!-- ================================================================ --> <h3 id="security-fixes">Security fixes in Vaadin Framework 7.1.11</h3> - + <p> - Vaadin 7.1.11 fixes two security issues discovered during internal review. + Vaadin 7.1.11 fixes two security issues discovered during internal review. </p> <p><b>Escaping of OptionGroup item icon URLs</b></p> <p> - The issue affects OptionGroup with item icons. Proper escaping of the - src-attribute on the client side was not ensured when using icons for + The issue affects OptionGroup with item icons. Proper escaping of the + src-attribute on the client side was not ensured when using icons for OptionGroup items. This could potentially, in certain situations, allow - a malicious user to inject content, such as javascript, in order to + a malicious user to inject content, such as javascript, in order to perform a cross-site scripting (XSS) attack. </p> <p> In order for an application to be vulnerable, user provided input must - be used to form a URL used to display an icon for an OptionGroup item, + be used to form a URL used to display an icon for an OptionGroup item, when showing that Option Group to other users.<br/> The vulnerability has been classified as moderate, due to it's limited - application. + application. </p> <p><b>Escaping of URLs in Util.getAbsoluteUrl()</b></p> <p> The client side Util.getAbsoluteUrl() did not ensure proper escaping of the given URL. This could potentially, in certain situations, allow - a malicious user to inject content, such as javascript, in order to + a malicious user to inject content, such as javascript, in order to perform a cross-site scripting (XSS) attack. </p> <p> The method is used internally by the framework in such a manner that it is unlikely this attack vector can be utilized in practice. However, - third party components, or future use of the method, could make an + third party components, or future use of the method, could make an attack viable.<br/> The vulnerability has been classified as moderate, due to it's limited - application. + application. </p> - + <h3 id="changelog">Change log for Vaadin @version@</h3> <p>This release includes the following closed issues:</p> @@ -182,6 +188,48 @@ Notes for Vaadin 7.0.0</a>. </p> + <h3 id="incompatible">Incompatible changes</h3> + <ul> + <li>It is assumed that the UI will no longer be used after Page.setLocation + is called. Do not use this to start downloads.</li> + <li>The portlet requests class VaadinGateinRequest is now called + VaadinGateInRequest</li> + <li>The JSON library has been changed from org.json to the json implementation + from the Android SDK. They are 99% compatible.</li> + <li>StringToNumberConverter has been removed in favor of more specific + converters such as StringToBigDecimalConverter.</li> + <li>(internal) Atmosphere has been updated from version 1.x to 2.x. These + are not 100% compatible.</li> + <li>(internal) There is no longer support for "multiple variable bursts" + in the UIDL communication.</li> + </ul> + <h3 id="behavioraltering">Behavior altering changes</h3> + <ul> + <li>Default push fallback is now long-polling</li> + <li>VerticalLayout and HorizontalLayout.replaceComponent now applies old + component parameters (e.g. expand ratio) to the new component. This is + now consistent between all layouts in the framework, where relevant + properties are applied to the replacement.</li> + <li>All GWT permutations are collapsed when using DefaultWidgetSet. To use + separate permutations, inherit Vaadin instead of DefaultWidgetSet and + add the needed entry-point.</li> + <li>Requests to "/context;jsessionid=xyz" are redirected to + "/context/;jsessionid=xyz" which is against specifications but based + on how jsessionid is used</li> + <li>Adding a ValueChangeListener to a component will make it immediate</li> + <li>ComboBox is immediate by default</li> + </ul> + + <h3 id="knownissues">Known issues</h3> + <ul> + <li>Not all features are implemented for devices using pointer events.</li> + <li>Push reconnecting does not work in all situations when</li> + <ul> + <li>using Firefox and streaming</li> + <li>using IE8-11 and long-polling</li> + </ul> + </ul> + <h3 id="limitations">Limitations</h3> <ul> <li>It is currently not possible to specify <tt>font-size</tt> |