diff options
author | Patrik Lindström <99639133+thevaadinman@users.noreply.github.com> | 2024-12-20 13:02:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 13:02:22 +0200 |
commit | ae531e63f6b61dcddfc2897c36745a656eb7b2cc (patch) | |
tree | 22c8165f631beb8ddbc94c697876a5ebeb468ae1 | |
parent | 833f2d0a8c1bc1ddb4f7c6ce9cc477fe77c8aec9 (diff) | |
download | vaadin-framework-changelog-8.27.4.tar.gz vaadin-framework-changelog-8.27.4.zip |
fix spacingchangelog-8.27.4
-rw-r--r-- | CHANGELOG-VAADIN8.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG-VAADIN8.md b/CHANGELOG-VAADIN8.md index bd90084037..638518b0c2 100644 --- a/CHANGELOG-VAADIN8.md +++ b/CHANGELOG-VAADIN8.md @@ -3,10 +3,14 @@ ## Vaadin 8.27.4 * Added feature to automatically resume Push connection when a client unexpectedly loses communication with the server. Pending Push messages are now cached on the server until the session times out or connectivity is restored for a better user experience. + This is a backport of Flow pull request [#20283](https://github.com/vaadin/flow/pull/20283). * Fixed Framework issue [#11699](https://github.com/vaadin/framework/issues/11699). Previously, calling `UI.getCurrent()` inside a `UI.access()` callback could return a random UI instance under certain circumastances. `CurrentInstance` is now properly cleared before the current session reference is set before running any pending access callbacks. + This is a backport of Flow pull request [#20255](https://github.com/vaadin/flow/pull/20255). -* Moved (some) blocking calls outside of session lock. Fixes a potential deadlock issue. This is a backport of Flow pull request [#20475](https://github.com/vaadin/flow/pull/20475). +* Moved (some) blocking calls outside of session lock. Fixes a potential deadlock issue. + + This is a backport of Flow pull request [#20475](https://github.com/vaadin/flow/pull/20475). * Specified `pointer-events: auto` as default for overlay containers in the Valo theme. This fixes an edge case where users were unable to select values from V8 comboboxes placed inside a V14 Dialog component when running under the Vaadin Multi Platform Runtime. ## Vaadin 8.27.3 |