You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. # Vaadin 8 extended maintenance version changelog
  2. ## Vaadin 8.25.2
  3. * Defined Vaadin License Checker version as a variable in the root POM in order to fix OSGI packaging. The packaging change in 8.25.1 exposed this issue.
  4. * Mitigated the performance overhead caused by the Grid changes in 8.25.0, namely the re-layouting of a Grid on scroll is now only performed when a ComponentRenderer is present.
  5. ## Vaadin 8.25.1
  6. * Reverted a fix for a ComboBox issue where, if a filter was applied and the user opens the dropdown choice menu, the currently selected choice was not initially being scrolled into view. This fix had the side effect of making it impossible to scroll the dropdown menu in certain cases. The fix for the original issue will be re-implemented in a side-effect free manner in a future release.
  7. * Fixed a packaging issue, where the Vaadin license checker and Vaadin Open were incorrectly being included as part of the vaadin-server artifact. This caused a cascade of classpath conflict warnings on startup. As far as we're aware, this problem appeared to be completely cosmetic but was causing concern for some users.
  8. * Added a missing style rule for FormLayout's disabled caption opacity when using the light Valo theme.
  9. * Updated the license checker version.
  10. ## Vaadin 8.25.0
  11. * Added feature in Grid that allows setting the order of the hidable columns as presented in the Grid sidebar menu. The list can now be sorted either as `DEFAULT`, `ASCENDING` or `DESCENDING`. Default order is the same as the presentation order in the Grid. Ascending and descending ordering use the set title of each hidable column, sorted alphabetically.
  12. * The new API can be found in Grid - `grid.setSidebarColumnOrder(GridConstants.SidebarColumnOrder order)` and the corresponding getter `grid.getSidebarColumnOrder()`.
  13. * Fixed edge-case issue [#12611](https://github.com/vaadin/framework/issues/12611) where a combination of a TabSheet inside of a FormLayout inside of a TabSheet would be rendered with 0px width.
  14. * Added a workaround for Grid issue [#12608](https://github.com/vaadin/framework/issues/12608) where using a layout component containing multiple subcomponents inside a Grid cell with a `ComponentRenderer` would cause rendering to break.
  15. * This workaround schedules re-layouting of the Grid after each scroll event. As a result, minor slowdowns in complex Grids can occur in some cases.
  16. * If you are experiencing performance issues with your Grids after upgrading to Vaadin 8.25.0, please open a support ticket at [support.vaadin.com](https://support.vaadin.com/).
  17. * Improved the documentation of the TestBench `TextFieldElement` class.
  18. ## Vaadin 8.24.0
  19. * Removed support for Adobe Flash in the form of the Flash widget and Flash type support in Embed. Adobe Flash has not been supported at all in modern browsers since 2021, and has had several known security issues long before that, to the point that security auditing tools will now actively flag the dormant Flash support code in Vaadin Framework as "harmful".
  20. * The Flash widget and the parts of the Embedded widget specifically providing Flash support are no longer present in Vaadin Framework, meaning that any software currently relying on the Flash widget will fail to compile.
  21. * The existing Flash widget and Embedded support is planned to be provided in the form of an add-on for those that need it, but at the time of the release of Vaadin 8.24.0 this add-on is not yet available.
  22. * If your application still relies on Flash support, please contact [support@vaadin.com](mailto:support@vaadin.com) or alternatively open a ticket at [support.vaadin.com](https://support.vaadin.com/).
  23. * Removed a reference to ActiveXObject used in the bootstrap script, which was a workaround needed for Internet Explorer versions up to version 9. Support for Internet Explorer 9 finally ended on January 9, 2024 for Azure customers.
  24. * At this point, the only Internet Explorer version receiving any kind of support from Microsoft is Internet Explorer 11. Customers should be aware, though, that support for IE11 is only offered on a "best effort" basis, in that we will actively attempt to not break features that worked on IE11 in the past, but no new code or fixes are being built with IE11 or even tested against it.
  25. It should be noted that all support for Internet Explorer 11 as well as compatibility code for IE11 may be removed from Vaadin Framework after extended support for IE11 ends.
  26. * Fixed a Drag & Drop issue that prevented dragging of certain widgets on some browsers and operating systems, but not on others. Widget dragging behavior should now be stable on all platforms.
  27. * See [issue #12604](https://github.com/vaadin/framework/issues/12604).
  28. * Fixed scroll bar behavior on Firefox in several widgets.
  29. * See [issue #12605](https://github.com/vaadin/framework/issues/12605).
  30. * Made sure DataProvider I/O streams are closed eagerly to avoid resource leaks. Framework cannot reliably detect which streams are affected, so all potentially susceptible streams are now handled using a try-with-resources pattern.
  31. * In applications that call the methods directly it's sufficient to use the pattern only with DataProviders that open I/O channels during data requests.
  32. * See [Flow issue #18551](https://github.com/vaadin/flow/issues/18551) and [Flow pull request #18552](https://github.com/vaadin/flow/pull/18552).
  33. * Several improvements have been made to Binder:
  34. * Validation has been improved as follows
  35. * Once `Binder.handleFieldValueChange` runs for a binding when readBean was used, the whole binder will be silently validated also. BinderValidationStatusHandler is called like before (only contains status from changed binding), but StatusChangeEvent is now fired considering all bindings and if possible bean validators as well.
  36. * Once `Binder.handleFieldValueChange` runs for a binding when setBean was used, doWriteIfValid will validate all bindings, not only the changed ones. This prevents writing an invalid bean in cases where one or more of the initial values are in invalid state (but not marked as such since setBean resets validation status), but they have not been changed from their initial value(s).
  37. * Calling setAsRequiredEnabled with a changed value no longer triggers validation, since that validation is now handled elsewhere when needed as stated above.
  38. * It is now possible to check for changes for a specific binding via the `Binder.hasChanges` method. This is a backported feature from Flow.
  39. * See [Flow issue #17395](https://github.com/vaadin/flow/issues/17395) and [Flow pull request #17861](https://github.com/vaadin/flow/pull/17861).
  40. * It is now possible to only write the changed properties to a Bean through an overloaded `Binder.writeBean` method that now accepts an additional Collection parameter. This is a backported feature from Flow.
  41. * See [Flow issue #185383](https://github.com/vaadin/flow/issues/18583) and [Flow pull request #18636](https://github.com/vaadin/flow/pull/18636).
  42. * Several internal tests were fixed for improved build stability.
  43. ## Vaadin 8.23.0
  44. * Implemented eager UI cleanup through the Beacon API. Previously UIs would be cleaned up after several consequtive missed heartbeats. Now, closing the browser or tab or navigating away from the page sends a message to the server to notify it of such, allowing the UI to be destroyed immediately.
  45. This should result in lower server resource usage without any modifications to the software. However, this feature does come with some caveats:
  46. * This feature is not available for Internet Explorer clients. Our testing showed that Internet Explorer will report compatibility with the API, but fail to function as expected. As such, the feature is disabled for IE.
  47. * Vaadin 8 included a LegacyApplication class for Vaadin 6 compatibility that was a holdover from Vaadin 7 and should have been removed with the release of Vaadin 8. This feature may cause systems extending the LegacyApplication class to close and not reopen when the first client closes their window.
  48. If this is a problem for your application, please contact Vaadin Support.
  49. * Should you experience ANY abnormal behavior as it pertains to UI instance availability with this version of Vaadin but not with 8.22.0, please let us know by creating a support ticket.
  50. * Improved stability of internal tests and build.
  51. * Fixed JavaDoc generation and deployment to [vaadin.com/api](https://vaadin.com/api).
  52. ## Vaadin 8.22.0
  53. * Added Read-Only mode support to Grid and Compatibility Grid.
  54. The Read-Only mode can be engaged using the *existing* API
  55. call `grid.setReadOnly(true)`. This mode disallows
  56. editing of the Grid, while still allowing scrolling. This was
  57. added as the previous way to disallow editing in an otherwise
  58. editable grid was to call `grid.setDisabled(true)`, but
  59. that would also stop users from scrolling through data.
  60. * Added missing style class name strings in `ValoTheme`, to allow
  61. cleaner access to menu and navigation elements in the style.
  62. The new fields are
  63. * `MENU_SELECTED`
  64. * `MENU_TOGGLE`
  65. * `MENU_VISIBLE`
  66. * `MENU_ITEMS`
  67. * `MENU_USER`
  68. * `NAV_CONTENT`
  69. * `SCROLLABLE`
  70. See JavaDoc for usage descriptions. Previouly, access to these
  71. classes had to be done through magic strings in the application.
  72. * Fixed an issue with `DateField` event propagation when the
  73. backend doesn't immediately service the request. Events would
  74. get queued and then sent stale and out of order, resulting in
  75. the server side getting false user interaction events from
  76. the `DateField`.
  77. * Updated `jetty` dependency to address CVE-2023-36479.
  78. ## Vaadin 8.21.0
  79. * Framework 8 builds are now made on Java 11. The resulting
  80. JARs are still fully compatible with Java 1.8 runtimes, but
  81. only Java 11 SDKs are supported for building Framework 8
  82. for the 8.21 series.
  83. Build-time compatibility with Java 17 SDKs is being
  84. investigated, but is not yet available.
  85. If you wish to **run** Vaadin 8 on Java 9+ JREs, you *must*
  86. set the Java environment value
  87. `java.locale.providers=COMPAT`, otherwise locale
  88. dependent conversions (country code, currency, etc) WILL be
  89. inconsistent with Java 8 behavior, potentially leading to
  90. data loss.
  91. Minimum Maven version to build Vaadin 8 is now **3.6.2**.
  92. Included new dependencies:
  93. * `javassist` version 3.29.2-GA
  94. * `maven-enforcer-plugin` 3.3.0
  95. Updated supporting Maven plugins:
  96. * `maven-clean-plugin` from 3.0.0 to 3.2.0
  97. * `maven-compiler-plugin` from 3.5.1 to 3.11.0
  98. * `maven-site-plugin` from 3.5 to 3.12.1
  99. * `maven-jar-plugin` from 2.6 to 3.2.2
  100. * `maven-surefire-plugin` from 2.19.1 to 2.22.2
  101. * `maven-failsafe-plugin` from 2.19.1 to 2.22.2
  102. * `maven-dependency-plugin` from 3.0.1 to 3.5.0
  103. * `exec-maven-plugin` from 1.6.0 to 3.1.0
  104. * `versions-maven-plugin` from 2.3 to 2.15.0
  105. * `build-helper-maven`-plugin 1.10 to 1.12
  106. * `maven-source-plugin` 3.0.1 to 3.2.1
  107. * `maven-checkstyle-plugin` from 3.2.0 to 3.2.2
  108. * Upgraded GWT dependency to 2.9.0 in order to make Framework 8
  109. more compatible with other Vaadin products and modern build
  110. environments, as well as to improve compatibility with modern
  111. browsers.
  112. * Fixed all JavaDoc generation errors and cleaned up some API
  113. documentation along the way, resulting in better IDE
  114. compatibility and cleaner formatting of the resulting
  115. documentation.
  116. * Fixed a bug in the long polling push transport when the sync id
  117. check is disabled, leading to the server continuously pushing.
  118. This is a backported fix from Flow, see
  119. [issue #17237](https://github.com/vaadin/flow/issues/17237)
  120. [pull request #17238](https://github.com/vaadin/flow/pull/17238).
  121. * Added new API in `VaadinSession.java` which allows
  122. setting priority of UIProviders. The function
  123. `VaadinSession.addUIProvider` now takes an extra integer
  124. parameter, which makes it possible to explicitly set priority
  125. of the UI providers as they're added.
  126. Additionally, the functions
  127. `VaadinSession.getUIProviderPriority` and
  128. `VaadinSession.setUIProviderPriority` were added, which
  129. can be used together with `VaadinSession.getUIProviders`
  130. to alter the ordering of all UI providers added to the Session.
  131. It is also possible to specify the priority of the default UI
  132. providers by setting the `UIPriority` value as part of
  133. the `DeploymentConfiguration`.
  134. This does not alter default behavior. The default `UIProvider`
  135. priority is 0; higher values get processed first. Providers with
  136. the same priority will be processed in the order they were added.
  137. See the VaadinSession JavaDoc for more information.
  138. * Updated internal Jetty depdency from version `9.4.48.v20220622`
  139. to version `9.4.51.v20230217` to avoid a false positive
  140. security alert. The internal Jetty server is only used for
  141. running tests at build time.
  142. * Updated plexus-archiver version in vaadin-maven-plugin to `4.8.0`
  143. in order to fix a potential security vulnerability.
  144. ## Vaadin 8.20.3
  145. * Fixed an issue where compile-time license checking would fail on CI servers with release-only license files.
  146. * Pinned `nimbus-jose-jwt` version in order to ensure that apps can still run under included Jetty on Java 8 VMs. Newer versions of `nimbus-jose-jwt` include a `meta-info` class that JVM 8 implementations cannot load. `nimbus-jose-jwt` was included as a transitive dependency.
  147. ## Vaadin 8.20.2
  148. * Removed mentions of NetBeans Plugin, since it has not been maintained and is no longer usable in modern versions of NetBeans. Usage of NetBeans for Vaadin development is still possible, but it is not explicitly supported through a special plugin.
  149. * Improved build system; maven-flatten-plugin is now correctly invoked and build system related version numbers were bumped. This change should not affect users.
  150. ## Vaadin 8.20.1
  151. * Fixed a bug in TwinColSelect, which caused incorrect layouting on Firefox on some platforms. The issue was similar to the problem discussed in [#9175](https://github.com/vaadin/framework/issues/9175)
  152. * Updated `license-checker` to the latest available version for better user experience and MPR compatibility.
  153. * Mitigated false positive reports of security vulnerabilities by adding maven-flatten-plugin to the build process. This strips out testing artifacts from the released POMs so that the released artifacts are not marked as vulnerable.
  154. ## Vaadin 8.20.0
  155. * Moved vaadin-portlet package contents from com.vaadin.server to com.vaadin.portlet namespace. This is a BREAKING CHANGE and will require you to update your imports. This is a necessary change in order to be able to support OSGi deployments (specifically under the latest Liferay 7 releases.
  156. * ***PLEASE NOTE THAT THIS IS A BREAKING CHANGE!*** - you need to update references to classes provided by `vaadin-portlet` from the `com.vaadin.server` to the `com.vaadin.portlet` namespace. The complete list of classes is as follows:
  157. * `com.vaadin.portlet.LegacyVaadinPortlet`
  158. * `com.vaadin.portlet.RestrictedRenderResponse`
  159. * `com.vaadin.portlet.VaadinPortlet`
  160. * `com.vaadin.portlet.VaadinPortletRequest`
  161. * `com.vaadin.portlet.VAadinPortletService`
  162. * `com.vaadin.portlet.VaadinPortletSession`
  163. * `com.vaadin.portlet.WrappedPortletSession`
  164. and
  165. * `com.vaadin.portlet.communication.PortletBootstrapHandler`
  166. * `com.vaadin.portlet.communication.PortletDummyRequestHandler`
  167. * `com.vaadin.portlet.communication.PortletListenerNotifier`
  168. * `com.vaadin.portlet.communication.PortletStateAwareRequestHandler`
  169. * `com.vaadin.portlet.communication.PortletUIInitHandler`
  170. If you've referenced any of these classes, they will have been in the `com.vaadin.server` and `com.vaadin.server.communication` packages, respectively.
  171. * Improved OSGi packaging for vaadin-portlet. See issue [#12575](https://github.com/vaadin/framework/issues/12575).
  172. * Fixed an issue where push connections could get stuck when using `@PreserveOnRefresh` as requests intended for a new push connection would instead be queued on an old one. Now old connections are closed immediately on reconnect. See issue [#12577](https://github.com/vaadin/framework/issues/12577).
  173. * Fixed Push connection operations synchronization so that a connection won't be disconnected while there are messages pending. This would result in NullPointerExceptions being thrown. Makes the isConnected() call correctly reflect current state. This is a backported fix from Flow. See Flow issue [#15571](https://github.com/vaadin/flow/issues/15571).
  174. * Fixed an issue where undelivered push messages would get lost, resulting in a need for UI resynchronization. Push messages are now kept in cache until a client acknowledges receipt. This is a backported fix from Flow. See Flow issue [#15205](https://github.com/vaadin/flow/issues/15205).
  175. * Improved performance in UIs with assertions enabled. Some assertions would check for the presence of MPR on every run. MPR is now only detected once and the check result is cached. See issue [#12572](https://github.com/vaadin/framework/issues/12572).
  176. ## Vaadin 8.19.0
  177. * Changed license from Commercial Vaadin Developer License 4.0 to Vaadin Commercial License version 1. This change does not affect active subscribers, but it does mean that future releases of Vaadin Framework may move from dev- and build-time license checking to runtime license checking. Version 8.19.0 does not do that yet.
  178. See LICENSE file in the downloadable package or [the Vaadin Commercial License and service terms document](https://vaadin.com/commercial-license-and-service-terms) for more information.
  179. * Fixed issue [#12562](https://github.com/vaadin/framework/issues/12562). The internal state of ComboBox got confused when adding new items after calling `clear()`.
  180. * Improved the `vaadin-server-mpr-jakarta` and `vaadin-compatibility-server-mpr-jakarta` POM dependency definitions such that these packages do not pull in `vaadin-server` and `vaadin-compatibility-server` as unwanted dependencies, respectively.
  181. * Fixed a number of assertion functions which would fail when MPR was in use. Improves testability of the framework and should allow running with assertions enabled in MPR configurations.
  182. * Removed logging of Atmosphere version while MPR is in use. This fixes runtime failures under some configurations.
  183. * Updated Atmosphere to version 2.4.30-vaadin5 in order to make Vaadin Framework 8 compatible with Jetty 10.
  184. * Updated Vaadin License Checker to version 1.11.2 to support new license model.
  185. ## Vaadin 8.18.0
  186. * Fixed issue [#12560](https://github.com/vaadin/framework/issues/12560) by improving Grid's horizontal scrolling scrolling logic.
  187. * Fixed an issue in Combobox where scrolling to selection would fail if the user had typed into the input field. Possibly related to [#12562](https://github.com/vaadin/framework/issues/12562).
  188. * Added `runAfterRoundTrip` API to the UI class for improved sequence control, allowing execution of a callback after one or more client-server round trips have been completed.
  189. * Separated portlet support code out of `vaadin-server` into its own package, `vaadin-portlet`. **This will break your build** if your application makes use of Portlet classes and you do not import the `vaadin-portlet` dependency.
  190. * Added support for Vaadin Multiplatform Runtime version 24+ by adding packages `vaadin-server-mpr-jakarta` and `vaadin-compatibility-server-mpr-jakarta`. This is only needed for MPR 24+, and is ***NOT*** guaranteed to work as generic Jakarta support (even though it does so at the moment) as we may add MPR specific functionality or even hard MPR dependencies in the future.
  191. ## Vaadin 8.17.0
  192. * Improved hierarchical data container handling, resulting in increased speed and correcting some potential memory leaks.
  193. * Fixed an issue in Grid's MultiSelect mode introduced by performance improvements made to Vaadin 8.16.0 which would erroneously cause a refreshed data item to become selected.
  194. * Fixed an issue introduced in Vaadin 8.15.1's Grid focus stealing fix where the focus stealing prevention would become overly zealous.
  195. * Updated JSoup version from 1.14.3 to 1.15.3. This is a **BREAKING CHANGE** for many projects, as it requires **you** to find all references to `org.jsoup.safety.Whitelist` and replace them with references to `org.jsoup.safety.Safelist`. The API of the two classes is the same; `Safelist` is a drop-in replacement for `Whitelist`. This change was made to all Vaadin versions simultaneously to address [CVE-2022-36033](https://ossindex.sonatype.org/vulnerability/CVE-2022-36033) and keep the dependencies in line for use with [Vaadin MPR](https://vaadin.com/docs/latest/tools/mpr/overview).
  196. * Updated PuppyCrawl dependency from version 8.18 to 8.29
  197. * Updated CheckStyle dependency from version 2.17 to 3.2.0
  198. ## Vaadin 8.16.1
  199. * Fixed a failure-to-start condition on some server configurations (e.g. Tomcat) caused by the connector map cleanup logic change in 8.16.0
  200. * Updated Jetty version from 9.4.43.v20210629 to 9.4.48.v20220622 to fix a potential security issue
  201. * Updated License Checker version to support Vaadin 8 together with the latest Vaadin Flow in MPR configurations
  202. * Updated the license information provided by vaadin-root POM to correctly show CVDL-4 as the project license instead of Apache-2.0
  203. ## Vaadin 8.16.0
  204. * Introduced Snippets feature for the RichTextArea component
  205. * Moved connector map cleaning logic invocation from UI.unlock() to VaadinService.requestEnd() when not using Push
  206. * Improved Grid multi-select performance
  207. * Backported automatic conversion support and other Binder improvements from Vaadin Flow
  208. ## Vaadin 8.15.2
  209. * Added support for Liferay kernel versions up to 49
  210. * Changed all resources to use Object.class as interface type to support OSGi Portlets on Liferay CE 7.3.6 GA7 or later ([#12504](https://github.com/vaadin/framework/issues/12504))
  211. ## Vaadin 8.15.1
  212. * Fixed an issue where Grid was moving focus away from external input controls when the datasource contents were updated
  213. * Fixed an issue where manual field binding configurations might get overwritten by automatic binding logic
  214. * Field level verification in Binder is no longer run twice
  215. ## Vaadin 8.15.0
  216. * Change license from Apache 2.0 to CVDLv4
  217. * Add more intuitive resynchronization error message
  218. * Allow scrolling away from a Grid using touch
  219. * Throw exception when attempting to merge BeanPropertySets with identical keys but different value types