Vaadin Flow Components V23.6.14
Vaadin Flow Components 23.6.14
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 23.6.13
Changes in All Components
Changes in vaadin-spreadsheet-flow
- Fixes:
-
⧉ Check cell lock state when updating cell comments (#9905) (CP: 23.6). PR:9956
This PR cherry-picks changes from the original PR #9905 to branch 23.6. --- > The
updateCellCommenthandler wrote the comment text into the workbook > without re-checking the sheet protection state. Every other > client-initiated write handler inSpreadsheetHandlerImplre-checks it > withspreadsheet.isCellLocked(...)and reports a protected write > attempt instead of touching the workbook, because the client is not > trusted to enforce protection on its own. This one handler was > inconsistent with that. > > ## Changes > > Added the same check the other write handlers use. It runs before the > target cell is resolved, becausegetOrCreateCellcreates the row and > the cell when they do not exist yet, so a later check would still leave > an empty cell behind. > > Comments on cells that the application has explicitly unlocked keep > working, as with cell values. > > --- > > 🤖 Generated with Claude Code
-