aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrik Lindström <99639133+thevaadinman@users.noreply.github.com>2024-01-02 23:34:11 +0200
committerGitHub <noreply@github.com>2024-01-02 23:34:11 +0200
commit1f42a3cd9ad41ba18eb22702d30b464f6821eae7 (patch)
tree923f6f416922f8d517499ed636e0385847bf08ff
parentc4d78a6dad72ea2fe95b8023ef3a5ba73c135277 (diff)
downloadvaadin-framework-1f42a3cd9ad41ba18eb22702d30b464f6821eae7.tar.gz
vaadin-framework-1f42a3cd9ad41ba18eb22702d30b464f6821eae7.zip
Update CHANGELOG-VAADIN8.md for Vaadin 8.23.0 (#12601)8.23.0
-rw-r--r--CHANGELOG-VAADIN8.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG-VAADIN8.md b/CHANGELOG-VAADIN8.md
index 21b1f57720..e76062f64c 100644
--- a/CHANGELOG-VAADIN8.md
+++ b/CHANGELOG-VAADIN8.md
@@ -1,5 +1,16 @@
# Vaadin 8 extended maintenance version changelog
+## Vaadin 8.23.0
+
+* 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.
+ This should result in lower server resource usage without any modifications to the software. However, this feature does come with some caveats:
+ * 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.
+ * 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.
+ If this is a problem for your application, please contact Vaadin Support.
+ * 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.
+* Improved stability of internal tests and build.
+* Fixed JavaDoc generation and deployment to [vaadin.com/api](https://vaadin.com/api).
+
## Vaadin 8.22.0
* Added Read-Only mode support to Grid and Compatibility Grid.