aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG-VAADIN7.md11
-rw-r--r--CHANGELOG-VAADIN8.md17
2 files changed, 28 insertions, 0 deletions
diff --git a/CHANGELOG-VAADIN7.md b/CHANGELOG-VAADIN7.md
index 035ad8ebb7..72f8a94358 100644
--- a/CHANGELOG-VAADIN7.md
+++ b/CHANGELOG-VAADIN7.md
@@ -1,5 +1,16 @@
# Vaadin 7 extended maintenance version changelog
+## Vaadin 7.7.47
+
+* Fixed the text selection problems within Grid cells, so copying the contents of a single cell is possible
+* Added a Jakarta-compatible Push module
+* Fixed root module POM Source Code Management URLs to point to the correct repository
+
+## Vaadin 7.7.46
+
+* Updated maven plugin with updated dependencies
+* Internal test fixes
+
## Vaadin 7.7.45
* Set no-store headers for error responses
diff --git a/CHANGELOG-VAADIN8.md b/CHANGELOG-VAADIN8.md
index 826fbf008e..1225be702e 100644
--- a/CHANGELOG-VAADIN8.md
+++ b/CHANGELOG-VAADIN8.md
@@ -1,5 +1,22 @@
# Vaadin 8 extended maintenance version changelog
+## Vaadin 8.28.1
+
+* Hotfix: the Grid fix in 8.28.0 that made sure that DOM contents are not altered unless there is a need to update them was missing the logic for the Vaadin 8 version of Grid's TextRenderer, while it was added for the Vaadin 7 compatibility Grid.
+ This hotfix version adds the TextRenderer logic to the Vaadin 8 Grid.
+
+## Vaadin 8.28.0
+
+* Fixed a Grid issue that was affecting at least Firefox where attempts to copy and paste text became difficult or impossible due to how Grid handled cell value updates during a refresh. Cells are refreshed every time a cell is clicked.
+
+* Fixed a MenuBar issue where the popup menu would become detached from the MenuBar and possibly inaccessible if the browser window was resized or scrolled. The popup menu will now be closed if a resize or mousewheel event is detected.
+
+* Improved Grid accessibility regarding navigation.
+ A new accessible navigation mode is introduced which changes Grid focus handling and DOM properties such that NVDA and similar screen readers will correctly announce current cell contents, allow proper tab navigation, properly reacts to header rows and adjusts the handling of the focus visuals to match.
+ This new functionality can be toggled on and off using the API Grid.setAccessibleNavigation(boolean) and the status checked using Grid.isAccessibleNavigation().
+
+* Fixed Combobox behavior so that the aria-expanded property is correctly handled when the combobox dropdown is opened and closed. This fixes combobox related issues with screen readers.
+
## Vaadin 8.27.7
* Major update to Vaadin Maven Plugin to avoid depending on obsolete packages with open CVEs. While none of the affected packages have presented an actual risk to users due to how they were used within the Vaadin build process, they were being flagged as security issues, and as such were undesireable to have in the dependency list.