handsontable 12.3.2-next-bcef33c-20230315 → 12.3.2-next-1d8e8e3-20230322

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -2,35 +2,62 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), and this project
6
+ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  <!-- This file should generally be updated automatically using our changelog script. See `.changelogs/README.md` for more information. -->
9
9
 
10
10
  <!-- UNVERSIONED -->
11
11
 
12
- ## [12.3.2] - 2023-03-22
12
+ ## [12.3.2] - 2023-03-23
13
+
14
+ ### Added
15
+
16
+ - Added a Chinese (zh-CN) translation of the "Copy with headers" feature.
17
+ [#10273](https://github.com/handsontable/handsontable/pull/10273)
13
18
 
14
19
  ### Fixed
15
- - Fixed a problem with the checkboxes from the filtering dropdown resetting their state after scrolling the table out of the viewport by preventing the table from triggering a 'full' render every time it was outside the viewport + Fixed an issue where clicking on a cell in some specific configurations of the RTL mode would scroll the table sideways. [#10206](https://github.com/handsontable/handsontable/pull/10206)
16
- - Using `getDataAtCol` and `getDataAtProp` for dataset with large number of rows won't break the table [#9772](https://github.com/handsontable/handsontable/issues/9772)
17
- - React: Removed deprecated React method from the wrapper. [#10263](https://github.com/handsontable/handsontable/pull/10263)
20
+
21
+ - Fixed an issue where column-filter checkboxes were resetting when the table was scrolled out
22
+ of view. We solved this by preventing the table from triggering a complete render each time it
23
+ leaves the viewport. [#10206](https://github.com/handsontable/handsontable/pull/10206)
24
+ - Fixed an issue where clicking on a cell scrolled the table sideways in certain RTL configurations.
25
+ [#10206](https://github.com/handsontable/handsontable/pull/10206)
26
+ - Fixed an issue where calling
27
+ [`getDataAtCol()`](https://handsontable.com/docs/javascript-data-grid/api/core/#getdataatcol) or
28
+ [`getDataAtProp()`](https://handsontable.com/docs/javascript-data-grid/api/core/#getdataatprop) caused an error when the data set had more than 125 000 rows.
29
+ [#10226](https://github.com/handsontable/handsontable/pull/10226)
30
+ - React: Fixed React 18 warnings about deprecated lifecycle methods. We removed
31
+ `componentWillMount()` and `componentWillUpdate()` from Handsontable's codebase and recreated
32
+ their functionality by using React's portals.
33
+ [#10263](https://github.com/handsontable/handsontable/pull/10263)
18
34
 
19
35
  ## [12.3.1] - 2023-02-06
20
36
 
21
37
  ### Added
22
- - Added a Japanese translation of the "Copy with headers" feature. [#10201](https://github.com/handsontable/handsontable/pull/10201)
38
+
39
+ - Added a Japanese translation of the "Copy with headers" feature.
40
+ [#10201](https://github.com/handsontable/handsontable/pull/10201)
23
41
 
24
42
  ### Removed
25
- - Removed the two-week delay in showing the console warning about license expiration. [#10175](https://github.com/handsontable/handsontable/pull/10175)
43
+
44
+ - Removed the two-week delay in showing the console warning about license expiration.
45
+ [#10175](https://github.com/handsontable/handsontable/pull/10175)
26
46
 
27
47
  ### Fixed
28
- - Fixed an issue where `updateData()` didn't work with nested data structures (`NestedRows`). [#10178](https://github.com/handsontable/handsontable/pull/10178)
29
- - Fixed an issue of unwanted pixels in the "Filter by condition" menu by removing a superfluous overlay. [#10174](https://github.com/handsontable/handsontable/pull/10174)
30
- - Fixed an issue where merged cells could lack right and bottom borders due to a Chrome bug. [#10212](https://github.com/handsontable/handsontable/pull/10212)
31
- - Fixed an issue where using some browser and system shortcuts could cause Handsontable to behave as if <kbd>Cmd</kbd>/<kbd>Ctrl</kbd> was being held down. [#10210](https://github.com/handsontable/handsontable/pull/10210)
48
+
49
+ - Fixed an issue where `updateData()` didn't work with nested data structures (`NestedRows`).
50
+ [#10178](https://github.com/handsontable/handsontable/pull/10178)
51
+ - Fixed an issue of unwanted pixels in the "Filter by condition" menu by removing a superfluous
52
+ overlay. [#10174](https://github.com/handsontable/handsontable/pull/10174)
53
+ - Fixed an issue where merged cells could lack right and bottom borders due to a Chrome bug.
54
+ [#10212](https://github.com/handsontable/handsontable/pull/10212)
55
+ - Fixed an issue where using some browser and system shortcuts could cause Handsontable to behave as
56
+ if <kbd>Cmd</kbd>/<kbd>Ctrl</kbd> was being held down.
57
+ [#10210](https://github.com/handsontable/handsontable/pull/10210)
32
58
 
33
59
  For more information on Handsontable 12.3.1, see:
60
+
34
61
  - [Blog post (12.3.1)](https://handsontable.com/blog/articles/2023/2/handsontable-12.3.1-japanese-translation-and-improved-keyboard-interaction)
35
62
  - [Documentation (12.3)](https://handsontable.com/docs/12.3)
36
63
  - [Release notes (12.3.1)](https://handsontable.com/docs/release-notes/#_12-3-1)
@@ -39,23 +66,42 @@ For more information on Handsontable 12.3.1, see:
39
66
 
40
67
  ### Added
41
68
 
42
- - Added a new feature that lets you copy the contents of column headers by using 3 new context menu options: "Copy with headers", "Copy with group headers", and "Copy headers only". [#2288](https://github.com/handsontable/handsontable/issues/2288)
43
- - Added 4 new API methods for copying column headers programmatically: `copyCellsOnly()`, `copyWithColumnHeaders()`, `copyWithAllColumnHeaders()`, and `copyColumnHeadersOnly()`. [#2288](https://github.com/handsontable/handsontable/issues/2288)
44
- - Added missing TypeScript definitions of the `CellCoords` and `CellRange` classes, which are used in the arguments of some of the APIs. [#9755](https://github.com/handsontable/handsontable/issues/9755)
45
- - Added missing TypeScript definitions for the following Handsontable hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9859](https://github.com/handsontable/handsontable/issues/9859)
69
+ - Added a new feature that lets you copy the contents of column headers by using 3 new context menu
70
+ options: "Copy with headers", "Copy with group headers", and "Copy headers only".
71
+ [#2288](https://github.com/handsontable/handsontable/issues/2288)
72
+ - Added 4 new API methods for copying column headers programmatically: `copyCellsOnly()`,
73
+ `copyWithColumnHeaders()`, `copyWithAllColumnHeaders()`, and `copyColumnHeadersOnly()`.
74
+ [#2288](https://github.com/handsontable/handsontable/issues/2288)
75
+ - Added missing TypeScript definitions of the `CellCoords` and `CellRange` classes, which are used
76
+ in the arguments of some of the APIs.
77
+ [#9755](https://github.com/handsontable/handsontable/issues/9755)
78
+ - Added missing TypeScript definitions for the following Handsontable hooks: `beforeColumnFreeze`,
79
+ `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`.
80
+ [#9859](https://github.com/handsontable/handsontable/issues/9859)
46
81
 
47
- ### Fixed
82
+ ### Fixed
48
83
 
49
- - Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns. [#10108](https://github.com/handsontable/handsontable/pull/10108)
50
- - Fixed an issue where formulas inserted programmatically by using `updateData()` were not evaluated. [#10011](https://github.com/handsontable/handsontable/issues/10011)
51
- - Fixed a regression where setting a column's `type` could overwrite other custom-defined settings. [#10128](https://github.com/handsontable/handsontable/pull/10128)
52
- - Fixed an issue where Handsontable didn't render properly when initialized inside of a hidden container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
53
- - Fixed an issue of desynchronization between configuration options (cell meta) and Handsontable's data. The issue occurred when Handsontable's options were modified through the following hooks: `beforeCreateRow`, `afterCreateRow`, `beforeCreateCol`, and `afterCreateCol`. [#10136](https://github.com/handsontable/handsontable/pull/10136)
54
- - Fixed an issue where comments added to fixed columns didn't display properly after scrolling. [#9645](https://github.com/handsontable/handsontable/issues/9645)
55
- - Fixed an issue where typing in a `dropdown` editor caused the IME to disappear, resulting in wrong characters being typed. [#9672](https://github.com/handsontable/handsontable/issues/9672)
56
- - React: Fixed an issue where `dropdown` cells weren't validated properly when using the `HotColumn` component. [#10065](https://github.com/handsontable/handsontable/issues/10065)
84
+ - Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns.
85
+ [#10108](https://github.com/handsontable/handsontable/pull/10108)
86
+ - Fixed an issue where formulas inserted programmatically by using `updateData()` were not
87
+ evaluated. [#10011](https://github.com/handsontable/handsontable/issues/10011)
88
+ - Fixed a regression where setting a column's `type` could overwrite other custom-defined settings.
89
+ [#10128](https://github.com/handsontable/handsontable/pull/10128)
90
+ - Fixed an issue where Handsontable didn't render properly when initialized inside of a hidden
91
+ container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
92
+ - Fixed an issue of desynchronization between configuration options (cell meta) and Handsontable's
93
+ data. The issue occurred when Handsontable's options were modified through the following hooks:
94
+ `beforeCreateRow`, `afterCreateRow`, `beforeCreateCol`, and `afterCreateCol`.
95
+ [#10136](https://github.com/handsontable/handsontable/pull/10136)
96
+ - Fixed an issue where comments added to fixed columns didn't display properly after scrolling.
97
+ [#9645](https://github.com/handsontable/handsontable/issues/9645)
98
+ - Fixed an issue where typing in a `dropdown` editor caused the IME to disappear, resulting in wrong
99
+ characters being typed. [#9672](https://github.com/handsontable/handsontable/issues/9672)
100
+ - React: Fixed an issue where `dropdown` cells weren't validated properly when using the `HotColumn`
101
+ component. [#10065](https://github.com/handsontable/handsontable/issues/10065)
57
102
 
58
103
  For more information on Handsontable 12.3.0, see:
104
+
59
105
  - [Blog post (12.3.0)](https://handsontable.com/blog/articles/2022/12/handsontable-12-3-0-copying-cells-with-headers)
60
106
  - [Documentation (12.3)](https://handsontable.com/docs/12.3)
61
107
  - [Release notes (12.3.0)](https://handsontable.com/docs/release-notes/#_12-3-0)
@@ -64,26 +110,37 @@ For more information on Handsontable 12.3.0, see:
64
110
 
65
111
  ### Added
66
112
 
67
- - Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()` method takes 4 new parameter values: `insert_row_above`, `insert_row_below`, `insert_col_start`, and `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
113
+ - Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()`
114
+ method takes 4 new parameter values: `insert_row_above`, `insert_row_below`, `insert_col_start`,
115
+ and `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
68
116
 
69
117
  ### Deprecated
70
118
 
71
- - Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or `insert_row_below`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
72
- - Deprecated the `insert_col` parameter of the `alter()` method. Instead, use `insert_col_start` or `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
119
+ - Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or
120
+ `insert_row_below`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
121
+ - Deprecated the `insert_col` parameter of the `alter()` method. Instead, use `insert_col_start` or
122
+ `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
73
123
 
74
124
  ### Removed
75
125
 
76
- - Removed a type definition for a non-existing method, `translateRowsToColumns()`. [#9919](https://github.com/handsontable/handsontable/issues/9919)
126
+ - Removed a type definition for a non-existing method, `translateRowsToColumns()`.
127
+ [#9919](https://github.com/handsontable/handsontable/issues/9919)
77
128
 
78
129
  ### Fixed
79
130
 
80
- - Fixed an issue where the width of the cell editor was calculated incorrectly. [#3815](https://github.com/handsontable/handsontable/issues/3815)
81
- - Fixed an issue where formulas surrounded by merged cells were converted to values by mistake. [#6359](https://github.com/handsontable/handsontable/issues/6359)
82
- - Fixed an issue where Handsontable could disappear on Firefox 93 (and later) in a specific use case. [#9545](https://github.com/handsontable/handsontable/issues/9545)
83
- - Fixed an issue where changing a cell's `type` through `setCellMeta()` didn't properly set the cell's `editor` and `renderer`. [#9734](https://github.com/handsontable/handsontable/issues/9734)
84
- - Fixed an issue where the dropdown menu didn't display when the `NestedHeaders` plugin was enabled and all rows were trimmed out. [#9753](https://github.com/handsontable/handsontable/issues/9753)
131
+ - Fixed an issue where the width of the cell editor was calculated incorrectly.
132
+ [#3815](https://github.com/handsontable/handsontable/issues/3815)
133
+ - Fixed an issue where formulas surrounded by merged cells were converted to values by mistake.
134
+ [#6359](https://github.com/handsontable/handsontable/issues/6359)
135
+ - Fixed an issue where Handsontable could disappear on Firefox 93 (and later) in a specific use
136
+ case. [#9545](https://github.com/handsontable/handsontable/issues/9545)
137
+ - Fixed an issue where changing a cell's `type` through `setCellMeta()` didn't properly set the
138
+ cell's `editor` and `renderer`. [#9734](https://github.com/handsontable/handsontable/issues/9734)
139
+ - Fixed an issue where the dropdown menu didn't display when the `NestedHeaders` plugin was enabled
140
+ and all rows were trimmed out. [#9753](https://github.com/handsontable/handsontable/issues/9753)
85
141
 
86
142
  For more information on Handsontable 12.2.0, see:
143
+
87
144
  - [Blog post (12.2.0)](https://handsontable.com/blog/handsontable-12.2.0)
88
145
  - [Documentation (12.2)](https://handsontable.com/docs/12.2)
89
146
  - [Release notes (12.2.0)](https://handsontable.com/docs/release-notes/#_12-2-0)
@@ -92,23 +149,37 @@ For more information on Handsontable 12.2.0, see:
92
149
 
93
150
  ### Removed
94
151
 
95
- - Removed a custom stable sorting implementation in favor of the built-in sorting algorithm [#6091](https://github.com/handsontable/handsontable/issues/6091)
96
- - Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659), [#7317](https://github.com/handsontable/handsontable/issues/7317)
152
+ - Removed a custom stable sorting implementation in favor of the built-in sorting algorithm
153
+ [#6091](https://github.com/handsontable/handsontable/issues/6091)
154
+ - Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing
155
+ hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659),
156
+ [#7317](https://github.com/handsontable/handsontable/issues/7317)
97
157
 
98
158
  ### Fixed
99
159
 
100
- - Fixed incorrect date format conversion on input in the date editor. [#9681](https://github.com/handsontable/handsontable/issues/9681)
101
- - Fixed an error when adding a large number of rows using the `alter` method. [#7840](https://github.com/handsontable/handsontable/issues/7840)
102
- - Fixed IME text input in the editors. [#9586](https://github.com/handsontable/handsontable/issues/9586)
103
- - Fixed an issue where the editor did not open on key events when the cell was outside the viewport. [#9022](https://github.com/handsontable/handsontable/issues/9022)
104
- - Fixed an issue with "0" values being ignored by the Column Summary plugin. [#6385](https://github.com/handsontable/handsontable/issues/6385)
105
- - Fixed an error when opening the column dropdown menu with the Filters plugin enabled. [#9561](https://github.com/handsontable/handsontable/issues/9561)
106
- - Fixed an issue where the `trimWhitespace` option could not be used in the column and cell levels of the cascading configuration. [#7387](https://github.com/handsontable/handsontable/issues/7387)
107
- - Fixed the flickering of the selection area at the edge of the table while scrolling. [#8317](https://github.com/handsontable/handsontable/issues/8317)
108
- - Fixed misalignment on mobile devices when the edge cells were selected. [#9621](https://github.com/handsontable/handsontable/issues/9621)
109
- - Fixed type definitions for the method `setSourceDataAtCell`. [#8599](https://github.com/handsontable/handsontable/issues/8599)
160
+ - Fixed incorrect date format conversion on input in the date editor.
161
+ [#9681](https://github.com/handsontable/handsontable/issues/9681)
162
+ - Fixed an error when adding a large number of rows using the `alter` method.
163
+ [#7840](https://github.com/handsontable/handsontable/issues/7840)
164
+ - Fixed IME text input in the editors.
165
+ [#9586](https://github.com/handsontable/handsontable/issues/9586)
166
+ - Fixed an issue where the editor did not open on key events when the cell was outside the viewport.
167
+ [#9022](https://github.com/handsontable/handsontable/issues/9022)
168
+ - Fixed an issue with "0" values being ignored by the Column Summary plugin.
169
+ [#6385](https://github.com/handsontable/handsontable/issues/6385)
170
+ - Fixed an error when opening the column dropdown menu with the Filters plugin enabled.
171
+ [#9561](https://github.com/handsontable/handsontable/issues/9561)
172
+ - Fixed an issue where the `trimWhitespace` option could not be used in the column and cell levels
173
+ of the cascading configuration. [#7387](https://github.com/handsontable/handsontable/issues/7387)
174
+ - Fixed the flickering of the selection area at the edge of the table while scrolling.
175
+ [#8317](https://github.com/handsontable/handsontable/issues/8317)
176
+ - Fixed misalignment on mobile devices when the edge cells were selected.
177
+ [#9621](https://github.com/handsontable/handsontable/issues/9621)
178
+ - Fixed type definitions for the method `setSourceDataAtCell`.
179
+ [#8599](https://github.com/handsontable/handsontable/issues/8599)
110
180
 
111
181
  For more information on Handsontable 12.1.3, see:
182
+
112
183
  - [Documentation (12.1)](https://handsontable.com/docs/12.1)
113
184
  - [Release notes (12.1.3)](https://handsontable.com/docs/release-notes/#_12-1-3)
114
185
 
@@ -116,10 +187,15 @@ For more information on Handsontable 12.1.3, see:
116
187
 
117
188
  ### Changed
118
189
 
119
- - Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a recently-found Moment.js security vulnerability. The vulnerability did not affect a correct configuration of Handsontable. [#9638](https://github.com/handsontable/handsontable/issues/9638)
120
- - Vue: Freezed the version of the Vue framework that is used in our build chain to ~2.6. This shouldn't affect apps that use Vue 2.7+. [#9624](https://github.com/handsontable/handsontable/issues/9624)
190
+ - Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a
191
+ recently-found Moment.js security vulnerability. The vulnerability did not affect a correct
192
+ configuration of Handsontable. [#9638](https://github.com/handsontable/handsontable/issues/9638)
193
+ - Vue: Freezed the version of the Vue framework that is used in our build chain to ~2.6. This
194
+ shouldn't affect apps that use Vue 2.7+.
195
+ [#9624](https://github.com/handsontable/handsontable/issues/9624)
121
196
 
122
197
  For more information on Handsontable 12.1.2, see:
198
+
123
199
  - [Documentation (12.1)](https://handsontable.com/docs/12.1)
124
200
  - [Release notes (12.1.2)](https://handsontable.com/docs/release-notes/#_12-1-2)
125
201
 
@@ -127,9 +203,11 @@ For more information on Handsontable 12.1.2, see:
127
203
 
128
204
  ### Fixed
129
205
 
130
- - Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for versions of Angular other than 9 [#9622](https://github.com/handsontable/handsontable/issues/9622)
206
+ - Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for
207
+ versions of Angular other than 9 [#9622](https://github.com/handsontable/handsontable/issues/9622)
131
208
 
132
209
  For more information on Handsontable 12.1.1, see:
210
+
133
211
  - [Documentation (12.1)](https://handsontable.com/docs/12.1)
134
212
  - [Release notes (12.1.1)](https://handsontable.com/docs/release-notes/#_12-1-1)
135
213
 
@@ -137,37 +215,61 @@ For more information on Handsontable 12.1.1, see:
137
215
 
138
216
  ### Added
139
217
 
140
- - Added smoother row and column moving when some row or columns are hidden. [#7613](https://github.com/handsontable/handsontable/issues/7613)
141
- - Added `getNearestNotHiddenIndex()`, a new method that finds the visual index of the nearest not-hidden row or column and works even with large numbers of hidden rows or columns. The previous method, `getFirstNotHiddenIndex()`, still works, but is marked as deprecated. [#9064](https://github.com/handsontable/handsontable/issues/9064)
218
+ - Added smoother row and column moving when some row or columns are hidden.
219
+ [#7613](https://github.com/handsontable/handsontable/issues/7613)
220
+ - Added `getNearestNotHiddenIndex()`, a new method that finds the visual index of the nearest
221
+ not-hidden row or column and works even with large numbers of hidden rows or columns. The previous
222
+ method, `getFirstNotHiddenIndex()`, still works, but is marked as deprecated.
223
+ [#9064](https://github.com/handsontable/handsontable/issues/9064)
142
224
  - Added a Czech translation. [#9343](https://github.com/handsontable/handsontable/issues/9343)
143
225
  - Added a Serbian translation. [#9469](https://github.com/handsontable/handsontable/issues/9469)
144
- - Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9248](https://github.com/handsontable/handsontable/issues/9248)
226
+ - Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and
227
+ `afterColumnUnfreeze`. [#9248](https://github.com/handsontable/handsontable/issues/9248)
145
228
 
146
229
  ### Changed
147
230
 
148
- - Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts. [#9487](https://github.com/handsontable/handsontable/issues/9487)
149
- - Updated the Pikaday optional dependency to 1.8.2, to let Handsontable work with Parcel 2 without errors. [#9410](https://github.com/handsontable/handsontable/issues/9410)
150
- - React: Changed the wrapper's lifecycle methods, to let Handsontable work with React 17+ without warnings. [#8748](https://github.com/handsontable/handsontable/issues/8748)
151
- - Angular: Moved the `@angular/core` dependency to peer dependencies. [#9574](https://github.com/handsontable/handsontable/issues/9574)
231
+ - Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts.
232
+ [#9487](https://github.com/handsontable/handsontable/issues/9487)
233
+ - Updated the Pikaday optional dependency to 1.8.2, to let Handsontable work with Parcel 2 without
234
+ errors. [#9410](https://github.com/handsontable/handsontable/issues/9410)
235
+ - React: Changed the wrapper's lifecycle methods, to let Handsontable work with React 17+ without
236
+ warnings. [#8748](https://github.com/handsontable/handsontable/issues/8748)
237
+ - Angular: Moved the `@angular/core` dependency to peer dependencies.
238
+ [#9574](https://github.com/handsontable/handsontable/issues/9574)
152
239
 
153
240
  ### Deprecated
154
241
 
155
- - Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead. [#9064](https://github.com/handsontable/handsontable/issues/9064)
242
+ - Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead.
243
+ [#9064](https://github.com/handsontable/handsontable/issues/9064)
156
244
 
157
245
  ### Fixed
158
246
 
159
- - Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the `preventOverflow` option was set to `'horizontal'`. [#3828](https://github.com/handsontable/handsontable/issues/3828)
160
- - Fixed an issue where frozen rows were getting duplicated. [#4454](https://github.com/handsontable/handsontable/issues/4454)
161
- - Fixed an issue where comments rendered outside the viewport. [#4785](https://github.com/handsontable/handsontable/issues/4785)
162
- - Fixed an issue where comments got positioned incorrectly when Handsontable ran within a scrollable element. [#6744](https://github.com/handsontable/handsontable/issues/6744)
163
- - Fixed an issue that occurred when Handsontable ran within an HTML `<form>`: pressing <kbd>Enter</kbd> inside another form's `<input>` could open Handsontable's dropdown menu. [#9295](https://github.com/handsontable/handsontable/issues/9295)
164
- - Fixed an issue where it was impossible to unmerge cells in the RTL layout direction. [#9362](https://github.com/handsontable/handsontable/issues/9362)
165
- - Fixed an issue where columns wider than the viewport's width and rows higher than the viewport's height didn't render correctly. [#9473](https://github.com/handsontable/handsontable/issues/9473)
166
- - Fixed an issue where dragging-to-scroll on mobile didn't work properly in the RTL layout direction. [#9475](https://github.com/handsontable/handsontable/issues/9475)
167
- - Fixed an issue where hiding columns with nested headers caused incorrect column width calculation (for the `stretchH: 'all'` option). [#9496](https://github.com/handsontable/handsontable/issues/9496)
168
- - Fixed an issue where `ShortcutManager` unnecessarily handled `keyup` events with no `key` defined. [#9562](https://github.com/handsontable/handsontable/issues/9562)
247
+ - Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the
248
+ `preventOverflow` option was set to `'horizontal'`.
249
+ [#3828](https://github.com/handsontable/handsontable/issues/3828)
250
+ - Fixed an issue where frozen rows were getting duplicated.
251
+ [#4454](https://github.com/handsontable/handsontable/issues/4454)
252
+ - Fixed an issue where comments rendered outside the viewport.
253
+ [#4785](https://github.com/handsontable/handsontable/issues/4785)
254
+ - Fixed an issue where comments got positioned incorrectly when Handsontable ran within a scrollable
255
+ element. [#6744](https://github.com/handsontable/handsontable/issues/6744)
256
+ - Fixed an issue that occurred when Handsontable ran within an HTML `<form>`: pressing
257
+ <kbd>Enter</kbd> inside another form's `<input>` could open Handsontable's dropdown menu.
258
+ [#9295](https://github.com/handsontable/handsontable/issues/9295)
259
+ - Fixed an issue where it was impossible to unmerge cells in the RTL layout direction.
260
+ [#9362](https://github.com/handsontable/handsontable/issues/9362)
261
+ - Fixed an issue where columns wider than the viewport's width and rows higher than the viewport's
262
+ height didn't render correctly. [#9473](https://github.com/handsontable/handsontable/issues/9473)
263
+ - Fixed an issue where dragging-to-scroll on mobile didn't work properly in the RTL layout
264
+ direction. [#9475](https://github.com/handsontable/handsontable/issues/9475)
265
+ - Fixed an issue where hiding columns with nested headers caused incorrect column width calculation
266
+ (for the `stretchH: 'all'` option).
267
+ [#9496](https://github.com/handsontable/handsontable/issues/9496)
268
+ - Fixed an issue where `ShortcutManager` unnecessarily handled `keyup` events with no `key` defined.
269
+ [#9562](https://github.com/handsontable/handsontable/issues/9562)
169
270
 
170
271
  For more information on Handsontable 12.1.0, see:
272
+
171
273
  - [Blog post (12.1.0)](https://handsontable.com/blog/handsontable-12.1.0-data-grid-new-hooks-new-translations-and-rendering-improvements)
172
274
  - [Documentation (12.1)](https://handsontable.com/docs/12.1)
173
275
  - [Release notes (12.1.0)](https://handsontable.com/docs/release-notes/#_12-1-0)
@@ -176,13 +278,20 @@ For more information on Handsontable 12.1.0, see:
176
278
 
177
279
  ### Fixed
178
280
 
179
- - Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and multi-line cell values caused rows to align incorrectly. [#7102](https://github.com/handsontable/handsontable/issues/7102)
180
- - Fixed an issue where checking or unchecking a checkbox changed the cell width. [#8211](https://github.com/handsontable/handsontable/issues/8211)
181
- - Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
182
- - Fixed an issue where nested column headers didn't expand properly. [#9099](https://github.com/handsontable/handsontable/issues/9099)
183
- - Fixed an issue where updating custom borders could lead to uncaught error exceptions. [#9455](https://github.com/handsontable/handsontable/issues/9455)
281
+ - Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and
282
+ multi-line cell values caused rows to align incorrectly.
283
+ [#7102](https://github.com/handsontable/handsontable/issues/7102)
284
+ - Fixed an issue where checking or unchecking a checkbox changed the cell width.
285
+ [#8211](https://github.com/handsontable/handsontable/issues/8211)
286
+ - Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could
287
+ lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
288
+ - Fixed an issue where nested column headers didn't expand properly.
289
+ [#9099](https://github.com/handsontable/handsontable/issues/9099)
290
+ - Fixed an issue where updating custom borders could lead to uncaught error exceptions.
291
+ [#9455](https://github.com/handsontable/handsontable/issues/9455)
184
292
 
185
293
  For more information on Handsontable 12.0.1, see:
294
+
186
295
  - [Documentation (12.0)](https://handsontable.com/docs/12.0)
187
296
  - [Release notes (12.0.1)](https://handsontable.com/docs/release-notes/#_12-0-1)
188
297
 
@@ -190,52 +299,125 @@ For more information on Handsontable 12.0.1, see:
190
299
 
191
300
  ### Added
192
301
 
193
- - Added `ShortcutManager`, a new API for customizing keyboard shortcuts. [#8942](https://github.com/handsontable/handsontable/issues/8942)
194
- - Added support for right-to-left (RTL) languages, introducing a new configuration option: `layoutDirection`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
302
+ - Added `ShortcutManager`, a new API for customizing keyboard shortcuts.
303
+ [#8942](https://github.com/handsontable/handsontable/issues/8942)
304
+ - Added support for right-to-left (RTL) languages, introducing a new configuration option:
305
+ `layoutDirection`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
195
306
  - Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
196
- - Added a new configuration option: `fixedColumnsStart`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
197
- - Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Enter</kbd>) for filling the selected range of cells with the value of the active cell. [#9366](https://github.com/handsontable/handsontable/issues/9366)
198
- - Added support for the <kbd>Home</kbd> and <kbd>End</kbd> keys inside cell editors, for moving the cursor to the beginning or end of the text. [#9367](https://github.com/handsontable/handsontable/issues/9367)
199
- - Added support for the latest Node LTS version. [#9149](https://github.com/handsontable/handsontable/issues/9149)
307
+ - Added a new configuration option: `fixedColumnsStart`.
308
+ [#8760](https://github.com/handsontable/handsontable/issues/8760)
309
+ - Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Enter</kbd>) for filling the
310
+ selected range of cells with the value of the active cell.
311
+ [#9366](https://github.com/handsontable/handsontable/issues/9366)
312
+ - Added support for the <kbd>Home</kbd> and <kbd>End</kbd> keys inside cell editors, for moving the
313
+ cursor to the beginning or end of the text.
314
+ [#9367](https://github.com/handsontable/handsontable/issues/9367)
315
+ - Added support for the latest Node LTS version.
316
+ [#9149](https://github.com/handsontable/handsontable/issues/9149)
200
317
 
201
318
  ### Changed
202
319
 
203
- - **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance and the consistency of user experience. Now, when provided with a new data object, `updateSettings()` updates the data without resetting any states. [#7263](https://github.com/handsontable/handsontable/issues/7263)
204
- - **Breaking change (React, Angular, Vue 2, Vue 3)**: Updating your data through a component property no longer resets your index mapper information and configuration options. [#7263](https://github.com/handsontable/handsontable/issues/7263)
205
- - **Breaking change**: Changed how `updatePlugin()` reacts to `updateSettings()` calls, to improve performance and the consistency of user experience. Now, calls to `updateSettings()` update a plugin's state only when the options object contains a configuration option that's relevant to that particular plugin. [#9021](https://github.com/handsontable/handsontable/issues/9021)
206
- - **Breaking change**: Changed the order of execution for two hooks: now, `beforeKeyDown` is properly fired before `afterDocumentKeyDown`. [#6236](https://github.com/handsontable/handsontable/issues/6236)
207
- - **Breaking change**: Changed how default keyboard shortcuts are defined, to improve keyboard navigation consistency. Most of the shortcuts did not change and are now properly documented in the [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts) guide. However, some shortcuts that were not defined explicitly, and were not listed in the documentation, don't work anymore (e.g., <kbd>Enter</kbd> opens a cell's editor, but <kbd>Ctrl</kbd> + <kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts. [#8942](https://github.com/handsontable/handsontable/issues/8942)
208
- - **Breaking change**: Split a cross-platform modifier key (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>) into two separate keys, to improve keyboard navigation consistency. Now, the <kbd>Cmd</kbd> key triggers actions on macOS where the <kbd>Ctrl</kbd> key triggers actions on Windows. For example, on macOS, <kbd>Ctrl</kbd> + <kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd> + <kbd>A</kbd> is used instead. [#9369](https://github.com/handsontable/handsontable/issues/9369)
209
- - **Breaking change**: Changed the actions of the following [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts), to match the usual spreadsheet software behavior, and provide a more intuitive user experience: <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>→</kbd>, <kbd>Home</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>End</kbd>, <kbd>Shift</kbd> + <kbd>Page Up</kbd>, and <kbd>Shift</kbd> + <kbd>Page Down</kbd>. [#9363](https://github.com/handsontable/handsontable/issues/9363) [#9364](https://github.com/handsontable/handsontable/issues/9364) [#9365](https://github.com/handsontable/handsontable/issues/9365)
210
- - Changed two scripts of the main Handsontable workspace (`./`), to speed up the build process: now, the `npm run build` and `npm run test` scripts don't build or test the Handsontable examples (`./examples`). [#9412](https://github.com/handsontable/handsontable/issues/9412)
211
- - Changed the version of the Moment.js dependency from 2.24.0 to 2.29.3, in reaction to a recently-found Moment.js security vulnerability that did not directly affect Handsontable. [#9381](https://github.com/handsontable/handsontable/issues/9381)
212
- - Changed the version of the HyperFormula optional dependency from ^1.2.0 to ^2.0.0. [#9411](https://github.com/handsontable/handsontable/issues/9411)
213
- - Changed an internal property name, from `hot.view.wt` to `hot.view._wt`, where `hot` is the name of your Handsontable instance. The intention of this change is to make it clear that Walkontable (Handsontable's rendering engine) is not a part of Handsontable's public API. [#8760](https://github.com/handsontable/handsontable/issues/8760)
320
+ - **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance
321
+ and the consistency of user experience. Now, when provided with a new data object,
322
+ `updateSettings()` updates the data without resetting any states.
323
+ [#7263](https://github.com/handsontable/handsontable/issues/7263)
324
+ - **Breaking change (React, Angular, Vue 2, Vue 3)**: Updating your data through a component
325
+ property no longer resets your index mapper information and configuration options.
326
+ [#7263](https://github.com/handsontable/handsontable/issues/7263)
327
+ - **Breaking change**: Changed how `updatePlugin()` reacts to `updateSettings()` calls, to improve
328
+ performance and the consistency of user experience. Now, calls to `updateSettings()` update a
329
+ plugin's state only when the options object contains a configuration option that's relevant to
330
+ that particular plugin. [#9021](https://github.com/handsontable/handsontable/issues/9021)
331
+ - **Breaking change**: Changed the order of execution for two hooks: now, `beforeKeyDown` is
332
+ properly fired before `afterDocumentKeyDown`.
333
+ [#6236](https://github.com/handsontable/handsontable/issues/6236)
334
+ - **Breaking change**: Changed how default keyboard shortcuts are defined, to improve keyboard
335
+ navigation consistency. Most of the shortcuts did not change and are now properly documented in
336
+ the
337
+ [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts)
338
+ guide. However, some shortcuts that were not defined explicitly, and were not listed in the
339
+ documentation, don't work anymore (e.g., <kbd>Enter</kbd> opens a cell's editor, but
340
+ <kbd>Ctrl</kbd> + <kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts.
341
+ [#8942](https://github.com/handsontable/handsontable/issues/8942)
342
+ - **Breaking change**: Split a cross-platform modifier key (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>) into two
343
+ separate keys, to improve keyboard navigation consistency. Now, the <kbd>Cmd</kbd> key triggers
344
+ actions on macOS where the <kbd>Ctrl</kbd> key triggers actions on Windows. For example, on macOS,
345
+ <kbd>Ctrl</kbd> + <kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd> + <kbd>A</kbd> is used
346
+ instead. [#9369](https://github.com/handsontable/handsontable/issues/9369)
347
+ - **Breaking change**: Changed the actions of the following
348
+ [keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts),
349
+ to match the usual spreadsheet software behavior, and provide a more intuitive user experience:
350
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> +
351
+ <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
352
+ <kbd>Shift</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>←</kbd>,
353
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
354
+ <kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>→</kbd>, <kbd>Home</kbd>,
355
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
356
+ <kbd>End</kbd>, <kbd>Shift</kbd> + <kbd>Page Up</kbd>, and <kbd>Shift</kbd> + <kbd>Page
357
+ Down</kbd>. [#9363](https://github.com/handsontable/handsontable/issues/9363)
358
+ [#9364](https://github.com/handsontable/handsontable/issues/9364)
359
+ [#9365](https://github.com/handsontable/handsontable/issues/9365)
360
+ - Changed two scripts of the main Handsontable workspace (`./`), to speed up the build process: now,
361
+ the `npm run build` and `npm run test` scripts don't build or test the Handsontable examples
362
+ (`./examples`). [#9412](https://github.com/handsontable/handsontable/issues/9412)
363
+ - Changed the version of the Moment.js dependency from 2.24.0 to 2.29.3, in reaction to a
364
+ recently-found Moment.js security vulnerability that did not directly affect Handsontable.
365
+ [#9381](https://github.com/handsontable/handsontable/issues/9381)
366
+ - Changed the version of the HyperFormula optional dependency from ^1.2.0 to ^2.0.0.
367
+ [#9411](https://github.com/handsontable/handsontable/issues/9411)
368
+ - Changed an internal property name, from `hot.view.wt` to `hot.view._wt`, where `hot` is the name
369
+ of your Handsontable instance. The intention of this change is to make it clear that Walkontable
370
+ (Handsontable's rendering engine) is not a part of Handsontable's public API.
371
+ [#8760](https://github.com/handsontable/handsontable/issues/8760)
214
372
 
215
373
  ### Removed
216
374
 
217
- - **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd> keyboard shortcut works the same as before. [#9368](https://github.com/handsontable/handsontable/issues/9368)
218
- - **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd> keyboard shortcuts from the cell editing context. [#9401](https://github.com/handsontable/handsontable/issues/9401)
219
- - Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge). Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
220
- - React: Removed the `enzyme` dependency from the React wrapper. [#9151](https://github.com/handsontable/handsontable/issues/9151)
375
+ - **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell
376
+ merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd>
377
+ keyboard shortcut works the same as before.
378
+ [#9368](https://github.com/handsontable/handsontable/issues/9368)
379
+ - **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd>
380
+ keyboard shortcuts from the cell editing context.
381
+ [#9401](https://github.com/handsontable/handsontable/issues/9401)
382
+ - Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge).
383
+ Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge
384
+ Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
385
+ - React: Removed the `enzyme` dependency from the React wrapper.
386
+ [#9151](https://github.com/handsontable/handsontable/issues/9151)
221
387
 
222
388
  ### Fixed
223
389
 
224
- - React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for state managers. [#8372](https://github.com/handsontable/handsontable/issues/8372)
225
- - Fixed an issue where using `updateSettings()` caused hidden columns to reappear. [#7165](https://github.com/handsontable/handsontable/issues/7165)
226
- - Fixed an issue where using `updateSettings()` caused merged cells to unmerge. [#3315](https://github.com/handsontable/handsontable/issues/3315)
227
- - Fixed an issue where using `updateSettings()` caused the state of nested rows to reset. [#8838](https://github.com/handsontable/handsontable/issues/8838)
228
- - Fixed an issue where using `updateSettings()` caused problems with column sorting. [#7688](https://github.com/handsontable/handsontable/issues/7688)
229
- - React: Fixed an issue where using React's `setState()` within the `afterFilter` hook broke filtering. [#7567](https://github.com/handsontable/handsontable/issues/7567)
230
- - Vue 2: Fixed an issue where repeatedly changing Handsontable's height through `updateSettings()` caused Handsontable to crash. [#7546](https://github.com/handsontable/handsontable/issues/7546)
231
- - Vue 2: Fixed an issue where the `failed` validation status got erased when editing a new row. [#7541](https://github.com/handsontable/handsontable/issues/7541)
232
- - Fixed an issue where cell filtering did not use formula results. [#5455](https://github.com/handsontable/handsontable/issues/5455)
233
- - Fixed a wrong TypeScript definition in the `BasePlugin` class. [#9175](https://github.com/handsontable/handsontable/issues/9175)
234
- - Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
235
- - Fixed an issue where the dropdown menu contained unwanted rectangle elements. [#9240](https://github.com/handsontable/handsontable/issues/9240)
236
- - React, Vue 2, Vue 3: Fixed an issue with registering modules for the React, Vue 2, and Vue 3 wrappers, by adding an `"exports"` field to their `package.json` files. [#9140](https://github.com/handsontable/handsontable/issues/9140)
390
+ - React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for
391
+ state managers. [#8372](https://github.com/handsontable/handsontable/issues/8372)
392
+ - Fixed an issue where using `updateSettings()` caused hidden columns to reappear.
393
+ [#7165](https://github.com/handsontable/handsontable/issues/7165)
394
+ - Fixed an issue where using `updateSettings()` caused merged cells to unmerge.
395
+ [#3315](https://github.com/handsontable/handsontable/issues/3315)
396
+ - Fixed an issue where using `updateSettings()` caused the state of nested rows to reset.
397
+ [#8838](https://github.com/handsontable/handsontable/issues/8838)
398
+ - Fixed an issue where using `updateSettings()` caused problems with column sorting.
399
+ [#7688](https://github.com/handsontable/handsontable/issues/7688)
400
+ - React: Fixed an issue where using React's `setState()` within the `afterFilter` hook broke
401
+ filtering. [#7567](https://github.com/handsontable/handsontable/issues/7567)
402
+ - Vue 2: Fixed an issue where repeatedly changing Handsontable's height through `updateSettings()`
403
+ caused Handsontable to crash. [#7546](https://github.com/handsontable/handsontable/issues/7546)
404
+ - Vue 2: Fixed an issue where the `failed` validation status got erased when editing a new row.
405
+ [#7541](https://github.com/handsontable/handsontable/issues/7541)
406
+ - Fixed an issue where cell filtering did not use formula results.
407
+ [#5455](https://github.com/handsontable/handsontable/issues/5455)
408
+ - Fixed a wrong TypeScript definition in the `BasePlugin` class.
409
+ [#9175](https://github.com/handsontable/handsontable/issues/9175)
410
+ - Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and
411
+ <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave
412
+ properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
413
+ - Fixed an issue where the dropdown menu contained unwanted rectangle elements.
414
+ [#9240](https://github.com/handsontable/handsontable/issues/9240)
415
+ - React, Vue 2, Vue 3: Fixed an issue with registering modules for the React, Vue 2, and Vue 3
416
+ wrappers, by adding an `"exports"` field to their `package.json` files.
417
+ [#9140](https://github.com/handsontable/handsontable/issues/9140)
237
418
 
238
419
  For more information on Handsontable 12.0.0, see:
420
+
239
421
  - [Blog post (12.0.0)](https://handsontable.com/blog/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
240
422
  - [Documentation (12.0)](https://handsontable.com/docs/12.0)
241
423
  - [Migration guide (11.1 → 12.0)](https://handsontable.com/docs/migration-from-11.1-to-12.0)
@@ -245,32 +427,51 @@ For more information on Handsontable 12.0.0, see:
245
427
 
246
428
  ### Added
247
429
 
248
- - Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
249
- resetting the states of cells, rows and columns. [#7263](https://github.com/handsontable/handsontable/issues/7263)
250
- - Vue: Added Vue 3 support, by introducing a new wrapper. [#7545](https://github.com/handsontable/handsontable/issues/7545)
430
+ - Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
431
+ resetting the states of cells, rows and columns.
432
+ [#7263](https://github.com/handsontable/handsontable/issues/7263)
433
+ - Vue: Added Vue 3 support, by introducing a new wrapper.
434
+ [#7545](https://github.com/handsontable/handsontable/issues/7545)
251
435
 
252
436
  ### Changed
253
437
 
254
- - Updated the TypeScript definition of the `setDataAtCell()` method. [#8601](https://github.com/handsontable/handsontable/issues/8601)
255
- - Extended Handsontable's GitHub Actions workflow, to allow for deploying code examples to GitHub Pages. [#9058](https://github.com/handsontable/handsontable/issues/9058)
438
+ - Updated the TypeScript definition of the `setDataAtCell()` method.
439
+ [#8601](https://github.com/handsontable/handsontable/issues/8601)
440
+ - Extended Handsontable's GitHub Actions workflow, to allow for deploying code examples to GitHub
441
+ Pages. [#9058](https://github.com/handsontable/handsontable/issues/9058)
256
442
 
257
443
  ### Fixed
258
444
 
259
- - Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly. [#7570](https://github.com/handsontable/handsontable/issues/7570)
260
- - Fixed an issue where nested headers didn't render when `data` wasn't defined. [#8589](https://github.com/handsontable/handsontable/issues/8589)
261
- - Fixed some end-to-end tests that failed on mobile devices. [#8749](https://github.com/handsontable/handsontable/issues/8749)
262
- - Fixed an issue where the rendered selection could get shifted by 1px. [#8756](https://github.com/handsontable/handsontable/issues/8756)
263
- - Fixed an issue where the first column's border didn't display properly. [#8767](https://github.com/handsontable/handsontable/issues/8767)
264
- - Fixed an issue where the `CollapsibleColumns` plugin's `expandAll()` method didn't expand collapsed columns. [#8900](https://github.com/handsontable/handsontable/issues/8900)
265
- - Fixed end-to-end test scripts that occasionally crashed. [#8961](https://github.com/handsontable/handsontable/issues/8961)
266
- - Fixed a typo in the `valueAccordingPercent()` helper. [#9006](https://github.com/handsontable/handsontable/issues/9006)
267
- - Fixed an issue where the `NestedRows` plugin could throw a type error after calling the `updateSettings()` method. [#9018](https://github.com/handsontable/handsontable/issues/9018)
268
- - Fixed an issue where performance was affected by removing events. [#9044](https://github.com/handsontable/handsontable/issues/9044)
269
- - Fixed a wrong TypeScript definition of the `MultiColumnSorting` plugin's `sort()` method. [#9067](https://github.com/handsontable/handsontable/issues/9067)
270
- - Fixed an issue where the `Comments` plugin's editor disappeared after adding a comment. [#9075](https://github.com/handsontable/handsontable/issues/9075) [#6661](https://github.com/handsontable/handsontable/issues/6661)
271
- - React: Fixed a wrong return type. [#9000](https://github.com/handsontable/handsontable/issues/9000)
445
+ - Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly.
446
+ [#7570](https://github.com/handsontable/handsontable/issues/7570)
447
+ - Fixed an issue where nested headers didn't render when `data` wasn't defined.
448
+ [#8589](https://github.com/handsontable/handsontable/issues/8589)
449
+ - Fixed some end-to-end tests that failed on mobile devices.
450
+ [#8749](https://github.com/handsontable/handsontable/issues/8749)
451
+ - Fixed an issue where the rendered selection could get shifted by 1px.
452
+ [#8756](https://github.com/handsontable/handsontable/issues/8756)
453
+ - Fixed an issue where the first column's border didn't display properly.
454
+ [#8767](https://github.com/handsontable/handsontable/issues/8767)
455
+ - Fixed an issue where the `CollapsibleColumns` plugin's `expandAll()` method didn't expand
456
+ collapsed columns. [#8900](https://github.com/handsontable/handsontable/issues/8900)
457
+ - Fixed end-to-end test scripts that occasionally crashed.
458
+ [#8961](https://github.com/handsontable/handsontable/issues/8961)
459
+ - Fixed a typo in the `valueAccordingPercent()` helper.
460
+ [#9006](https://github.com/handsontable/handsontable/issues/9006)
461
+ - Fixed an issue where the `NestedRows` plugin could throw a type error after calling the
462
+ `updateSettings()` method. [#9018](https://github.com/handsontable/handsontable/issues/9018)
463
+ - Fixed an issue where performance was affected by removing events.
464
+ [#9044](https://github.com/handsontable/handsontable/issues/9044)
465
+ - Fixed a wrong TypeScript definition of the `MultiColumnSorting` plugin's `sort()` method.
466
+ [#9067](https://github.com/handsontable/handsontable/issues/9067)
467
+ - Fixed an issue where the `Comments` plugin's editor disappeared after adding a comment.
468
+ [#9075](https://github.com/handsontable/handsontable/issues/9075)
469
+ [#6661](https://github.com/handsontable/handsontable/issues/6661)
470
+ - React: Fixed a wrong return type.
471
+ [#9000](https://github.com/handsontable/handsontable/issues/9000)
272
472
 
273
473
  For more information on Handsontable 11.1.0, see:
474
+
274
475
  - [Blog post (11.1.0)](https://handsontable.com/blog/handsontable-11.1.0-vue-3-support-and-updatedata)
275
476
  - [Documentation (11.1)](https://handsontable.com/docs/11.1)
276
477
  - [Release notes (11.1.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
@@ -279,9 +480,11 @@ For more information on Handsontable 11.1.0, see:
279
480
 
280
481
  ### Fixed
281
482
 
282
- - Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`. [#8946](https://github.com/handsontable/handsontable/pull/8946)
483
+ - Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`.
484
+ [#8946](https://github.com/handsontable/handsontable/pull/8946)
283
485
 
284
486
  For more information on Handsontable 11.0.0, see:
487
+
285
488
  - [Documentation (11.0)](https://handsontable.com/docs/11.0)
286
489
  - [Release notes (11.0.1)](https://handsontable.com/docs/release-notes/#_11-0-1)
287
490
 
@@ -289,32 +492,54 @@ For more information on Handsontable 11.0.0, see:
289
492
 
290
493
  ### Added
291
494
 
292
- - **Breaking change**: Added TypeScript definition files for Handsontable's modularized version. [#7489](https://github.com/handsontable/handsontable/issues/7489)
293
- - **Breaking change (Vue)**: Added support for modularization to the Vue wrapper. [#8820](https://github.com/handsontable/handsontable/issues/8820)
294
- - **Breaking change (React)**: Added support for modularization to the React wrapper. [#8819](https://github.com/handsontable/handsontable/issues/8819)
295
- - **Breaking change (Angular)**: Added support for modularization to the Angular wrapper. [#8818](https://github.com/handsontable/handsontable/issues/8818)
296
- - Added a new package entry point that allows importing built-in modules in one function call: `import { registerAllEditors, registerAllRenderers, registerAllValidators, registerAllCellTypes, registerAllPlugins } from 'handsontable/registry'`. [#8816](https://github.com/handsontable/handsontable/issues/8816)
297
- - Added a new `locale` option, to properly handle locale-based data. [#8897](https://github.com/handsontable/handsontable/issues/8897)
298
- - Added a GitHub Actions workflow that covers testing Handsontable and the wrappers. [#8652](https://github.com/handsontable/handsontable/issues/8652)
299
- - Added new direction helpers (internal API) that lay ground for future RTL support. [#8868](https://github.com/handsontable/handsontable/issues/8868)
495
+ - **Breaking change**: Added TypeScript definition files for Handsontable's modularized version.
496
+ [#7489](https://github.com/handsontable/handsontable/issues/7489)
497
+ - **Breaking change (Vue)**: Added support for modularization to the Vue wrapper.
498
+ [#8820](https://github.com/handsontable/handsontable/issues/8820)
499
+ - **Breaking change (React)**: Added support for modularization to the React wrapper.
500
+ [#8819](https://github.com/handsontable/handsontable/issues/8819)
501
+ - **Breaking change (Angular)**: Added support for modularization to the Angular wrapper.
502
+ [#8818](https://github.com/handsontable/handsontable/issues/8818)
503
+ - Added a new package entry point that allows importing built-in modules in one function call:
504
+ `import { registerAllEditors, registerAllRenderers, registerAllValidators, registerAllCellTypes, registerAllPlugins } from 'handsontable/registry'`.
505
+ [#8816](https://github.com/handsontable/handsontable/issues/8816)
506
+ - Added a new `locale` option, to properly handle locale-based data.
507
+ [#8897](https://github.com/handsontable/handsontable/issues/8897)
508
+ - Added a GitHub Actions workflow that covers testing Handsontable and the wrappers.
509
+ [#8652](https://github.com/handsontable/handsontable/issues/8652)
510
+ - Added new direction helpers (internal API) that lay ground for future RTL support.
511
+ [#8868](https://github.com/handsontable/handsontable/issues/8868)
300
512
 
301
513
  ### Changed
302
514
 
303
- - **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument set to `shift_down` or `shift_right`. [#888](https://github.com/handsontable/handsontable/issues/888)
304
- - Moved the entire Handsontable package to its own, new subdirectory: `./handsontable`. [#8759](https://github.com/handsontable/handsontable/issues/8759)
305
- - Replaced the license files with updated versions. [#8877](https://github.com/handsontable/handsontable/issues/8877)
515
+ - **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument
516
+ set to `shift_down` or `shift_right`.
517
+ [#888](https://github.com/handsontable/handsontable/issues/888)
518
+ - Moved the entire Handsontable package to its own, new subdirectory: `./handsontable`.
519
+ [#8759](https://github.com/handsontable/handsontable/issues/8759)
520
+ - Replaced the license files with updated versions.
521
+ [#8877](https://github.com/handsontable/handsontable/issues/8877)
306
522
 
307
523
  ### Fixed
308
524
 
309
- - Fixed an issue with incorrect filtering of locale-based data while using search input from a drop-down menu. [#6095](https://github.com/handsontable/handsontable/issues/6095)
310
- - Fixed an error thrown when using the `populateFromArray()` method with its `method` argument set to `shift_right`. [#6929](https://github.com/handsontable/handsontable/issues/6929)
311
- - Fixed an issue with the `beforeOnCellMouseDown` and `afterOnCellMouseDown` hooks using wrong coordinates. [#8498](https://github.com/handsontable/handsontable/issues/8498)
312
- - Fixed a `TypeError` thrown when calling the `updateSettings()` method in Handsontable's modularized version. [#8830](https://github.com/handsontable/handsontable/issues/8830)
313
- - Fixed two issues with the documentation's `canonicalUrl` entries. [#8886](https://github.com/handsontable/handsontable/issues/8886)
314
- - Fixed an error thrown when autofill's source is a `date` cell. [#8894](https://github.com/handsontable/handsontable/issues/8894)
315
- - React: Fixed a React wrapper issue where it's impossible to use different sets of props in editor components reused across multiple columns. [#8527](https://github.com/handsontable/handsontable/issues/8527)
525
+ - Fixed an issue with incorrect filtering of locale-based data while using search input from a
526
+ drop-down menu. [#6095](https://github.com/handsontable/handsontable/issues/6095)
527
+ - Fixed an error thrown when using the `populateFromArray()` method with its `method` argument set
528
+ to `shift_right`. [#6929](https://github.com/handsontable/handsontable/issues/6929)
529
+ - Fixed an issue with the `beforeOnCellMouseDown` and `afterOnCellMouseDown` hooks using wrong
530
+ coordinates. [#8498](https://github.com/handsontable/handsontable/issues/8498)
531
+ - Fixed a `TypeError` thrown when calling the `updateSettings()` method in Handsontable's
532
+ modularized version. [#8830](https://github.com/handsontable/handsontable/issues/8830)
533
+ - Fixed two issues with the documentation's `canonicalUrl` entries.
534
+ [#8886](https://github.com/handsontable/handsontable/issues/8886)
535
+ - Fixed an error thrown when autofill's source is a `date` cell.
536
+ [#8894](https://github.com/handsontable/handsontable/issues/8894)
537
+ - React: Fixed a React wrapper issue where it's impossible to use different sets of props in editor
538
+ components reused across multiple columns.
539
+ [#8527](https://github.com/handsontable/handsontable/issues/8527)
316
540
 
317
541
  For more information on Handsontable 11.0.0, see:
542
+
318
543
  - [Blog post (11.0.0)](https://handsontable.com/blog/handsontable-11.0.0-modularization-for-react-angular-and-vue)
319
544
  - [Documentation (11.0)](https://handsontable.com/docs/11.0)
320
545
  - [Migration guide (10.0 → 11.0)](https://handsontable.com/docs/migration-from-10.0-to-11.0)
@@ -324,33 +549,60 @@ For more information on Handsontable 11.0.0, see:
324
549
 
325
550
  ### Changed
326
551
 
327
- - **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for selection manipulation in the `beforeOnCellMouseDown` and `beforeOnCellMouseOver` hooks. [#4996](https://github.com/handsontable/handsontable/issues/4996)
328
- - **Breaking change**: Changed what the `beforeRender` and `afterRender` hooks are, and when they are triggered. Added two new hooks: `beforeViewRender` and `afterViewRender`. [#6303](https://github.com/handsontable/handsontable/issues/6303)
329
- - **Breaking change**: Changed the optional HyperFormula dependency from 0.6.2 to ^1.1.0, which introduces breaking changes for the `Formulas` plugin users. [#8502](https://github.com/handsontable/handsontable/issues/8502)
330
- - **Breaking change**: Changed the default values for the `rowsLimit` and `columnsLimit` options of the `CopyPaste` plugin. [#8660](https://github.com/handsontable/handsontable/issues/8660)
331
- - **Breaking change**: Added a default font family, size, weight and color. [#8661](https://github.com/handsontable/handsontable/issues/8661)
332
- - **Breaking change**: Changed the `autoWrapRow` and `autoWrapCol` options\` default values from `true` to `false`. [#8662](https://github.com/handsontable/handsontable/issues/8662)
333
- - Improved the performance of the `getCellMeta()` method. [#6303](https://github.com/handsontable/handsontable/issues/6303)
334
- - Improved the documentation and TypeScript definition of the `selectOptions` option. [#8488](https://github.com/handsontable/handsontable/issues/8488)
335
- - Improved the arguments forwarding in the hooks [#8668](https://github.com/handsontable/handsontable/issues/8668)
336
- - Added a Github Actions workflow covering the testing of Handsontable and all of the wrappers. [#8652](https://github.com/handsontable/handsontable/issues/8652)
552
+ - **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for
553
+ selection manipulation in the `beforeOnCellMouseDown` and `beforeOnCellMouseOver` hooks.
554
+ [#4996](https://github.com/handsontable/handsontable/issues/4996)
555
+ - **Breaking change**: Changed what the `beforeRender` and `afterRender` hooks are, and when they
556
+ are triggered. Added two new hooks: `beforeViewRender` and `afterViewRender`.
557
+ [#6303](https://github.com/handsontable/handsontable/issues/6303)
558
+ - **Breaking change**: Changed the optional HyperFormula dependency from 0.6.2 to ^1.1.0, which
559
+ introduces breaking changes for the `Formulas` plugin users.
560
+ [#8502](https://github.com/handsontable/handsontable/issues/8502)
561
+ - **Breaking change**: Changed the default values for the `rowsLimit` and `columnsLimit` options of
562
+ the `CopyPaste` plugin. [#8660](https://github.com/handsontable/handsontable/issues/8660)
563
+ - **Breaking change**: Added a default font family, size, weight and color.
564
+ [#8661](https://github.com/handsontable/handsontable/issues/8661)
565
+ - **Breaking change**: Changed the `autoWrapRow` and `autoWrapCol` options\` default values from
566
+ `true` to `false`. [#8662](https://github.com/handsontable/handsontable/issues/8662)
567
+ - Improved the performance of the `getCellMeta()` method.
568
+ [#6303](https://github.com/handsontable/handsontable/issues/6303)
569
+ - Improved the documentation and TypeScript definition of the `selectOptions` option.
570
+ [#8488](https://github.com/handsontable/handsontable/issues/8488)
571
+ - Improved the arguments forwarding in the hooks
572
+ [#8668](https://github.com/handsontable/handsontable/issues/8668)
573
+ - Added a Github Actions workflow covering the testing of Handsontable and all of the wrappers.
574
+ [#8652](https://github.com/handsontable/handsontable/issues/8652)
337
575
 
338
576
  ### Fixed
339
577
 
340
- - Fixed an issue of not resetting the date picker's configuration. [#6636](https://github.com/handsontable/handsontable/issues/6636)
341
- - An error won't be thrown while inserting a new row for nested rows in a specific case. [#7137](https://github.com/handsontable/handsontable/issues/7137)
342
- - Fixed a few problems with the `NestedRows` plugin, occurring with the `Formulas` plugin enabled. [#8048](https://github.com/handsontable/handsontable/issues/8048)
343
- - Fixed errors being thrown in the `Formulas` plugin if a provided sheet name contained a dash character. [#8057](https://github.com/handsontable/handsontable/issues/8057)
344
- - Fixed multiple bugs related to undo/redo actions while using the `Formulas` plugin. [#8078](https://github.com/handsontable/handsontable/issues/8078)
345
- - Fixed an issue where autofill was not able to be blocked/changed with the `beforeChange` hook when the `Formulas` plugin was enabled [#8107](https://github.com/handsontable/handsontable/issues/8107)
346
- - Data stored by the `NestedRows` plugin won't be corrupted by some actions. [#8180](https://github.com/handsontable/handsontable/issues/8180)
347
- - Collapsed parents won't be expanded after inserting rows. [#8181](https://github.com/handsontable/handsontable/issues/8181)
348
- - Fixed the cooperation of the dropdown menu and column sorting (menu closing on click). [#8232](https://github.com/handsontable/handsontable/issues/8232)
349
- - Data won't be corrupted anymore when some alterations are performed. [#8614](https://github.com/handsontable/handsontable/issues/8614)
350
- - Adjusted directories and files related to `dataMap`, to prevent potential circular references. [#8704](https://github.com/handsontable/handsontable/issues/8704)
351
- - Improved the performance of the regular expression used to detect numeric values, and fixed major code smells. [#8752](https://github.com/handsontable/handsontable/issues/8752)
578
+ - Fixed an issue of not resetting the date picker's configuration.
579
+ [#6636](https://github.com/handsontable/handsontable/issues/6636)
580
+ - An error won't be thrown while inserting a new row for nested rows in a specific case.
581
+ [#7137](https://github.com/handsontable/handsontable/issues/7137)
582
+ - Fixed a few problems with the `NestedRows` plugin, occurring with the `Formulas` plugin enabled.
583
+ [#8048](https://github.com/handsontable/handsontable/issues/8048)
584
+ - Fixed errors being thrown in the `Formulas` plugin if a provided sheet name contained a dash
585
+ character. [#8057](https://github.com/handsontable/handsontable/issues/8057)
586
+ - Fixed multiple bugs related to undo/redo actions while using the `Formulas` plugin.
587
+ [#8078](https://github.com/handsontable/handsontable/issues/8078)
588
+ - Fixed an issue where autofill was not able to be blocked/changed with the `beforeChange` hook when
589
+ the `Formulas` plugin was enabled
590
+ [#8107](https://github.com/handsontable/handsontable/issues/8107)
591
+ - Data stored by the `NestedRows` plugin won't be corrupted by some actions.
592
+ [#8180](https://github.com/handsontable/handsontable/issues/8180)
593
+ - Collapsed parents won't be expanded after inserting rows.
594
+ [#8181](https://github.com/handsontable/handsontable/issues/8181)
595
+ - Fixed the cooperation of the dropdown menu and column sorting (menu closing on click).
596
+ [#8232](https://github.com/handsontable/handsontable/issues/8232)
597
+ - Data won't be corrupted anymore when some alterations are performed.
598
+ [#8614](https://github.com/handsontable/handsontable/issues/8614)
599
+ - Adjusted directories and files related to `dataMap`, to prevent potential circular references.
600
+ [#8704](https://github.com/handsontable/handsontable/issues/8704)
601
+ - Improved the performance of the regular expression used to detect numeric values, and fixed major
602
+ code smells. [#8752](https://github.com/handsontable/handsontable/issues/8752)
352
603
 
353
604
  For more information on Handsontable 10.0.0, see:
605
+
354
606
  - [Blog post (10.0.0)](https://handsontable.com/blog/handsontable-10.0.0-improved-performance-and-consistency)
355
607
  - [Documentation (10.0)](https://handsontable.com/docs/10.0)
356
608
  - [Migration guide (9.0 → 10.0)](https://handsontable.com/docs/migration-from-9.0-to-10.0)
@@ -360,22 +612,37 @@ For more information on Handsontable 10.0.0, see:
360
612
 
361
613
  ### Fixed
362
614
 
363
- - Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested Headers + Hidden Columns. [#7160](https://github.com/handsontable/handsontable/issues/7160)
364
- - Fixed column header sizes not being updated on `updateSettings` calls containing `columns`. [#7689](https://github.com/handsontable/handsontable/issues/7689)
365
- - Fixed functional keys' behavior, to prevent unexpected editing. [#7838](https://github.com/handsontable/handsontable/issues/7838)
366
- - Fixed missing collapsible indicator on IE. [#8028](https://github.com/handsontable/handsontable/issues/8028)
367
- - Fixed support for row and column headers in the `parseTable` utility. [#8041](https://github.com/handsontable/handsontable/issues/8041)
368
- - Fixed a bug where not providing a data object with the `nestedRows` plugin enabled crashed the table. [#8171](https://github.com/handsontable/handsontable/issues/8171)
369
- - Vue: Fixed an issue where adding rows to a Handsontable instance wrapped for Vue resulted in additional rows being inserted at the end of the table. [#8148](https://github.com/handsontable/handsontable/issues/8148)
370
- - Vue: Fixed a problem in the Vue wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
371
- - React: Fixed a problem in the React wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
372
- - Angular: Fixed a problem in the Angular wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
615
+ - Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested
616
+ Headers + Hidden Columns. [#7160](https://github.com/handsontable/handsontable/issues/7160)
617
+ - Fixed column header sizes not being updated on `updateSettings` calls containing `columns`.
618
+ [#7689](https://github.com/handsontable/handsontable/issues/7689)
619
+ - Fixed functional keys' behavior, to prevent unexpected editing.
620
+ [#7838](https://github.com/handsontable/handsontable/issues/7838)
621
+ - Fixed missing collapsible indicator on IE.
622
+ [#8028](https://github.com/handsontable/handsontable/issues/8028)
623
+ - Fixed support for row and column headers in the `parseTable` utility.
624
+ [#8041](https://github.com/handsontable/handsontable/issues/8041)
625
+ - Fixed a bug where not providing a data object with the `nestedRows` plugin enabled crashed the
626
+ table. [#8171](https://github.com/handsontable/handsontable/issues/8171)
627
+ - Vue: Fixed an issue where adding rows to a Handsontable instance wrapped for Vue resulted in
628
+ additional rows being inserted at the end of the table.
629
+ [#8148](https://github.com/handsontable/handsontable/issues/8148)
630
+ - Vue: Fixed a problem in the Vue wrapper, where destroying the underlying Handsontable instance
631
+ caused it to throw errors and crash.
632
+ [#8311](https://github.com/handsontable/handsontable/issues/8311)
633
+ - React: Fixed a problem in the React wrapper, where destroying the underlying Handsontable instance
634
+ caused it to throw errors and crash.
635
+ [#8311](https://github.com/handsontable/handsontable/issues/8311)
636
+ - Angular: Fixed a problem in the Angular wrapper, where destroying the underlying Handsontable
637
+ instance caused it to throw errors and crash.
638
+ [#8311](https://github.com/handsontable/handsontable/issues/8311)
373
639
 
374
640
  ### Added
375
641
 
376
642
  - Added new documentation engine [#7624](https://github.com/handsontable/handsontable/issues/7624)
377
643
 
378
644
  For more information on Handsontable 9.0.2, see:
645
+
379
646
  - [Blog post (9.0.2)](https://handsontable.com/blog/whats-new-in-handsontable-9.0.2)
380
647
  - [Documentation (9.0)](https://handsontable.com/docs/9.0)
381
648
  - [Release notes (9.0.2)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
@@ -384,14 +651,18 @@ For more information on Handsontable 9.0.2, see:
384
651
 
385
652
  ### Removed
386
653
 
387
- - Removed the redundant internal `jsonpatch` library from the source code. [#8140](https://github.com/handsontable/handsontable/issues/8140)
654
+ - Removed the redundant internal `jsonpatch` library from the source code.
655
+ [#8140](https://github.com/handsontable/handsontable/issues/8140)
388
656
 
389
657
  ### Fixed
390
658
 
391
- - Fixed an issue where the validator function was called twice when the Formulas plugin was enabled. [#8138](https://github.com/handsontable/handsontable/issues/8138)
392
- - Introduced a new CSS style for cells of the `checkbox` type to restore previous behaviour. [#8196](https://github.com/handsontable/handsontable/issues/8196)
659
+ - Fixed an issue where the validator function was called twice when the Formulas plugin was enabled.
660
+ [#8138](https://github.com/handsontable/handsontable/issues/8138)
661
+ - Introduced a new CSS style for cells of the `checkbox` type to restore previous behaviour.
662
+ [#8196](https://github.com/handsontable/handsontable/issues/8196)
393
663
 
394
664
  For more information on Handsontable 9.0.1, see:
665
+
395
666
  - [Documentation (9.0)](https://handsontable.com/docs/9.0)
396
667
  - [Release notes (9.0.1)](https://handsontable.com/docs/release-notes/#_9-0-1)
397
668
 
@@ -399,25 +670,35 @@ For more information on Handsontable 9.0.1, see:
399
670
 
400
671
  ### Changed
401
672
 
402
- - **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide for a full list of changes. Removed the required `hot-formula-parser` dependency for the sake of an optional one, `hyperformula`. [#6466](https://github.com/handsontable/handsontable/issues/6466)
403
- - **Breaking change**: Changed the `afterAutofill` and `beforeAutofill` hooks' signatures. [#7987](https://github.com/handsontable/handsontable/issues/7987)
404
- - Upgraded `eslint` and eslint-related modules. [#7531](https://github.com/handsontable/handsontable/issues/7531)
405
- - Added `fit` & `fdescribe` to restricted globals in test files. [#8088](https://github.com/handsontable/handsontable/issues/8088)
673
+ - **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide
674
+ for a full list of changes. Removed the required `hot-formula-parser` dependency for the sake of
675
+ an optional one, `hyperformula`. [#6466](https://github.com/handsontable/handsontable/issues/6466)
676
+ - **Breaking change**: Changed the `afterAutofill` and `beforeAutofill` hooks' signatures.
677
+ [#7987](https://github.com/handsontable/handsontable/issues/7987)
678
+ - Upgraded `eslint` and eslint-related modules.
679
+ [#7531](https://github.com/handsontable/handsontable/issues/7531)
680
+ - Added `fit` & `fdescribe` to restricted globals in test files.
681
+ [#8088](https://github.com/handsontable/handsontable/issues/8088)
406
682
 
407
683
  ### Removed
408
684
 
409
- - **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes. [#8083](https://github.com/handsontable/handsontable/issues/8083)
685
+ - **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes.
686
+ [#8083](https://github.com/handsontable/handsontable/issues/8083)
410
687
 
411
688
  ### Fixed
412
689
 
413
- - Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed properly on styled headers. [#7970](https://github.com/handsontable/handsontable/issues/7970)
414
- - Fixed a problem with duplicated `afterCreateCol` hooks being triggered after undoing a removal of a column. [#8076](https://github.com/handsontable/handsontable/issues/8076)
690
+ - Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed
691
+ properly on styled headers. [#7970](https://github.com/handsontable/handsontable/issues/7970)
692
+ - Fixed a problem with duplicated `afterCreateCol` hooks being triggered after undoing a removal of
693
+ a column. [#8076](https://github.com/handsontable/handsontable/issues/8076)
415
694
 
416
695
  ### Deprecated
417
696
 
418
- - Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release. [#8095](https://github.com/handsontable/handsontable/issues/8095)
697
+ - Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release.
698
+ [#8095](https://github.com/handsontable/handsontable/issues/8095)
419
699
 
420
700
  For more information on Handsontable 9.0.0, see:
701
+
421
702
  - [Blog post (9.0.0)](https://handsontable.com/blog/handsontable-9.0.0-new-formula-plugin)
422
703
  - [Documentation (9.0)](https://handsontable.com/docs/9.0)
423
704
  - [Migration guide (8.4 → 9.0)](https://handsontable.com/docs/migration-from-8.4-to-9.0)
@@ -427,41 +708,70 @@ For more information on Handsontable 9.0.0, see:
427
708
 
428
709
  ### Added
429
710
 
430
- - Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input` or be placed next to it). [#3172](https://github.com/handsontable/handsontable/issues/3172)
431
- - Introduced the `modifyAutoColumnSizeSeed` hook to let developers overwrite the default behaviour of the AutoColumnSize sampling. [#3339](https://github.com/handsontable/handsontable/issues/3339)
432
- - Added support for hiding columns for the _NestedHeaders_ plugin. [#6879](https://github.com/handsontable/handsontable/issues/6879)
433
- - Added ability to skip stacking actions by the `UndoRedo` plugin and introduced new hooks. [#6948](https://github.com/handsontable/handsontable/issues/6948)
434
- - Added 2 new hooks, `beforeHighlightingColumnHeader` and `beforeHighlightingRowHeader`. Use them to retrieve a header element (`<th>`) before it gets highlighted. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
435
- - Added a new method, `indexMapper.unregisterAll()`. Use it to unregister all collected index maps from all map collections types. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
436
- - Added a new method, `indexMapper.createChangesObserver()`. Use it to listen to any changes made to indexes while Handsontable is running. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
437
- - Added a new method, `indexMapper.createAndRegisterIndexMap()`. Use it to create and register a new index map. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
711
+ - Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input`
712
+ or be placed next to it). [#3172](https://github.com/handsontable/handsontable/issues/3172)
713
+ - Introduced the `modifyAutoColumnSizeSeed` hook to let developers overwrite the default behaviour
714
+ of the AutoColumnSize sampling. [#3339](https://github.com/handsontable/handsontable/issues/3339)
715
+ - Added support for hiding columns for the _NestedHeaders_ plugin.
716
+ [#6879](https://github.com/handsontable/handsontable/issues/6879)
717
+ - Added ability to skip stacking actions by the `UndoRedo` plugin and introduced new hooks.
718
+ [#6948](https://github.com/handsontable/handsontable/issues/6948)
719
+ - Added 2 new hooks, `beforeHighlightingColumnHeader` and `beforeHighlightingRowHeader`. Use them to
720
+ retrieve a header element (`<th>`) before it gets highlighted.
721
+ ([#7528](https://github.com/handsontable/handsontable/pull/7528))
722
+ - Added a new method, `indexMapper.unregisterAll()`. Use it to unregister all collected index maps
723
+ from all map collections types. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
724
+ - Added a new method, `indexMapper.createChangesObserver()`. Use it to listen to any changes made to
725
+ indexes while Handsontable is running.
726
+ ([#7528](https://github.com/handsontable/handsontable/pull/7528))
727
+ - Added a new method, `indexMapper.createAndRegisterIndexMap()`. Use it to create and register a new
728
+ index map. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
438
729
 
439
730
  ### Fixed
440
731
 
441
- - Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being displayed properly. [#4047](https://github.com/handsontable/handsontable/issues/4047)
442
- - Fixed a problem where undoing the removal of row with `readOnly` cells was not performed properly. [#4754](https://github.com/handsontable/handsontable/issues/4754)
443
- - Fixed state-change resolving for externally added checkboxes. [#5934](https://github.com/handsontable/handsontable/issues/5934)
444
- - Fixed a problem with the native selection being removed with the `fragmentSelection` option enabled. [#6083](https://github.com/handsontable/handsontable/issues/6083)
445
- - Fixed a bug where number of columns rendered in the viewport was not correct. [#6115](https://github.com/handsontable/handsontable/issues/6115)
446
- - Fixed a bug with the Dropdown Menu not opening on Android devices. [#6212](https://github.com/handsontable/handsontable/issues/6212)
447
- - Fixed the double-tap issue on iOS. [#6961](https://github.com/handsontable/handsontable/issues/6961)
448
- - Fixed a problem with the Comments editor being destroyed after destroying another Handsontable instance. [#7091](https://github.com/handsontable/handsontable/issues/7091)
449
- - Fixed incorrect `numericFormat`'s type definition. [#7420](https://github.com/handsontable/handsontable/issues/7420)
450
- - Fixed the `trimWhitespace` tests on Firefox. [#7593](https://github.com/handsontable/handsontable/issues/7593)
451
- - Fixed the [NPM Audit] Github Action job to report found vulnerabilities. [#7621](https://github.com/handsontable/handsontable/issues/7621)
732
+ - Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being
733
+ displayed properly. [#4047](https://github.com/handsontable/handsontable/issues/4047)
734
+ - Fixed a problem where undoing the removal of row with `readOnly` cells was not performed properly.
735
+ [#4754](https://github.com/handsontable/handsontable/issues/4754)
736
+ - Fixed state-change resolving for externally added checkboxes.
737
+ [#5934](https://github.com/handsontable/handsontable/issues/5934)
738
+ - Fixed a problem with the native selection being removed with the `fragmentSelection` option
739
+ enabled. [#6083](https://github.com/handsontable/handsontable/issues/6083)
740
+ - Fixed a bug where number of columns rendered in the viewport was not correct.
741
+ [#6115](https://github.com/handsontable/handsontable/issues/6115)
742
+ - Fixed a bug with the Dropdown Menu not opening on Android devices.
743
+ [#6212](https://github.com/handsontable/handsontable/issues/6212)
744
+ - Fixed the double-tap issue on iOS.
745
+ [#6961](https://github.com/handsontable/handsontable/issues/6961)
746
+ - Fixed a problem with the Comments editor being destroyed after destroying another Handsontable
747
+ instance. [#7091](https://github.com/handsontable/handsontable/issues/7091)
748
+ - Fixed incorrect `numericFormat`'s type definition.
749
+ [#7420](https://github.com/handsontable/handsontable/issues/7420)
750
+ - Fixed the `trimWhitespace` tests on Firefox.
751
+ [#7593](https://github.com/handsontable/handsontable/issues/7593)
752
+ - Fixed the [NPM Audit] Github Action job to report found vulnerabilities.
753
+ [#7621](https://github.com/handsontable/handsontable/issues/7621)
452
754
  - Fixed some minor iOS problems. [#7659](https://github.com/handsontable/handsontable/issues/7659)
453
- - Fixed the TypeScript definition for the suspended rendering feature. [#7666](https://github.com/handsontable/handsontable/issues/7666)
454
- - Fixed the `postbuild` and `examples:install` scripts on Windows. [#7680](https://github.com/handsontable/handsontable/issues/7680)
455
- - Fixed the contents of the production `package.json`. [#7723](https://github.com/handsontable/handsontable/issues/7723)
456
- - Fixed an issue, where the callbacks for the UndoRedo plugin were called twice. [#7825](https://github.com/handsontable/handsontable/issues/7825)
457
- - Vue: Fixed a problem with displaying and removing rows in the Nested Rows plugin. [#7548](https://github.com/handsontable/handsontable/issues/7548)
458
- - React: Fixed an incompatibility in the property type definitions for the HotColumn component. [#7612](https://github.com/handsontable/handsontable/issues/7612)
755
+ - Fixed the TypeScript definition for the suspended rendering feature.
756
+ [#7666](https://github.com/handsontable/handsontable/issues/7666)
757
+ - Fixed the `postbuild` and `examples:install` scripts on Windows.
758
+ [#7680](https://github.com/handsontable/handsontable/issues/7680)
759
+ - Fixed the contents of the production `package.json`.
760
+ [#7723](https://github.com/handsontable/handsontable/issues/7723)
761
+ - Fixed an issue, where the callbacks for the UndoRedo plugin were called twice.
762
+ [#7825](https://github.com/handsontable/handsontable/issues/7825)
763
+ - Vue: Fixed a problem with displaying and removing rows in the Nested Rows plugin.
764
+ [#7548](https://github.com/handsontable/handsontable/issues/7548)
765
+ - React: Fixed an incompatibility in the property type definitions for the HotColumn component.
766
+ [#7612](https://github.com/handsontable/handsontable/issues/7612)
459
767
 
460
768
  ### Changed
461
769
 
462
- - Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before some keywords or statements. [#7691](https://github.com/handsontable/handsontable/issues/7691)
770
+ - Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before
771
+ some keywords or statements. [#7691](https://github.com/handsontable/handsontable/issues/7691)
463
772
 
464
773
  For more information on Handsontable 8.4.0, see:
774
+
465
775
  - [Blog post (8.4.0)](https://handsontable.com/blog/whats-new-in-handsontable-8-4-0)
466
776
  - [Documentation (8.4.0)](https://handsontable.com/docs/8.4.0)
467
777
  - [Release notes (8.4.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
@@ -470,29 +780,49 @@ For more information on Handsontable 8.4.0, see:
470
780
 
471
781
  ### Fixed
472
782
 
473
- - Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns. [#5082](https://github.com/handsontable/handsontable/issues/5082)
474
- - Fixed wrong paddings for multi-level headers. [#5086](https://github.com/handsontable/handsontable/issues/5086)
475
- - Fixed problems with the `current` option of the `disableVisualSelection` setting. [#5869](https://github.com/handsontable/handsontable/issues/5869)
476
- - Fixed problems with the `header` option of the `disableVisualSelection` setting. [#6025](https://github.com/handsontable/handsontable/issues/6025)
477
- - Fixed a bug where the "double-tap-to-zoom" gesture prevented the editor from opening properly on some mobile devices. [#7142](https://github.com/handsontable/handsontable/issues/7142)
478
- - Fixed a bug where calling the `updateSettings` method in the body of some callbacks would break the table. [#7231](https://github.com/handsontable/handsontable/issues/7231)
479
- - Fixed an issue where the `maxRows` and `maxCols` options interfered with hidden index calculations. [#7350](https://github.com/handsontable/handsontable/issues/7350)
480
- - Fixed problems with doubled borders being displayed when `window` was a scrollable container. [#7356](https://github.com/handsontable/handsontable/issues/7356)
481
- - Fixed a bug where value population from an edited cell would result in a console error. [#7382](https://github.com/handsontable/handsontable/issues/7382)
482
- - Fixed a bug where the dropdown cell type would not work on Safari 14+. [#7413](https://github.com/handsontable/handsontable/issues/7413)
483
- - Fixed a bug where the `AutoRowSize` plugin would break the table when placed in an iframe. [#7424](https://github.com/handsontable/handsontable/issues/7424)
484
- - Fixed bugs in navigation by `HOME` and `END` keys with hidden rows/columns enabled. [#7454](https://github.com/handsontable/handsontable/issues/7454)
485
- - Fixed a bug with the `trimWhitespace` option not working properly. [#7458](https://github.com/handsontable/handsontable/issues/7458)
486
- - Fixed an issue with inconsistent documentation and TypeScript definitions for `colWidths` and `rowHeights` options. [#7507](https://github.com/handsontable/handsontable/issues/7507)
487
- - Fixed the incorrect `cellTypes` module paths in the `exports` entry of the `package.json` file. [#7597](https://github.com/handsontable/handsontable/issues/7597)
488
- - Vue: Fixed Remote Code Execution vulnerability in the dev dependencies. [#7620](https://github.com/handsontable/handsontable/issues/7620)
783
+ - Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns.
784
+ [#5082](https://github.com/handsontable/handsontable/issues/5082)
785
+ - Fixed wrong paddings for multi-level headers.
786
+ [#5086](https://github.com/handsontable/handsontable/issues/5086)
787
+ - Fixed problems with the `current` option of the `disableVisualSelection` setting.
788
+ [#5869](https://github.com/handsontable/handsontable/issues/5869)
789
+ - Fixed problems with the `header` option of the `disableVisualSelection` setting.
790
+ [#6025](https://github.com/handsontable/handsontable/issues/6025)
791
+ - Fixed a bug where the "double-tap-to-zoom" gesture prevented the editor from opening properly on
792
+ some mobile devices. [#7142](https://github.com/handsontable/handsontable/issues/7142)
793
+ - Fixed a bug where calling the `updateSettings` method in the body of some callbacks would break
794
+ the table. [#7231](https://github.com/handsontable/handsontable/issues/7231)
795
+ - Fixed an issue where the `maxRows` and `maxCols` options interfered with hidden index
796
+ calculations. [#7350](https://github.com/handsontable/handsontable/issues/7350)
797
+ - Fixed problems with doubled borders being displayed when `window` was a scrollable container.
798
+ [#7356](https://github.com/handsontable/handsontable/issues/7356)
799
+ - Fixed a bug where value population from an edited cell would result in a console error.
800
+ [#7382](https://github.com/handsontable/handsontable/issues/7382)
801
+ - Fixed a bug where the dropdown cell type would not work on Safari 14+.
802
+ [#7413](https://github.com/handsontable/handsontable/issues/7413)
803
+ - Fixed a bug where the `AutoRowSize` plugin would break the table when placed in an iframe.
804
+ [#7424](https://github.com/handsontable/handsontable/issues/7424)
805
+ - Fixed bugs in navigation by `HOME` and `END` keys with hidden rows/columns enabled.
806
+ [#7454](https://github.com/handsontable/handsontable/issues/7454)
807
+ - Fixed a bug with the `trimWhitespace` option not working properly.
808
+ [#7458](https://github.com/handsontable/handsontable/issues/7458)
809
+ - Fixed an issue with inconsistent documentation and TypeScript definitions for `colWidths` and
810
+ `rowHeights` options. [#7507](https://github.com/handsontable/handsontable/issues/7507)
811
+ - Fixed the incorrect `cellTypes` module paths in the `exports` entry of the `package.json` file.
812
+ [#7597](https://github.com/handsontable/handsontable/issues/7597)
813
+ - Vue: Fixed Remote Code Execution vulnerability in the dev dependencies.
814
+ [#7620](https://github.com/handsontable/handsontable/issues/7620)
489
815
 
490
816
  ### Added
491
817
 
492
- - Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`, `@handsontable/react`, and `@handsontable/vue` will all be developed in the same repo - `handsontable`. [#7380](https://github.com/handsontable/handsontable/issues/7380)
493
- - Added a custom ESLint rule which allows restricting specified modules from loading by `import` or re-exporting. [#7473](https://github.com/handsontable/handsontable/issues/7473)
818
+ - Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`,
819
+ `@handsontable/react`, and `@handsontable/vue` will all be developed in the same repo -
820
+ `handsontable`. [#7380](https://github.com/handsontable/handsontable/issues/7380)
821
+ - Added a custom ESLint rule which allows restricting specified modules from loading by `import` or
822
+ re-exporting. [#7473](https://github.com/handsontable/handsontable/issues/7473)
494
823
 
495
824
  For more information on Handsontable 8.3.2, see:
825
+
496
826
  - [Blog post (8.3.2)](https://handsontable.com/blog/handsontable-8-3-2-introducing-monorepo)
497
827
  - [Documentation (8.3.2)](https://handsontable.com/docs/8.3.2)
498
828
  - [Release notes (8.3.2)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
@@ -501,9 +831,11 @@ For more information on Handsontable 8.3.2, see:
501
831
 
502
832
  ### Fixed
503
833
 
504
- - Fixed an issue where the CSS files could be eliminated during tree-shaking [#7516](https://github.com/handsontable/handsontable/issues/7516)
834
+ - Fixed an issue where the CSS files could be eliminated during tree-shaking
835
+ [#7516](https://github.com/handsontable/handsontable/issues/7516)
505
836
 
506
837
  For more information on Handsontable 8.3.1, see:
838
+
507
839
  - [Documentation (8.3.1)](https://handsontable.com/docs/8.3.1)
508
840
  - [Release notes (8.3.1)](https://handsontable.com/docs/release-notes/#_8-3-1)
509
841
 
@@ -511,33 +843,53 @@ For more information on Handsontable 8.3.1, see:
511
843
 
512
844
  ### Added
513
845
 
514
- - Introduced a new feature that allows postponing the table render and internal data cache update. The table rendering time can be reduced several-fold times by batching (using the `batch` method), multi-line API calls, or manually suspending rendering using the `suspendRender` and `resumeRender` methods. [#7274](https://github.com/handsontable/handsontable/issues/7274)
846
+ - Introduced a new feature that allows postponing the table render and internal data cache update.
847
+ The table rendering time can be reduced several-fold times by batching (using the `batch` method),
848
+ multi-line API calls, or manually suspending rendering using the `suspendRender` and
849
+ `resumeRender` methods. [#7274](https://github.com/handsontable/handsontable/issues/7274)
515
850
  - Introduced a possibility to import:
851
+
516
852
  - plugins
517
853
  - cell types
518
854
  - editors
519
855
  - renderers
520
856
  - validators
521
857
 
522
- as separate modules, along with the Handsontable _base_. This change allows utilizing only the parts of Handsontable the end application is actually using, without the overhead of the full bundle. [#7403](https://github.com/handsontable/handsontable/issues/7403)
523
- - Added a new workflow for managing and generating changelogs. [#7405](https://github.com/handsontable/handsontable/issues/7405)
858
+ as separate modules, along with the Handsontable _base_. This change allows utilizing only the
859
+ parts of Handsontable the end application is actually using, without the overhead of the full
860
+ bundle. [#7403](https://github.com/handsontable/handsontable/issues/7403)
861
+
862
+ - Added a new workflow for managing and generating changelogs.
863
+ [#7405](https://github.com/handsontable/handsontable/issues/7405)
524
864
 
525
865
  ### Fixed
526
866
 
527
- - Fixed a bug with auto-execution of the first item in the ContextMenu plugin. [#7364](https://github.com/handsontable/handsontable/issues/7364)
528
- - Fixed a bug where column sorting with multi column sorting crashed the table. [#7415](https://github.com/handsontable/handsontable/issues/7415)
529
- - Added a missing entry for the `skipRowOnPaste` option in the TypeScript definition file. [#7394](https://github.com/handsontable/handsontable/issues/7394)
530
- - Added missing tests to prevent issue #7377 from resurfacing. [#7396](https://github.com/handsontable/handsontable/issues/7396)
531
- - Fixed an issue where altering columns did not update filters attached to columns. [#6830](https://github.com/handsontable/handsontable/issues/6830)
532
- - Fixed typos and wrong return types in the TypeScript definition file. [#7399](https://github.com/handsontable/handsontable/issues/7399), [#7400](https://github.com/handsontable/handsontable/issues/7400)
533
- - Updated the dependencies causing potential security issues, as well as Babel configuration needed after the update. [#7463](https://github.com/handsontable/handsontable/issues/7463)
867
+ - Fixed a bug with auto-execution of the first item in the ContextMenu plugin.
868
+ [#7364](https://github.com/handsontable/handsontable/issues/7364)
869
+ - Fixed a bug where column sorting with multi column sorting crashed the table.
870
+ [#7415](https://github.com/handsontable/handsontable/issues/7415)
871
+ - Added a missing entry for the `skipRowOnPaste` option in the TypeScript definition file.
872
+ [#7394](https://github.com/handsontable/handsontable/issues/7394)
873
+ - Added missing tests to prevent issue #7377 from resurfacing.
874
+ [#7396](https://github.com/handsontable/handsontable/issues/7396)
875
+ - Fixed an issue where altering columns did not update filters attached to columns.
876
+ [#6830](https://github.com/handsontable/handsontable/issues/6830)
877
+ - Fixed typos and wrong return types in the TypeScript definition file.
878
+ [#7399](https://github.com/handsontable/handsontable/issues/7399),
879
+ [#7400](https://github.com/handsontable/handsontable/issues/7400)
880
+ - Updated the dependencies causing potential security issues, as well as Babel configuration needed
881
+ after the update. [#7463](https://github.com/handsontable/handsontable/issues/7463)
534
882
 
535
883
  ### Changed
536
884
 
537
- - Corrected a typo in a helper method from the Column Sorting plugin. [#7375](https://github.com/handsontable/handsontable/issues/7375)
538
- - Optimized the performance of rendering the table with numerous spare rows (for `minSpareRows`, `minSpareCols`, `minRows`, and `minCols` options). [#7439](https://github.com/handsontable/handsontable/issues/7439)
885
+ - Corrected a typo in a helper method from the Column Sorting plugin.
886
+ [#7375](https://github.com/handsontable/handsontable/issues/7375)
887
+ - Optimized the performance of rendering the table with numerous spare rows (for `minSpareRows`,
888
+ `minSpareCols`, `minRows`, and `minCols` options).
889
+ [#7439](https://github.com/handsontable/handsontable/issues/7439)
539
890
 
540
891
  For more information on Handsontable 8.3.0, see:
892
+
541
893
  - [Blog post (8.3.0)](https://handsontable.com/blog/handsontable-8.3.0-has-been-released)
542
894
  - [Documentation (8.3.0)](https://handsontable.com/docs/8.3.0)
543
895
  - [Release notes (8.3.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
@@ -546,23 +898,41 @@ For more information on Handsontable 8.3.0, see:
546
898
 
547
899
  ### Added
548
900
 
549
- - Added new type of Index Map named `LinkedPhysicalIndexToValueMap` [#7276](https://github.com/handsontable/handsontable/pull/7276)
550
- - Added an external dependency, `DOMPurify`, to add HTML sanitization what should minimize the risk of inserting insecure code using Handsontable built-in functionalities. [#7292](https://github.com/handsontable/handsontable/issues/7292)
901
+ - Added new type of Index Map named `LinkedPhysicalIndexToValueMap`
902
+ [#7276](https://github.com/handsontable/handsontable/pull/7276)
903
+ - Added an external dependency, `DOMPurify`, to add HTML sanitization what should minimize the risk
904
+ of inserting insecure code using Handsontable built-in functionalities.
905
+ [#7292](https://github.com/handsontable/handsontable/issues/7292)
551
906
 
552
907
  ### Fixed
553
908
 
554
- - Fixed an issue the container not being updated after trimming rows. [#7241](https://github.com/handsontable/handsontable/issues/7241)
555
- - Fixed an issue with a `htmlToGridSettings` helper if passed `<table>` had no rows. [#7311](https://github.com/handsontable/handsontable/issues/7311)
556
- - Fixed an issue where sorting indicator moved incorrectly when column was added. [#6397](https://github.com/handsontable/handsontable/issues/6397)
557
- - Fixed a bug, where untrimming previously trimmed rows would sometimes result in the table instance not refreshing its height, leaving the row headers not properly rendered. [#6276](https://github.com/handsontable/handsontable/issues/6276)
558
- - Fixes a bug, where tables' viewport was scrolled if a user opened editor when some columns on the left side of that cell were hidden. [#7322](https://github.com/handsontable/handsontable/issues/7322)
559
- - Fix a problem when `event.target`'s parent in the `mouseover` event was not defined, the table threw an error when hovering over row/column headers. [#6926](https://github.com/handsontable/handsontable/issues/6926)
560
- - Fixed an issue, where calling the validation-triggering methods on a `hiddenColumns`-enabled Handsontable instance rendered the validated cells improperly. [#7301](https://github.com/handsontable/handsontable/issues/7301)
561
- - Fixed an issue, where adding 0 rows to the table ended with doubled entries in indexMappers' collections. [#7326](https://github.com/handsontable/handsontable/issues/7326)
562
- - Fix a problem with the inconsistent behavior of the Context Menu's "Clear column" disabled status. [#7003](https://github.com/handsontable/handsontable/issues/7003)
563
- - Fix a bug with parsing multiline cells on pasting `text/html` mime-type. [#7369](https://github.com/handsontable/handsontable/issues/7369)
909
+ - Fixed an issue the container not being updated after trimming rows.
910
+ [#7241](https://github.com/handsontable/handsontable/issues/7241)
911
+ - Fixed an issue with a `htmlToGridSettings` helper if passed `<table>` had no rows.
912
+ [#7311](https://github.com/handsontable/handsontable/issues/7311)
913
+ - Fixed an issue where sorting indicator moved incorrectly when column was added.
914
+ [#6397](https://github.com/handsontable/handsontable/issues/6397)
915
+ - Fixed a bug, where untrimming previously trimmed rows would sometimes result in the table instance
916
+ not refreshing its height, leaving the row headers not properly rendered.
917
+ [#6276](https://github.com/handsontable/handsontable/issues/6276)
918
+ - Fixes a bug, where tables' viewport was scrolled if a user opened editor when some columns on the
919
+ left side of that cell were hidden.
920
+ [#7322](https://github.com/handsontable/handsontable/issues/7322)
921
+ - Fix a problem when `event.target`'s parent in the `mouseover` event was not defined, the table
922
+ threw an error when hovering over row/column headers.
923
+ [#6926](https://github.com/handsontable/handsontable/issues/6926)
924
+ - Fixed an issue, where calling the validation-triggering methods on a `hiddenColumns`-enabled
925
+ Handsontable instance rendered the validated cells improperly.
926
+ [#7301](https://github.com/handsontable/handsontable/issues/7301)
927
+ - Fixed an issue, where adding 0 rows to the table ended with doubled entries in indexMappers'
928
+ collections. [#7326](https://github.com/handsontable/handsontable/issues/7326)
929
+ - Fix a problem with the inconsistent behavior of the Context Menu's "Clear column" disabled status.
930
+ [#7003](https://github.com/handsontable/handsontable/issues/7003)
931
+ - Fix a bug with parsing multiline cells on pasting `text/html` mime-type.
932
+ [#7369](https://github.com/handsontable/handsontable/issues/7369)
564
933
 
565
934
  For more information on Handsontable 8.2.0, see:
935
+
566
936
  - [Blog post (8.2.0)](https://handsontable.com/blog/handsontable-8.2.0-has-been-released)
567
937
  - [Documentation (8.2.0)](https://handsontable.com/docs/8.2.0)
568
938
  - [Release notes (8.2.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
@@ -571,31 +941,55 @@ For more information on Handsontable 8.2.0, see:
571
941
 
572
942
  ### Added
573
943
 
574
- - Added support for resizing non-contiguous selected rows [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
575
- - Added e2e tests and reorganized already existing ones [#6491](https://github.com/handsontable/handsontable/issues/6491)
944
+ - Added support for resizing non-contiguous selected rows
945
+ [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix
946
+ introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
947
+ - Added e2e tests and reorganized already existing ones
948
+ [#6491](https://github.com/handsontable/handsontable/issues/6491)
576
949
 
577
950
  ### Fixed
578
951
 
579
- - Fixed an issue where if the first part of the merged area was hidden the value did not show [#6871](https://github.com/handsontable/handsontable/issues/6871)
580
- - Fixed an issue where after selecting the top-left element the row range resizing was not possible [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
581
- - Fixed an issue where the column headers were cut off after hiding and then showing columns using the Hidden Columns plugin. [#6395](https://github.com/handsontable/handsontable/issues/6395)
582
- - Fixed an issue where redundant row has been added during copy/paste operations in some case [#5961](https://github.com/handsontable/handsontable/issues/5961)
583
- - Fixed an issue where too many values have been pasted when column was hidden [#6743](https://github.com/handsontable/handsontable/issues/6743)
584
- - Fixed a bug, where trying to move collapsed parent rows with the Nested Rows plugin enabled threw an error. [#7132](https://github.com/handsontable/handsontable/issues/7132)
585
- - Fixed an issue where after column or row alteration, Handsontable threw an error if ColumnSummary was enabled without defined rows ranges [#7174](https://github.com/handsontable/handsontable/pull/7174)
586
- - Fixed an issue where using updateSettings() has been breaking column sorting in specific cases [#7228](https://github.com/handsontable/handsontable/issues/7228)
587
- - Fixed an issue where the rows were missing their left border after disabling the row headers using `updateSettings`, while there were `fixedColumnsLeft` defined. [#5735](https://github.com/handsontable/handsontable/issues/5735)
588
- - Fixed an issue where the Handsontable could fall into an infinite loop during vertical scrolling. It only happened when the scrollable element was the `window` object. [#7260](https://github.com/handsontable/handsontable/issues/7260);
589
- - Fixed an issue with moving rows to the last row of the table, when the Nested Rows plugin was enabled along with some other minor moving-related bugs. [#6067](https://github.com/handsontable/handsontable/issues/6067)
590
- - Fixed an issue with adding unnecessary extra empty line in cells on Safari. [#7262](https://github.com/handsontable/handsontable/issues/7262)
591
- - Fixed an issue with clipped column headers if they were changed before or within usage `updateSettings`. [#6004](https://github.com/handsontable/handsontable/issues/6004)
952
+ - Fixed an issue where if the first part of the merged area was hidden the value did not show
953
+ [#6871](https://github.com/handsontable/handsontable/issues/6871)
954
+ - Fixed an issue where after selecting the top-left element the row range resizing was not possible
955
+ [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix
956
+ introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
957
+ - Fixed an issue where the column headers were cut off after hiding and then showing columns using
958
+ the Hidden Columns plugin. [#6395](https://github.com/handsontable/handsontable/issues/6395)
959
+ - Fixed an issue where redundant row has been added during copy/paste operations in some case
960
+ [#5961](https://github.com/handsontable/handsontable/issues/5961)
961
+ - Fixed an issue where too many values have been pasted when column was hidden
962
+ [#6743](https://github.com/handsontable/handsontable/issues/6743)
963
+ - Fixed a bug, where trying to move collapsed parent rows with the Nested Rows plugin enabled threw
964
+ an error. [#7132](https://github.com/handsontable/handsontable/issues/7132)
965
+ - Fixed an issue where after column or row alteration, Handsontable threw an error if ColumnSummary
966
+ was enabled without defined rows ranges
967
+ [#7174](https://github.com/handsontable/handsontable/pull/7174)
968
+ - Fixed an issue where using updateSettings() has been breaking column sorting in specific cases
969
+ [#7228](https://github.com/handsontable/handsontable/issues/7228)
970
+ - Fixed an issue where the rows were missing their left border after disabling the row headers using
971
+ `updateSettings`, while there were `fixedColumnsLeft` defined.
972
+ [#5735](https://github.com/handsontable/handsontable/issues/5735)
973
+ - Fixed an issue where the Handsontable could fall into an infinite loop during vertical scrolling.
974
+ It only happened when the scrollable element was the `window` object.
975
+ [#7260](https://github.com/handsontable/handsontable/issues/7260);
976
+ - Fixed an issue with moving rows to the last row of the table, when the Nested Rows plugin was
977
+ enabled along with some other minor moving-related bugs.
978
+ [#6067](https://github.com/handsontable/handsontable/issues/6067)
979
+ - Fixed an issue with adding unnecessary extra empty line in cells on Safari.
980
+ [#7262](https://github.com/handsontable/handsontable/issues/7262)
981
+ - Fixed an issue with clipped column headers if they were changed before or within usage
982
+ `updateSettings`. [#6004](https://github.com/handsontable/handsontable/issues/6004)
592
983
 
593
984
  ### Changed
594
985
 
595
- - Updated dependencies to meet security requirements [#7222](https://github.com/handsontable/handsontable/pull/7222)
596
- - Improved performance for TrimRows, HiddenRows and HiddenColumns plugins for big datasets with lots trimmed/hidden indexes [#7223](https://github.com/handsontable/handsontable/pull/7223)
986
+ - Updated dependencies to meet security requirements
987
+ [#7222](https://github.com/handsontable/handsontable/pull/7222)
988
+ - Improved performance for TrimRows, HiddenRows and HiddenColumns plugins for big datasets with lots
989
+ trimmed/hidden indexes [#7223](https://github.com/handsontable/handsontable/pull/7223)
597
990
 
598
991
  For more information on Handsontable 8.1.0, see:
992
+
599
993
  - [Blog post (8.1.0)](https://handsontable.com/blog/handsontable-8.1.0-has-been-released)
600
994
  - [Documentation (8.1.0)](https://handsontable.com/docs/8.1.0)
601
995
  - [Release notes (8.1.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
@@ -604,246 +998,506 @@ For more information on Handsontable 8.1.0, see:
604
998
 
605
999
  ### Added
606
1000
 
607
- - Added `modifySourceData` hook and `setSourceDataAtCell` method. [#6664](https://github.com/handsontable/handsontable/issues/6664)
608
- - Added new argument to `scrollViewportTo` method: optional `considerHiddenIndexes` which is a `boolean`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
609
- - Added additional information available in the cell meta object - the language. [#6254](https://github.com/handsontable/handsontable/pull/6254).
610
- - Added a possibility to allow cancelling of `autofill` in the `beforeAutofill` hook. [#4441](https://github.com/handsontable/handsontable/issues/4441)
611
- - Added support for newer versions of moment, numbro and pikaday. [#5159](https://github.com/handsontable/handsontable/issues/5159)
1001
+ - Added `modifySourceData` hook and `setSourceDataAtCell` method.
1002
+ [#6664](https://github.com/handsontable/handsontable/issues/6664)
1003
+ - Added new argument to `scrollViewportTo` method: optional `considerHiddenIndexes` which is a
1004
+ `boolean`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
1005
+ - Added additional information available in the cell meta object - the language.
1006
+ [#6254](https://github.com/handsontable/handsontable/pull/6254).
1007
+ - Added a possibility to allow cancelling of `autofill` in the `beforeAutofill` hook.
1008
+ [#4441](https://github.com/handsontable/handsontable/issues/4441)
1009
+ - Added support for newer versions of moment, numbro and pikaday.
1010
+ [#5159](https://github.com/handsontable/handsontable/issues/5159)
612
1011
  - Added `afterAutoFill` hook. [#6135](https://github.com/handsontable/handsontable/issues/6135)
613
- - Added "deprecated" warning messages mechanism for plugin hooks. [#6613](https://github.com/handsontable/handsontable/pull/6613)
614
- - Added missing types for `instance.undoRedo`. [#6346](https://github.com/handsontable/handsontable/issues/6346)
615
- - Added `countRenderableColumns` method to the `TableView`. [#6177](https://github.com/handsontable/handsontable/issues/6177)
616
- - Added missing "hide" property in `CustomBorders` typings. [#6788](https://github.com/handsontable/handsontable/issues/6788)
617
- - Added `beforeSetCellMeta` hook with an ability to cancel the changes. [#5388](https://github.com/handsontable/handsontable/issues/5388)
618
- - Added additional test for autofill plugin. [#6756](https://github.com/handsontable/handsontable/issues/6756)
1012
+ - Added "deprecated" warning messages mechanism for plugin hooks.
1013
+ [#6613](https://github.com/handsontable/handsontable/pull/6613)
1014
+ - Added missing types for `instance.undoRedo`.
1015
+ [#6346](https://github.com/handsontable/handsontable/issues/6346)
1016
+ - Added `countRenderableColumns` method to the `TableView`.
1017
+ [#6177](https://github.com/handsontable/handsontable/issues/6177)
1018
+ - Added missing "hide" property in `CustomBorders` typings.
1019
+ [#6788](https://github.com/handsontable/handsontable/issues/6788)
1020
+ - Added `beforeSetCellMeta` hook with an ability to cancel the changes.
1021
+ [#5388](https://github.com/handsontable/handsontable/issues/5388)
1022
+ - Added additional test for autofill plugin.
1023
+ [#6756](https://github.com/handsontable/handsontable/issues/6756)
619
1024
 
620
1025
  ### Changed
621
1026
 
622
- - Changed how `manualRowMove` and `manualColumnMove` plugins work [#5945](https://github.com/handsontable/handsontable/pull/5945)
623
- - Click on a row header will select all cells (also hidden). [#2391](https://github.com/handsontable/handsontable/issues/2391)
624
- - Extracted Cell-Meta logic from Core to separate module. [#6254](https://github.com/handsontable/handsontable/pull/6254)
625
- - The `CellMeta` manager was refactored for future features and improvements. [#6233](https://github.com/handsontable/handsontable/issues/6233)
626
- - Rows can be resized to less than `rowHeights`. [#6149](https://github.com/handsontable/handsontable/issues/6149)
627
- - Left mouse button (LMB) click on the corner will now select all cells. [#6547](https://github.com/handsontable/handsontable/pull/6547)
628
- - The right mouse button (`RMB`) click on the corner, column and row headers will show just some options, defined by newly created specification [#7082](https://github.com/handsontable/handsontable/pull/7082)
629
- - Hidden indexes will no longer be rendered, as a consequence `afterRenderer`, `modifyColWidth`, `beforeStretchingColumnWidth` will be executable only on visible (meaning, rendered) rows and columns. [#6547](https://github.com/handsontable/handsontable/pull/6547)
630
- - The `getColWidth` for hidden index will return 0 - it used to return 0.1 [#6547](https://github.com/handsontable/handsontable/pull/6547)
631
- - The `modifyColWidth` hook isn't called internally. However, it will be executed when the user will call the `getColWidth`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
632
- - Hidden rows/columns won't rendered anymore. As a consequence hooks `beforeValueRender`, `beforeRenderer`, `afterRenderer`, `modifyColWidth`, `beforeStretchingColumnWidth` etc. will be executed just for some of the columns (just the renderable ones). [#6547](https://github.com/handsontable/handsontable/pull/6547)
633
- - Selection behavior changed when hiding cells from the `ContextMenu`, now it is selecting a column on the right when there is space on right to the last selected column, selecting a column on the left otherwise. [#6547](https://github.com/handsontable/handsontable#6547)
634
- - Developed a unified way to identify HOT "input" elements. All input elements owned by HOT got an attribute "data-hot-input" which are identified by that key. [#6383](https://github.com/handsontable/handsontable/issues/6383)
635
- - `NestedHeaders` plugin was rewritten, from now on, only a tree-like structure will be allowed, meaning, there will be no possibility to place nested headers in-between layers. [#6716](https://github.com/handsontable/handsontable/pull/6716)
636
- - `CustomBorders` plugin was adapted to work with `HiddenColumns` properly, from now on hiding cells at the start or at the end of a range will also hide their borders. Also, hiding a single cell with borders will hide all of its borders. [#7083](https://github.com/handsontable/handsontable/pull/7083)
637
- - `CollapsibleColumns` will no longer use `HiddenColumns` plugin to work. [#6204](https://github.com/handsontable/handsontable/issue/6204)
638
- - Modifying the table's data by reference and calling `render()` will not work properly anymore. From this point onward, all the data-related operations need to be performed using the API methods, such as `populateFromArray` or `setDataAtCell`. [#5945](https://github.com/handsontable/handsontable/pull/5945)
639
- - Removed dependencies between plugins: the `manualColumnFreeze` plugin doesn't use the `manualColumnMove`, the `collapsibleColumns` plugin doesn't use the `hiddenColumns` plugin, `nestedRows` plugin doesn't use the `trimRows` plugin, `filters` plugin doesn't use the `trimRows` plugin anymore. [#5945](https://github.com/handsontable/handsontable/pull/5945) along with other adjustments [#6547](https://github.com/handsontable/handsontable/pull/6547):
640
- - The `minSpareRows` and `minRows` options will ensure that the number of visible rows corresponds to the value provided to them (for example, the `trimRows` plugin won't have an impact on the number of displayed rows). [#5945](https://github.com/handsontable/handsontable/pull/5945)
641
- - `toPhysicalRow` and `toVisualColumn` now return `null` for non-existant rows/columns. [#5945](https://github.com/handsontable/handsontable/pull/5945)
642
- - The `afterLoadData` hook receives a different set of arguments. It used to be just the initialLoad flag, now the first argument is `sourceData`, followed by `initialLoad`. [#5945](https://github.com/handsontable/handsontable/pull/5945)
643
- - The `manualColumnFreeze` plugin unfreezes the column just after the "line of freeze". [#5945](https://github.com/handsontable/handsontable/pull/5945)
644
- - The `RecordTranslator` object and the `t` property available in the plugins were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
645
- - After-prefixed hooks (`afterLoadData`, `afterFilter`, etc.) are now called just before the `render` call. [#5945](https://github.com/handsontable/handsontable/pull/5945)
646
- - Newly created rows and columns are now placed in the source data in the place calculated from its position in the visual context (they "stick" to their adjacent rows/columns). It also applies to moved rows and columns. [#5945](https://github.com/handsontable/handsontable/pull/5945)
647
- - When the `nestedRows` plugin is `enabled`, moving rows will be possible only using the UI or by calling the `dragRows` method of the `manualRowMove` plugin. [#5945](https://github.com/handsontable/handsontable/pull/5945)
648
- - The `beforeRowResize`, `afterRowResize`, `beforeColumnResize`, `afterColumnResize` hooks have the order of their arguments rearranged for the sake of consistency with other hooks. [#3328](https://github.com/handsontable/handsontable/issues/3328)
649
- - Changed the argument structure in `collapsibleColumns`' `toggleCollapsibleSection` method. [#6193](https://github.com/handsontable/handsontable/issues/6193)
650
- - Updated the `moment`, `numbro` and `pikaday` dependencies to their latest versions. [#6610](https://github.com/handsontable/handsontable/issues/6610)
651
- - Standardize the `z-index` properties between the overlays. [#6269](https://github.com/handsontable/handsontable/pull/6269)
1027
+ - Changed how `manualRowMove` and `manualColumnMove` plugins work
1028
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1029
+ - Click on a row header will select all cells (also hidden).
1030
+ [#2391](https://github.com/handsontable/handsontable/issues/2391)
1031
+ - Extracted Cell-Meta logic from Core to separate module.
1032
+ [#6254](https://github.com/handsontable/handsontable/pull/6254)
1033
+ - The `CellMeta` manager was refactored for future features and improvements.
1034
+ [#6233](https://github.com/handsontable/handsontable/issues/6233)
1035
+ - Rows can be resized to less than `rowHeights`.
1036
+ [#6149](https://github.com/handsontable/handsontable/issues/6149)
1037
+ - Left mouse button (LMB) click on the corner will now select all cells.
1038
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1039
+ - The right mouse button (`RMB`) click on the corner, column and row headers will show just some
1040
+ options, defined by newly created specification
1041
+ [#7082](https://github.com/handsontable/handsontable/pull/7082)
1042
+ - Hidden indexes will no longer be rendered, as a consequence `afterRenderer`, `modifyColWidth`,
1043
+ `beforeStretchingColumnWidth` will be executable only on visible (meaning, rendered) rows and
1044
+ columns. [#6547](https://github.com/handsontable/handsontable/pull/6547)
1045
+ - The `getColWidth` for hidden index will return 0 - it used to return 0.1
1046
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1047
+ - The `modifyColWidth` hook isn't called internally. However, it will be executed when the user will
1048
+ call the `getColWidth`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
1049
+ - Hidden rows/columns won't rendered anymore. As a consequence hooks `beforeValueRender`,
1050
+ `beforeRenderer`, `afterRenderer`, `modifyColWidth`, `beforeStretchingColumnWidth` etc. will be
1051
+ executed just for some of the columns (just the renderable ones).
1052
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1053
+ - Selection behavior changed when hiding cells from the `ContextMenu`, now it is selecting a column
1054
+ on the right when there is space on right to the last selected column, selecting a column on the
1055
+ left otherwise. [#6547](https://github.com/handsontable/handsontable#6547)
1056
+ - Developed a unified way to identify HOT "input" elements. All input elements owned by HOT got an
1057
+ attribute "data-hot-input" which are identified by that key.
1058
+ [#6383](https://github.com/handsontable/handsontable/issues/6383)
1059
+ - `NestedHeaders` plugin was rewritten, from now on, only a tree-like structure will be allowed,
1060
+ meaning, there will be no possibility to place nested headers in-between layers.
1061
+ [#6716](https://github.com/handsontable/handsontable/pull/6716)
1062
+ - `CustomBorders` plugin was adapted to work with `HiddenColumns` properly, from now on hiding cells
1063
+ at the start or at the end of a range will also hide their borders. Also, hiding a single cell
1064
+ with borders will hide all of its borders.
1065
+ [#7083](https://github.com/handsontable/handsontable/pull/7083)
1066
+ - `CollapsibleColumns` will no longer use `HiddenColumns` plugin to work.
1067
+ [#6204](https://github.com/handsontable/handsontable/issue/6204)
1068
+ - Modifying the table's data by reference and calling `render()` will not work properly anymore.
1069
+ From this point onward, all the data-related operations need to be performed using the API
1070
+ methods, such as `populateFromArray` or `setDataAtCell`.
1071
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1072
+ - Removed dependencies between plugins: the `manualColumnFreeze` plugin doesn't use the
1073
+ `manualColumnMove`, the `collapsibleColumns` plugin doesn't use the `hiddenColumns` plugin,
1074
+ `nestedRows` plugin doesn't use the `trimRows` plugin, `filters` plugin doesn't use the `trimRows`
1075
+ plugin anymore. [#5945](https://github.com/handsontable/handsontable/pull/5945) along with other
1076
+ adjustments [#6547](https://github.com/handsontable/handsontable/pull/6547):
1077
+ - The `minSpareRows` and `minRows` options will ensure that the number of visible rows corresponds
1078
+ to the value provided to them (for example, the `trimRows` plugin won't have an impact on the
1079
+ number of displayed rows). [#5945](https://github.com/handsontable/handsontable/pull/5945)
1080
+ - `toPhysicalRow` and `toVisualColumn` now return `null` for non-existant rows/columns.
1081
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1082
+ - The `afterLoadData` hook receives a different set of arguments. It used to be just the initialLoad
1083
+ flag, now the first argument is `sourceData`, followed by `initialLoad`.
1084
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1085
+ - The `manualColumnFreeze` plugin unfreezes the column just after the "line of freeze".
1086
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1087
+ - The `RecordTranslator` object and the `t` property available in the plugins were removed.
1088
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1089
+ - After-prefixed hooks (`afterLoadData`, `afterFilter`, etc.) are now called just before the
1090
+ `render` call. [#5945](https://github.com/handsontable/handsontable/pull/5945)
1091
+ - Newly created rows and columns are now placed in the source data in the place calculated from its
1092
+ position in the visual context (they "stick" to their adjacent rows/columns). It also applies to
1093
+ moved rows and columns. [#5945](https://github.com/handsontable/handsontable/pull/5945)
1094
+ - When the `nestedRows` plugin is `enabled`, moving rows will be possible only using the UI or by
1095
+ calling the `dragRows` method of the `manualRowMove` plugin.
1096
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1097
+ - The `beforeRowResize`, `afterRowResize`, `beforeColumnResize`, `afterColumnResize` hooks have the
1098
+ order of their arguments rearranged for the sake of consistency with other hooks.
1099
+ [#3328](https://github.com/handsontable/handsontable/issues/3328)
1100
+ - Changed the argument structure in `collapsibleColumns`' `toggleCollapsibleSection` method.
1101
+ [#6193](https://github.com/handsontable/handsontable/issues/6193)
1102
+ - Updated the `moment`, `numbro` and `pikaday` dependencies to their latest versions.
1103
+ [#6610](https://github.com/handsontable/handsontable/issues/6610)
1104
+ - Standardize the `z-index` properties between the overlays.
1105
+ [#6269](https://github.com/handsontable/handsontable/pull/6269)
652
1106
 
653
1107
  ### Deprecated
654
1108
 
655
- - The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated. [#5945](https://github.com/handsontable/handsontable/pull/5945)
656
- - `HeaderTooltips` plugin becomes deprecated and will be removed in the next major version. [#7023](https://github.com/handsontable/handsontable/issues/7023)
657
- - IE support is depreacated and will removed by the end of the year. [#7026](https://github.com/handsontable/handsontable/issues/7026)
1109
+ - The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated.
1110
+ [#5945](https://github.com/handsontable/handsontable/pull/5945)
1111
+ - `HeaderTooltips` plugin becomes deprecated and will be removed in the next major version.
1112
+ [#7023](https://github.com/handsontable/handsontable/issues/7023)
1113
+ - IE support is depreacated and will removed by the end of the year.
1114
+ [#7026](https://github.com/handsontable/handsontable/issues/7026)
658
1115
 
659
1116
  ### Removed
660
1117
 
661
- - Removed `firstVisibleColumn` CSS class as no longer needed. [#6547](https://github.com/handsontable/handsontable/pull/6547)
662
- - Removed helpers that covered IE8 support or are not needed anymore. [#6525](https://github.com/handsontable/handsontable/issues/6525)
663
- - Removed old unnecessary warning about `beforeChange` callback. [#6792](https://github.com/handsontable/handsontable/issues/6792)
664
- - Removed `debug` key (key, css, docs). [#6672](https://github.com/handsontable/handsontable/issues/6672)
665
- - Removed `hiddenRow` and `hiddenColumn` hooks. [#6547](https://github.com/handsontable/handsontable/pull/6547)
666
- - Removed optional argument `modifyDocumentFocus` from the `listen` function. [#6547](https://github.com/handsontable/handsontable/pull/6547)
667
- - Removed `rowOffset` and `colOffset` public API methods since they aliased the methods from Walkontable. [#6547](https://github.com/handsontable/handsontable/pull/6547)
668
- - Removed the experimental `GanttChart` plugin. [#7022](https://github.com/handsontable/handsontable/issues/7022)
669
- - Removed post-install warning from package.json file [#6608](https://github.com/handsontable/handsontable/pull/6608)
670
- - The `modifyRow`, `modifyCol`, `unmodifyRow`, `unmodifyCol` and `skipLengthCache` hooks are no longer needed and were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
1118
+ - Removed `firstVisibleColumn` CSS class as no longer needed.
1119
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1120
+ - Removed helpers that covered IE8 support or are not needed anymore.
1121
+ [#6525](https://github.com/handsontable/handsontable/issues/6525)
1122
+ - Removed old unnecessary warning about `beforeChange` callback.
1123
+ [#6792](https://github.com/handsontable/handsontable/issues/6792)
1124
+ - Removed `debug` key (key, css, docs).
1125
+ [#6672](https://github.com/handsontable/handsontable/issues/6672)
1126
+ - Removed `hiddenRow` and `hiddenColumn` hooks.
1127
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1128
+ - Removed optional argument `modifyDocumentFocus` from the `listen` function.
1129
+ [#6547](https://github.com/handsontable/handsontable/pull/6547)
1130
+ - Removed `rowOffset` and `colOffset` public API methods since they aliased the methods from
1131
+ Walkontable. [#6547](https://github.com/handsontable/handsontable/pull/6547)
1132
+ - Removed the experimental `GanttChart` plugin.
1133
+ [#7022](https://github.com/handsontable/handsontable/issues/7022)
1134
+ - Removed post-install warning from package.json file
1135
+ [#6608](https://github.com/handsontable/handsontable/pull/6608)
1136
+ - The `modifyRow`, `modifyCol`, `unmodifyRow`, `unmodifyCol` and `skipLengthCache` hooks are no
1137
+ longer needed and were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
671
1138
 
672
1139
  ### Fixed
673
1140
 
674
- - Fixed a problem with data not being added to the table properly with the `columnSorting` option enabled. [#2685](https://github.com/handsontable/handsontable/issues/2685)
675
- - Fixed a problem with `loadData` not resetting the row order changed by the `manualRowMove` plugin. [#3568](https://github.com/handsontable/handsontable/issues/3568)
676
- - Fixed a bug, where using `alter`'s `insert_row` after using the `loadData` method and sorting the data would add unintentional additional rows to the table. [#3809](https://github.com/handsontable/handsontable/issues/3809)
677
- - Fixed a bug, where blank rows appeared in the middle of the table after using `loadData` along with the `minSpareRows` option. [#3937](https://github.com/handsontable/handsontable/issues/3937)
678
- - Fixed a problem with the `columnSummary` plugin not working properly after adding new rows using the Context Menu and sorting the data. [#3924](https://github.com/handsontable/handsontable/issues/3924)
679
- - Fixed a bug, where calling `loadData` with an object-based data source would not work properly. [#4204](https://github.com/handsontable/handsontable/issues/4204)
680
- - Fixed a problem with the Hidden Columns settings being reset after calling `updateSettings`. [#4121](https://github.com/handsontable/handsontable/issues/4121)
681
- - Fixed a bug with the `filters` plugin using incorrect indexes after moving and/or sorting the table. [#4442](https://github.com/handsontable/handsontable/issues/4442)
682
- - Fixed a bug that caused a column to contain improper data after moving it to index `0`. [#4470](https://github.com/handsontable/handsontable/issues/4470)
683
- - Fixed a bug with the `afterRowMove` hook receiving an improper `target` argument. [#4501](https://github.com/handsontable/handsontable/issues/4501)
684
- - Fixed a problem with the `manualColumnFreeze` plugin enabling `manualColumnMove`, even if it was declared as `false`. [#4553](https://github.com/handsontable/handsontable/issues/4553)
685
- - Fixed a problem with plugins using `arrayMappers` not working properly after updating the dataset. [#4567](https://github.com/handsontable/handsontable/issues/4567)
686
- - Fixed a bug, where calling `loadData` with `minSpareRows` and `manualRowMove` enabled caused the table to improperly load the data. [#4576](https://github.com/handsontable/handsontable/issues/4576)
687
- - Fixed a bug, where enabling `columnSorting` caused the `manualColumnFreeze` to be unusable. [#4601](https://github.com/handsontable/handsontable/issues/4601)
688
- - Fixed a problem, where the columns were assigned improper widths after inserting additional columns or removing any of them. [#4666](https://github.com/handsontable/handsontable/issues/4666)
689
- - Fixed a bug, where moving rows was impossible while `persistentState` was enabled. [#4713](https://github.com/handsontable/handsontable/issues/4713)
690
- - Fixed a bug, where `manualColumnMove` didn't work if the dataset was empty. [#4926](https://github.com/handsontable/handsontable/issues/4926)
691
- - Fixed a bug with the `collapseAll` method from the `collapsibleColumns` plugin did not work properly if `columnSorting` was enabled. [#4999](https://github.com/handsontable/handsontable/issues/4999)
692
- - Fixed a bug, where calling `loadData` with `minSpareRows` enabled would cause unwanted blank rows to appear. [#5707](https://github.com/handsontable/handsontable/issues/5707)
693
- - Fixed a bug with the `afterColumnMove` hook receiving an improper `target` argument. [#5173](https://github.com/handsontable/handsontable/issues/5173)
694
- - Fixed a problem, where filtering data after moving rows would not work properly. [#5178](https://github.com/handsontable/handsontable/issues/5178)
695
- - Fixed a bug, where calling `loadData` made `NaN` appear in the column headers. [#5369](https://github.com/handsontable/handsontable/issues/5369)
696
- - Fixed a bug with the `skipColumnOnPaste` option not working properly when using `columnSorting` and `hiddenColumns`. [#5824](https://github.com/handsontable/handsontable/issues/5824)
697
- - Fixed a bug with the `trimRows` plugin did not work properly after moving rows. [#5860](https://github.com/handsontable/handsontable/issues/5860)
698
- - Fixed a problem with `minSpareRows` not working properly with the `trimRows` plugin being used. [#5862](https://github.com/handsontable/handsontable/issues/5862)
699
- - Fixed a problem, where it was impossible to filter the data declared in the `nestedRows` plugin. [#5889](https://github.com/handsontable/handsontable/issues/5889)
700
- - Fixed a bug, where filtering and sorting data would cause the `toVisualRow` method to return the wrong results. [#5890](https://github.com/handsontable/handsontable/issues/5890)
701
- - Fixed a bug with the `filters` and `trimRows` plugins not working properly alongside each other. [#5915](https://github.com/handsontable/handsontable/issues/5915)
702
- - Fixed a bug, where `manualColumnMove` would not work properly when the data object properties count would be lower than the table column count. [#5931](https://github.com/handsontable/handsontable/issues/5931)
703
- - Fixed a bug with the `trimRows` plugin did not work properly with the `startRows` option. [#5953](https://github.com/handsontable/handsontable/issues/5953)
704
- - Fixed a problem, where using `loadData` after sorting would not work as expected. [#5956](https://github.com/handsontable/handsontable/issues/5953)
705
- - Fixed a problem with the `beforeColumnMove` and `afterColumnMove` hooks not containing information about their destination indexes. [#6005](https://github.com/handsontable/handsontable/issues/6005)
706
- - Fixed a problem where using `filters` and `minSpareRows` would make the table add an empty row at the beginning of the table. [#6278](https://github.com/handsontable/handsontable/issues/5953)
707
- - Fixed a bug with the `manualRowMove` plugin would duplicate data in the moved rows, when used with a row index greater than the table row count. [#6088](https://github.com/handsontable/handsontable/issues/5953)
708
- - Fixed a bug, where the `toVisualRow` method returned `null` when using the `trimRows` and `columnSorting` plugins together. [#6310](https://github.com/handsontable/handsontable/issues/6310)
709
- - Fixed a problem, where calling `updateSettings` in the `afterColumnMove` hook callback would have no effect. [#4480](https://github.com/handsontable/handsontable/issues/4480)
710
- - Fixed a bug, where calling `loadData` would make the `filters` plugin to not behave as expected. [#5244](https://github.com/handsontable/handsontable/issues/5244)
711
- - Fixed a bug, where detaching a child from a parent in the `nestedRows` plugin would cause a `+/-` button misalignment. [#5900](https://github.com/handsontable/handsontable/issues/5900)
712
- - Fixed a problem with the `columnSummary` plugin creating a doubled summary row. [#5794](https://github.com/handsontable/handsontable/issues/5794)
713
- - Fixed a bug, where moving children between parents using the `nestedRows` plugin would throw an error. [#6066](https://github.com/handsontable/handsontable/issues/6066)
714
- - Fixed a bug, where adding rows by modifying the data by reference while using the `nestedRows` plugin would throw an error. [#3914](https://github.com/handsontable/handsontable/issues/3914)
715
- - Fixed a bug, where merging cells would conflict with the `columnSorting` plugin. [#6086](https://github.com/handsontable/handsontable/issues/6086)
716
- - Fixed a bug, where the row headers would stay visible after removing all the table columns. [#6412](https://github.com/handsontable/handsontable/issues/6412)
717
- - Fixed an issue where Hidden columns become visible when the user ran `updateSettings`. [#4121](https://github.com/handsontable/handsontable/issues/4121)
718
- - Fixed an issue where using `hiddenColumns` and `stretchH` showed a redundant horizontal scrollbar. [#4181](https://github.com/handsontable/handsontable/issues/4181)
719
- - Fixed an issue in which if the last column was a hidden column and `stretchH` was enabled, the last column was displayed. [#4370](https://github.com/handsontable/handsontable/issues/4370)
720
- - Fixed an issue where `updateSettings` performance was very low because of `hiddenColumns` being rendered. [#4381](https://github.com/handsontable/handsontable/issues/4381)
721
- - Fixed an issue where collapse was not working correctly with custom cell renderers. [#4716](https://github.com/handsontable/handsontable/issues/4716)
722
- - Fixed an incorrect header name when user defined more columns in the `nestedHeaders` plugin. [#4716](https://github.com/handsontable/handsontable/issues/4716)
723
- - Fixed an issue where `hiddenColumns` did not work properly with `columnSorting`. [#5571](https://github.com/handsontable/handsontable/issues/5571)
724
- - Fixed an issue where `manualColumnMove` should work with `hiddenColumns`. [#5598](https://github.com/handsontable/handsontable/issues/5598)
725
- - Fixed an issue where `hiddenColumns` option interfered with the keyboard movement. [#5704](https://github.com/handsontable/handsontable/issues/5704)
726
- - Fixed an issue where after hiding the first two rows, the row headers became de-synchronized by 1px. [#5817](https://github.com/handsontable/handsontable/issues/5817)
727
- - Fixed an issue where hiding columns affected selection of hidden columns. [#5871](https://github.com/handsontable/handsontable/issues/5871)
728
- - Fixed an issue where if `collapsibleColumns` were set to `true` it was impossible to exit selection mode. [#5875](https://github.com/handsontable/handsontable/issues/5875)
729
- - Fixed an issue where `hiddenColumns` did not work properly with `autoWrapRow/autoWrapCol`. [#5877](https://github.com/handsontable/handsontable/issues/5877)
730
- - Fixed an issue on IE where hiding the first column caused a display of double border for top left corner. [#5881](https://github.com/handsontable/handsontable/issues/5881)
731
- - Fixed an issue where `nestedHeaders` duplicated a header name if more columns are added. [#5882](https://github.com/handsontable/handsontable/issues/5882)
732
- - Fixed an issue where `hiddenColumns` plugin unset cell's `renderer`. [#5883](https://github.com/handsontable/handsontable/issues/5883)
733
- - Fixed an issue where `hiddenColumns` had stored visual indexes and should have used physical indexes. [#5909](https://github.com/handsontable/handsontable/issues/5909)
734
- - Fixed an issue where hidden columns should be unrecoverable. [#6113](https://github.com/handsontable/handsontable/issues/6113)
735
- - Fixed an issue where row selection ignored columns that are hidden at the end. [#6181](https://github.com/handsontable/handsontable/issues/6181)
736
- - Fixed an issue where defining data with more data than used in `columns` caused an issue with showing column once it was hidden. [#6426](https://github.com/handsontable/handsontable/issues/6426)
737
- - Fixed an issue where hiding rows, while there was a merged area, involved caused data shifting and unexpected merged area coordinates. [#6376](https://github.com/handsontable/handsontable/issues/6376)
738
- - Fixed an issue where `colHeader` was truncated after moving `hiddenColumn`. [#6463](https://github.com/handsontable/handsontable/issues/6463)
739
- - Fixed an issue where the last hidden column was visible upon column resizing. [#6557](https://github.com/handsontable/handsontable/issues/6557)
740
- - Fixed an issue where with hiding columns after moved them manually. [#6668](https://github.com/handsontable/handsontable/issues/6668)
741
- - Fixed an issue where expanding a collapsed column caused expanding of a child columns except for the first one. [#5792](https://github.com/handsontable/handsontable/issues/5792)
742
- - Fixed an issue where setting `columnSorting` to `true` (on initialization or via `updateSettings`) made headers non-collapsible programmatically via `collapseAll` method. [#4999](https://github.com/handsontable/handsontable/issues/4999)
743
- - Fixed an issue where `customBorders` plugin was missing in the definition file. [#6477](https://github.com/handsontable/handsontable/issues/6477)
744
- - Fixed incorrect size of `wtHider`and `wtHolder` in overlays. [#3873](https://github.com/handsontable/handsontable/issues/3873)
745
- - Fixed an issue where `updateSettings` could not update `tableClassName`. [#6295](https://github.com/handsontable/handsontable/issues/6295)
746
- - Fixed an issue where JSON data with empty value was losing some double quotes when pasted into a cell. [#6167](https://github.com/handsontable/handsontable/issues/6167)
747
- - Fixed an issue where some classes for the table were missing if one of them was empty. [#6371](https://github.com/handsontable/handsontable/issues/6371)
748
- - Fixed an issue where clicking in a contextmenu's border opened the native context menu. [#6218](https://github.com/handsontable/handsontable/issues/6218)
749
- - Fixed the error that ocurred during loading of E2E test runner in Edge and IE. [#6713](https://github.com/handsontable/handsontable/issues/6713)
750
- - Fixed the inconsistency and problems with adding rows from the corner when all rows are trimmed. [#7061](https://github.com/handsontable/handsontable/issues/7061)
751
- - Fixed an issue where using read-only and alignment from the context menu was disabled when all columns were selected. [#7114](https://github.com/handsontable/handsontable/issues/7114)
752
- - Fixed an issue where setting focus to a column to open context menu after applying a filter was impossible. [#7005](https://github.com/handsontable/handsontable/issues/7005)
753
- - Fixed an issue where `minSpareCols` with `undo` added too many columns. [#6363](https://github.com/handsontable/handsontable/issues/6363)
754
- - Fixed the inconsistency in selection when using the right mouse button for first row/column. [#6334](https://github.com/handsontable/handsontable/issues/6334)
755
- - Fixed an issue where undoing column removal caused column headers to lack a header. [#6992](https://github.com/handsontable/handsontable/issues/6992)
756
- - Fixed an issue where `readOnly` for column was erased (did not apply) if filters were used. [#6559](https://github.com/handsontable/handsontable/issues/6559)
757
- - Fixed an issue where readonly property was lost after declining confirmation in `beforeRemoveCol` or `beforeRemoverow`. [#6332](https://github.com/handsontable/handsontable/issues/6332)
758
- - Fixed an issue where `readOnly` state for some cells was lost when rows with `trimRows` turned on were removed. [#6990](https://github.com/handsontable/handsontable/issues/6990)
759
- - Fixed incorrect column header highlight when merged cells were unmerged and `hiddenColumns` were used. [#6978](https://github.com/handsontable/handsontable/issues/6978)
760
- - Fixed an issue where after hiding the first row, the second row top border disappeared. [#6977](https://github.com/handsontable/handsontable/issues/6977)
761
- - Fixed an issue with incorrect selection after hiding the first row. [#6831](https://github.com/handsontable/handsontable/issues/6831)
762
- - Fixed an issue where hiding the first row caused blue highlight in column headers selection to disappear. [#6976](https://github.com/handsontable/handsontable/issues/6976)
763
- - Fixed wrong selection area after sorting with hidden rows. [#6386](https://github.com/handsontable/handsontable/issues/6386)
764
- - Fixed an issue where it was not possible to use `selectAll` when the first row was hidden. [#6975](https://github.com/handsontable/handsontable/issues/6975)
765
- - Fixed an issue where it was possible to select hidden row or column. [#6974](https://github.com/handsontable/handsontable/issues/6974)
766
- - Fixed an issue where row indexes changed if the first row was hiding after moving row from bottom to top. [#6965](https://github.com/handsontable/handsontable/issues/6965)
767
- - Fixed an issue where selection skipped the highest parent. [#6770](https://github.com/handsontable/handsontable/issues/6770)
768
- - Fixed an iisue where `nestedRows` blocked table from loading if data was not provided. [#6928](https://github.com/handsontable/handsontable/issues/6928)
769
- - Fixed an isse where it was impossible to go back to the original cell after dragging down. [#4233](https://github.com/handsontable/handsontable/issues/4233)
770
- - Fixed an issue where keyboard navigation did not work on merged cells with hidden rows/columns. [#6973](https://github.com/handsontable/handsontable/issues/6973)
771
- - Fixed an issue where `trimRows` and `hiddenRows` with specific settings broke borders. [#6904](https://github.com/handsontable/handsontable/issues/6904)
772
- - Fixed wrong union type for `startPosition`. [#6840](https://github.com/handsontable/handsontable/issues/6840)
773
- - Fixed type mismatch for `Handsontable.plugins.ContextMenu`. [#6347](https://github.com/handsontable/handsontable/issues/6347)
774
- - Fixed an issue where `manualColumnMove` did not modify the `columns` in `updateSettings`. [#5200](https://github.com/handsontable/handsontable/issues/5200)
775
- - Fixed rendering issue on column udpate with `updateSettings`. [#3770](https://github.com/handsontable/handsontable/issues/3770)
776
- - Fixed an issue where expanding a collapsed column was also expanding 'child' collapsed columns, except the first child. [#5792](https://github.com/handsontable/handsontable/issues/5792)
777
- - Fixed an issue with inproper selection for headers when the first column was hidden. [#5999](https://github.com/handsontable/handsontable/issues/5999)
778
- - Fixed an issue where it was not possible to align cells if the selection was made upward. [#6600](https://github.com/handsontable/handsontable/issues/6600)
779
- - Fixed an issue where `currentColClassName` did not work properly with `nestedHeaders`. [#5861](https://github.com/handsontable/handsontable/issues/5861)
780
- - Fixed an issue with scrollbar and dimension calculation in Firefox for toggling column visibility with fixed columns and `stretchH`. [#6186](https://github.com/handsontable/handsontable/issues/6186)
781
- - Fixed an issue with undoing the nested row removal. [#6433](https://github.com/handsontable/handsontable/issues/6433)
782
- - Fixed an isse where `getSourceData` functions returned wrong data for nested rows. [#5771](https://github.com/handsontable/handsontable/issues/5771)
783
- - Fixed na issue where formulas plugin did not work with `nestedRows`. [#4154](https://github.com/handsontable/handsontable/issues/4154)
784
- - Fixed an issue where nested headers and hidden columns highlighted ad additional column when used together. [#6881](https://github.com/handsontable/handsontable/issues/6881)
785
- - Fixed an issue where `getByRange` for sourceData did not work properly with nested object data. [#6548](https://github.com/handsontable/handsontable/issues/6548)
786
- - Fixed an issue where `window.frameElement` threw errors in MSEdge, IE and Safari. [#6478](https://github.com/handsontable/handsontable/issues/6478)
787
- - Fixed an issue where `DataSource.countColumns` returned invalid number of columns for nested objects. [#3958](https://github.com/handsontable/handsontable/issues/3958)
788
- - Fixed an issue where `mergedCells` with hidden cells caused problems with rendering. [#7020](https://github.com/handsontable/handsontable/issues/7020)
789
- - Fixed an issue where it was not possible to move column when all columns were selected by `ctrl + a`. [#6355](https://github.com/handsontable/handsontable/issues/6355)
790
- - Fixed an issue where double click on the column resize handle did not adjust size correctly. [#6755](https://github.com/handsontable/handsontable/issues/6755)
791
- - Fixed an issue where the cell meta was retrieved using the wrong coordinates. [#6703](https://github.com/handsontable/handsontable/issues/6703)
792
- - Fixed nested rows incorrect state after changing data. [#5753](https://github.com/handsontable/handsontable/issues/5753)
793
- - Fixed an issue in EDGE where the dropdown menu `onMouseOut` event caused critical errors when hovering over vertical scrollbar. [#6699](https://github.com/handsontable/handsontable/issues/6699)
794
- - Fixed an issue with too many layers of highlight with noncontinuous selection on merged cells. [#7028](https://github.com/handsontable/handsontable/issues/7028)
795
- - Fixed an issue where `NestedHeaders` did not allow to define header level as an empty array. [#7035](https://github.com/handsontable/handsontable/issues/7035)
796
- - Fixed an issue where passing `nestedHeaders` as a single empty array stoped the table from rendering. [#7036](https://github.com/handsontable/handsontable/issues/7036)
797
- - Fixed an issue where opening a context menu for a column when its hidden data was selected did not block adding of rows by the menu. [#7050](https://github.com/handsontable/handsontable/issues/7050)
798
- - Fixed an issue where it was not possible to navigate past hidden column using keyboard if` hot.updateSettings` was called in `afterSelection`. [#3726](https://github.com/handsontable/handsontable/issues/3726)
799
- - Fixed an issue where headers did not export with `exportToFile` in the specific case. [#4176](https://github.com/handsontable/handsontable/issues/4176)
800
- - Fixed an issue with types mismatch. [#6035](https://github.com/handsontable/handsontable/issues/6035)
801
- - Fixed an issue where manual row resize handler threw an error when bottom rows overlay was enabled. [#6435](https://github.com/handsontable/handsontable/issues/6435)
802
- - Fixed an issue where the `afterRowResize` hook shared incorrect results in the second parameter. [#6430](https://github.com/handsontable/handsontable/issues/6430)
803
- - Fixed an issue where the row/column resize hooks should not have returned `null`. [#7074](https://github.com/handsontable/handsontable/issues/7074)
804
- - Fixed the loss of selection after merging from headers. [#7076](https://github.com/handsontable/handsontable/issues/7076)
805
- - Fixed an issue where calling `updateSettings` changed the index of frozen columns via `freezeColumn` method. [#6843](https://github.com/handsontable/handsontable/issues/6843)
806
- - Fixed an issue where deleting the last column via `updateSettings` which was part of the selection caused scroll to the bottom. [#5849](https://github.com/handsontable/handsontable/issues/5849)
807
- - Fixed an issue where it was not possible to hide rows and merge cells at the same time. [#6224](https://github.com/handsontable/handsontable/issues/6224)
808
- - Fixed the wrong data in merge cells after the hidden column and additionally an error occurs. [#6888](https://github.com/handsontable/handsontable/issues/6888)
809
- - Fixed an issue where it was not possible to change cell type via `setCellMeta`. [#4793](https://github.com/handsontable/handsontable/issues/4793)
810
- - Fixed an issue where cell editor did not dynamically changed while changing the cell type. [#4360](https://github.com/handsontable/handsontable/issues/4360)
811
- - Fixed an issue where it was not possible to unmerge cells if part of them was hidden. [#7095](https://github.com/handsontable/handsontable/issues/7095)
812
- - Fixed an issue where calling `clear` method removed the focus from the table. [#7099](https://github.com/handsontable/handsontable/issues/7099)
813
- - Fixed an issue where `clear` method did not work for hidden data. [#7097](https://github.com/handsontable/handsontable/issues/7097)
814
- - Fixed an issue where the editor was moved by 1px when the first row / column was hidden. [#6982](https://github.com/handsontable/handsontable/issues/6982)
815
- - Fixed an issue where headers were deselected after undoing removal. [#6670](https://github.com/handsontable/handsontable/issues/6670)
816
- - Fixed an issue with improper selection after insert column/row when mergeCells was enabled. [#4897](https://github.com/handsontable/handsontable/issues/4897)
817
- - Fixed an issue where wrong cell meta was removed when deleting rows. [#6051](https://github.com/handsontable/handsontable/issues/6051)
818
- - Fixed wrong types of `beforeRowMove` arguments. [#6539](https://github.com/handsontable/handsontable/issues/6539)
819
- - Fixed an issue where selection of a whole row did not happen consequently after selecting a row header. [#5906](https://github.com/handsontable/handsontable/issues/5906)
820
- - Fixed an issue where it was not possible to use physical row index instead of visual one. [#6309](https://github.com/handsontable/handsontable/issues/6309)
821
- - Fixed an issue where incorrect data was returned after undoing the remove column option. [#5000](https://github.com/handsontable/handsontable/issues/5000)
822
- - Fixed - Copy and paste works properly also when selecting hidden columns when: all columns within a selected range are hidden and when just some columns within a selected range are hidden. [#7043](https://github.com/handsontable/handsontable/issues/7043).
823
- - Fixed an issue where it was impossible to add new row in the `nestedRows`. [#5133](https://github.com/handsontable/handsontable/issues/5133)
824
- - Fixed an issue where `afterOnCellMouseDown` returned (0,0) coords after clicking on the topleft corner. [#3978](https://github.com/handsontable/handsontable/issues/3978)
825
- - Fixed an issue where persisted `manualColumnMove` was not restored when using `loadData`. [#5207](https://github.com/handsontable/handsontable/issues/5207)
826
- - Fixed issues with filtering results in blank rows. [#5208](https://github.com/handsontable/handsontable/issues/5208)
827
- - Fixed an issue where changing data on collapsed rows resulted in error. [#5328](https://github.com/handsontable/handsontable/issues/5328)
828
- - Fixed an issue where the `manualColumnMove` operation affected the column order of data loaded by `loadData`. [#5591](https://github.com/handsontable/handsontable/issues/5591)
829
- - Fixed an issue where `nestedRows` did not allow to keep `rowHeaders` after collapsing. [#5874](https://github.com/handsontable/handsontable/issues/5874)
830
- - Fixed performance and CPU issue caused by using some handsontable properties. [#6058](https://github.com/handsontable/handsontable/issues/6058)
831
- - Fixed an error with columnSummary plugin when trying to create a row. [#6300](https://github.com/handsontable/handsontable/issues/6300)
832
- - Fixed an error where `walkontable.css` and `handsontable.css` stylesheets were out of sync. [#6381](https://github.com/handsontable/handsontable/issues/6381)
833
- - Fixed an issue where `colHeaders` order was not updated after manual move with empty object data source. [#6413](https://github.com/handsontable/handsontable/issues/6413)
834
- - Fixed "detach from parent" option. [#6432](https://github.com/handsontable/handsontable/issues/6432)
835
- - Fixed an issue where `PreventOverflow` feature did not work if `multiColumnSorting` plugin was enabled. [#6514](https://github.com/handsontable/handsontable/issues/6514)
836
- - Fixed an issue where old CSS classes were not removed after `updateSettings`. [#6575](https://github.com/handsontable/handsontable/issues/6575)
837
- - Fixed an issue where `columnSummary`, `Filters` and spare rows were causing 'RangeError: Maximum call stack size exceeded'. [#6695](https://github.com/handsontable/handsontable/issues/6695)
838
- - Fixed an issue where `afterSelectionEnd` returned incorrect data when clicking on a column when all rows were hidden. [#7045](https://github.com/handsontable/handsontable/issues/7045)
839
- - Fixed an issue where wrapping was not applied after setting `trimWhitespace` to `false`. [#6232](https://github.com/handsontable/handsontable/issues/6232)
840
- - Fixed an issue with additional selection border in iOS. [#7103](https://github.com/handsontable/handsontable/issues/7103)
841
- - Fixed an issue with rendering different borders. [#6955](https://github.com/handsontable/handsontable/issues/6955)
842
- - Fixed an issue with `BACKSPACE` not working properly in the filter by value input. [#6842](https://github.com/handsontable/handsontable/issues/6842)
843
- - Fixed an issue with Undo/Redo not working with fixing columns. [#6869](https://github.com/handsontable/handsontable/issues/6869)
844
- - Added a missing argument in the `deepObjectSize` function. [#6821](https://github.com/handsontable/handsontable/pull/6821)
1141
+ - Fixed a problem with data not being added to the table properly with the `columnSorting` option
1142
+ enabled. [#2685](https://github.com/handsontable/handsontable/issues/2685)
1143
+ - Fixed a problem with `loadData` not resetting the row order changed by the `manualRowMove` plugin.
1144
+ [#3568](https://github.com/handsontable/handsontable/issues/3568)
1145
+ - Fixed a bug, where using `alter`'s `insert_row` after using the `loadData` method and sorting the
1146
+ data would add unintentional additional rows to the table.
1147
+ [#3809](https://github.com/handsontable/handsontable/issues/3809)
1148
+ - Fixed a bug, where blank rows appeared in the middle of the table after using `loadData` along
1149
+ with the `minSpareRows` option. [#3937](https://github.com/handsontable/handsontable/issues/3937)
1150
+ - Fixed a problem with the `columnSummary` plugin not working properly after adding new rows using
1151
+ the Context Menu and sorting the data.
1152
+ [#3924](https://github.com/handsontable/handsontable/issues/3924)
1153
+ - Fixed a bug, where calling `loadData` with an object-based data source would not work properly.
1154
+ [#4204](https://github.com/handsontable/handsontable/issues/4204)
1155
+ - Fixed a problem with the Hidden Columns settings being reset after calling `updateSettings`.
1156
+ [#4121](https://github.com/handsontable/handsontable/issues/4121)
1157
+ - Fixed a bug with the `filters` plugin using incorrect indexes after moving and/or sorting the
1158
+ table. [#4442](https://github.com/handsontable/handsontable/issues/4442)
1159
+ - Fixed a bug that caused a column to contain improper data after moving it to index `0`.
1160
+ [#4470](https://github.com/handsontable/handsontable/issues/4470)
1161
+ - Fixed a bug with the `afterRowMove` hook receiving an improper `target` argument.
1162
+ [#4501](https://github.com/handsontable/handsontable/issues/4501)
1163
+ - Fixed a problem with the `manualColumnFreeze` plugin enabling `manualColumnMove`, even if it was
1164
+ declared as `false`. [#4553](https://github.com/handsontable/handsontable/issues/4553)
1165
+ - Fixed a problem with plugins using `arrayMappers` not working properly after updating the dataset.
1166
+ [#4567](https://github.com/handsontable/handsontable/issues/4567)
1167
+ - Fixed a bug, where calling `loadData` with `minSpareRows` and `manualRowMove` enabled caused the
1168
+ table to improperly load the data.
1169
+ [#4576](https://github.com/handsontable/handsontable/issues/4576)
1170
+ - Fixed a bug, where enabling `columnSorting` caused the `manualColumnFreeze` to be unusable.
1171
+ [#4601](https://github.com/handsontable/handsontable/issues/4601)
1172
+ - Fixed a problem, where the columns were assigned improper widths after inserting additional
1173
+ columns or removing any of them. [#4666](https://github.com/handsontable/handsontable/issues/4666)
1174
+ - Fixed a bug, where moving rows was impossible while `persistentState` was enabled.
1175
+ [#4713](https://github.com/handsontable/handsontable/issues/4713)
1176
+ - Fixed a bug, where `manualColumnMove` didn't work if the dataset was empty.
1177
+ [#4926](https://github.com/handsontable/handsontable/issues/4926)
1178
+ - Fixed a bug with the `collapseAll` method from the `collapsibleColumns` plugin did not work
1179
+ properly if `columnSorting` was enabled.
1180
+ [#4999](https://github.com/handsontable/handsontable/issues/4999)
1181
+ - Fixed a bug, where calling `loadData` with `minSpareRows` enabled would cause unwanted blank rows
1182
+ to appear. [#5707](https://github.com/handsontable/handsontable/issues/5707)
1183
+ - Fixed a bug with the `afterColumnMove` hook receiving an improper `target` argument.
1184
+ [#5173](https://github.com/handsontable/handsontable/issues/5173)
1185
+ - Fixed a problem, where filtering data after moving rows would not work properly.
1186
+ [#5178](https://github.com/handsontable/handsontable/issues/5178)
1187
+ - Fixed a bug, where calling `loadData` made `NaN` appear in the column headers.
1188
+ [#5369](https://github.com/handsontable/handsontable/issues/5369)
1189
+ - Fixed a bug with the `skipColumnOnPaste` option not working properly when using `columnSorting`
1190
+ and `hiddenColumns`. [#5824](https://github.com/handsontable/handsontable/issues/5824)
1191
+ - Fixed a bug with the `trimRows` plugin did not work properly after moving rows.
1192
+ [#5860](https://github.com/handsontable/handsontable/issues/5860)
1193
+ - Fixed a problem with `minSpareRows` not working properly with the `trimRows` plugin being used.
1194
+ [#5862](https://github.com/handsontable/handsontable/issues/5862)
1195
+ - Fixed a problem, where it was impossible to filter the data declared in the `nestedRows` plugin.
1196
+ [#5889](https://github.com/handsontable/handsontable/issues/5889)
1197
+ - Fixed a bug, where filtering and sorting data would cause the `toVisualRow` method to return the
1198
+ wrong results. [#5890](https://github.com/handsontable/handsontable/issues/5890)
1199
+ - Fixed a bug with the `filters` and `trimRows` plugins not working properly alongside each other.
1200
+ [#5915](https://github.com/handsontable/handsontable/issues/5915)
1201
+ - Fixed a bug, where `manualColumnMove` would not work properly when the data object properties
1202
+ count would be lower than the table column count.
1203
+ [#5931](https://github.com/handsontable/handsontable/issues/5931)
1204
+ - Fixed a bug with the `trimRows` plugin did not work properly with the `startRows` option.
1205
+ [#5953](https://github.com/handsontable/handsontable/issues/5953)
1206
+ - Fixed a problem, where using `loadData` after sorting would not work as expected.
1207
+ [#5956](https://github.com/handsontable/handsontable/issues/5953)
1208
+ - Fixed a problem with the `beforeColumnMove` and `afterColumnMove` hooks not containing information
1209
+ about their destination indexes. [#6005](https://github.com/handsontable/handsontable/issues/6005)
1210
+ - Fixed a problem where using `filters` and `minSpareRows` would make the table add an empty row at
1211
+ the beginning of the table. [#6278](https://github.com/handsontable/handsontable/issues/5953)
1212
+ - Fixed a bug with the `manualRowMove` plugin would duplicate data in the moved rows, when used with
1213
+ a row index greater than the table row count.
1214
+ [#6088](https://github.com/handsontable/handsontable/issues/5953)
1215
+ - Fixed a bug, where the `toVisualRow` method returned `null` when using the `trimRows` and
1216
+ `columnSorting` plugins together.
1217
+ [#6310](https://github.com/handsontable/handsontable/issues/6310)
1218
+ - Fixed a problem, where calling `updateSettings` in the `afterColumnMove` hook callback would have
1219
+ no effect. [#4480](https://github.com/handsontable/handsontable/issues/4480)
1220
+ - Fixed a bug, where calling `loadData` would make the `filters` plugin to not behave as expected.
1221
+ [#5244](https://github.com/handsontable/handsontable/issues/5244)
1222
+ - Fixed a bug, where detaching a child from a parent in the `nestedRows` plugin would cause a `+/-`
1223
+ button misalignment. [#5900](https://github.com/handsontable/handsontable/issues/5900)
1224
+ - Fixed a problem with the `columnSummary` plugin creating a doubled summary row.
1225
+ [#5794](https://github.com/handsontable/handsontable/issues/5794)
1226
+ - Fixed a bug, where moving children between parents using the `nestedRows` plugin would throw an
1227
+ error. [#6066](https://github.com/handsontable/handsontable/issues/6066)
1228
+ - Fixed a bug, where adding rows by modifying the data by reference while using the `nestedRows`
1229
+ plugin would throw an error. [#3914](https://github.com/handsontable/handsontable/issues/3914)
1230
+ - Fixed a bug, where merging cells would conflict with the `columnSorting` plugin.
1231
+ [#6086](https://github.com/handsontable/handsontable/issues/6086)
1232
+ - Fixed a bug, where the row headers would stay visible after removing all the table columns.
1233
+ [#6412](https://github.com/handsontable/handsontable/issues/6412)
1234
+ - Fixed an issue where Hidden columns become visible when the user ran `updateSettings`.
1235
+ [#4121](https://github.com/handsontable/handsontable/issues/4121)
1236
+ - Fixed an issue where using `hiddenColumns` and `stretchH` showed a redundant horizontal scrollbar.
1237
+ [#4181](https://github.com/handsontable/handsontable/issues/4181)
1238
+ - Fixed an issue in which if the last column was a hidden column and `stretchH` was enabled, the
1239
+ last column was displayed. [#4370](https://github.com/handsontable/handsontable/issues/4370)
1240
+ - Fixed an issue where `updateSettings` performance was very low because of `hiddenColumns` being
1241
+ rendered. [#4381](https://github.com/handsontable/handsontable/issues/4381)
1242
+ - Fixed an issue where collapse was not working correctly with custom cell renderers.
1243
+ [#4716](https://github.com/handsontable/handsontable/issues/4716)
1244
+ - Fixed an incorrect header name when user defined more columns in the `nestedHeaders` plugin.
1245
+ [#4716](https://github.com/handsontable/handsontable/issues/4716)
1246
+ - Fixed an issue where `hiddenColumns` did not work properly with `columnSorting`.
1247
+ [#5571](https://github.com/handsontable/handsontable/issues/5571)
1248
+ - Fixed an issue where `manualColumnMove` should work with `hiddenColumns`.
1249
+ [#5598](https://github.com/handsontable/handsontable/issues/5598)
1250
+ - Fixed an issue where `hiddenColumns` option interfered with the keyboard movement.
1251
+ [#5704](https://github.com/handsontable/handsontable/issues/5704)
1252
+ - Fixed an issue where after hiding the first two rows, the row headers became de-synchronized by
1253
+ 1px. [#5817](https://github.com/handsontable/handsontable/issues/5817)
1254
+ - Fixed an issue where hiding columns affected selection of hidden columns.
1255
+ [#5871](https://github.com/handsontable/handsontable/issues/5871)
1256
+ - Fixed an issue where if `collapsibleColumns` were set to `true` it was impossible to exit
1257
+ selection mode. [#5875](https://github.com/handsontable/handsontable/issues/5875)
1258
+ - Fixed an issue where `hiddenColumns` did not work properly with `autoWrapRow/autoWrapCol`.
1259
+ [#5877](https://github.com/handsontable/handsontable/issues/5877)
1260
+ - Fixed an issue on IE where hiding the first column caused a display of double border for top left
1261
+ corner. [#5881](https://github.com/handsontable/handsontable/issues/5881)
1262
+ - Fixed an issue where `nestedHeaders` duplicated a header name if more columns are added.
1263
+ [#5882](https://github.com/handsontable/handsontable/issues/5882)
1264
+ - Fixed an issue where `hiddenColumns` plugin unset cell's `renderer`.
1265
+ [#5883](https://github.com/handsontable/handsontable/issues/5883)
1266
+ - Fixed an issue where `hiddenColumns` had stored visual indexes and should have used physical
1267
+ indexes. [#5909](https://github.com/handsontable/handsontable/issues/5909)
1268
+ - Fixed an issue where hidden columns should be unrecoverable.
1269
+ [#6113](https://github.com/handsontable/handsontable/issues/6113)
1270
+ - Fixed an issue where row selection ignored columns that are hidden at the end.
1271
+ [#6181](https://github.com/handsontable/handsontable/issues/6181)
1272
+ - Fixed an issue where defining data with more data than used in `columns` caused an issue with
1273
+ showing column once it was hidden.
1274
+ [#6426](https://github.com/handsontable/handsontable/issues/6426)
1275
+ - Fixed an issue where hiding rows, while there was a merged area, involved caused data shifting and
1276
+ unexpected merged area coordinates.
1277
+ [#6376](https://github.com/handsontable/handsontable/issues/6376)
1278
+ - Fixed an issue where `colHeader` was truncated after moving `hiddenColumn`.
1279
+ [#6463](https://github.com/handsontable/handsontable/issues/6463)
1280
+ - Fixed an issue where the last hidden column was visible upon column resizing.
1281
+ [#6557](https://github.com/handsontable/handsontable/issues/6557)
1282
+ - Fixed an issue where with hiding columns after moved them manually.
1283
+ [#6668](https://github.com/handsontable/handsontable/issues/6668)
1284
+ - Fixed an issue where expanding a collapsed column caused expanding of a child columns except for
1285
+ the first one. [#5792](https://github.com/handsontable/handsontable/issues/5792)
1286
+ - Fixed an issue where setting `columnSorting` to `true` (on initialization or via `updateSettings`)
1287
+ made headers non-collapsible programmatically via `collapseAll` method.
1288
+ [#4999](https://github.com/handsontable/handsontable/issues/4999)
1289
+ - Fixed an issue where `customBorders` plugin was missing in the definition file.
1290
+ [#6477](https://github.com/handsontable/handsontable/issues/6477)
1291
+ - Fixed incorrect size of `wtHider`and `wtHolder` in overlays.
1292
+ [#3873](https://github.com/handsontable/handsontable/issues/3873)
1293
+ - Fixed an issue where `updateSettings` could not update `tableClassName`.
1294
+ [#6295](https://github.com/handsontable/handsontable/issues/6295)
1295
+ - Fixed an issue where JSON data with empty value was losing some double quotes when pasted into a
1296
+ cell. [#6167](https://github.com/handsontable/handsontable/issues/6167)
1297
+ - Fixed an issue where some classes for the table were missing if one of them was empty.
1298
+ [#6371](https://github.com/handsontable/handsontable/issues/6371)
1299
+ - Fixed an issue where clicking in a contextmenu's border opened the native context menu.
1300
+ [#6218](https://github.com/handsontable/handsontable/issues/6218)
1301
+ - Fixed the error that ocurred during loading of E2E test runner in Edge and IE.
1302
+ [#6713](https://github.com/handsontable/handsontable/issues/6713)
1303
+ - Fixed the inconsistency and problems with adding rows from the corner when all rows are trimmed.
1304
+ [#7061](https://github.com/handsontable/handsontable/issues/7061)
1305
+ - Fixed an issue where using read-only and alignment from the context menu was disabled when all
1306
+ columns were selected. [#7114](https://github.com/handsontable/handsontable/issues/7114)
1307
+ - Fixed an issue where setting focus to a column to open context menu after applying a filter was
1308
+ impossible. [#7005](https://github.com/handsontable/handsontable/issues/7005)
1309
+ - Fixed an issue where `minSpareCols` with `undo` added too many columns.
1310
+ [#6363](https://github.com/handsontable/handsontable/issues/6363)
1311
+ - Fixed the inconsistency in selection when using the right mouse button for first row/column.
1312
+ [#6334](https://github.com/handsontable/handsontable/issues/6334)
1313
+ - Fixed an issue where undoing column removal caused column headers to lack a header.
1314
+ [#6992](https://github.com/handsontable/handsontable/issues/6992)
1315
+ - Fixed an issue where `readOnly` for column was erased (did not apply) if filters were used.
1316
+ [#6559](https://github.com/handsontable/handsontable/issues/6559)
1317
+ - Fixed an issue where readonly property was lost after declining confirmation in `beforeRemoveCol`
1318
+ or `beforeRemoverow`. [#6332](https://github.com/handsontable/handsontable/issues/6332)
1319
+ - Fixed an issue where `readOnly` state for some cells was lost when rows with `trimRows` turned on
1320
+ were removed. [#6990](https://github.com/handsontable/handsontable/issues/6990)
1321
+ - Fixed incorrect column header highlight when merged cells were unmerged and `hiddenColumns` were
1322
+ used. [#6978](https://github.com/handsontable/handsontable/issues/6978)
1323
+ - Fixed an issue where after hiding the first row, the second row top border disappeared.
1324
+ [#6977](https://github.com/handsontable/handsontable/issues/6977)
1325
+ - Fixed an issue with incorrect selection after hiding the first row.
1326
+ [#6831](https://github.com/handsontable/handsontable/issues/6831)
1327
+ - Fixed an issue where hiding the first row caused blue highlight in column headers selection to
1328
+ disappear. [#6976](https://github.com/handsontable/handsontable/issues/6976)
1329
+ - Fixed wrong selection area after sorting with hidden rows.
1330
+ [#6386](https://github.com/handsontable/handsontable/issues/6386)
1331
+ - Fixed an issue where it was not possible to use `selectAll` when the first row was hidden.
1332
+ [#6975](https://github.com/handsontable/handsontable/issues/6975)
1333
+ - Fixed an issue where it was possible to select hidden row or column.
1334
+ [#6974](https://github.com/handsontable/handsontable/issues/6974)
1335
+ - Fixed an issue where row indexes changed if the first row was hiding after moving row from bottom
1336
+ to top. [#6965](https://github.com/handsontable/handsontable/issues/6965)
1337
+ - Fixed an issue where selection skipped the highest parent.
1338
+ [#6770](https://github.com/handsontable/handsontable/issues/6770)
1339
+ - Fixed an iisue where `nestedRows` blocked table from loading if data was not provided.
1340
+ [#6928](https://github.com/handsontable/handsontable/issues/6928)
1341
+ - Fixed an isse where it was impossible to go back to the original cell after dragging down.
1342
+ [#4233](https://github.com/handsontable/handsontable/issues/4233)
1343
+ - Fixed an issue where keyboard navigation did not work on merged cells with hidden rows/columns.
1344
+ [#6973](https://github.com/handsontable/handsontable/issues/6973)
1345
+ - Fixed an issue where `trimRows` and `hiddenRows` with specific settings broke borders.
1346
+ [#6904](https://github.com/handsontable/handsontable/issues/6904)
1347
+ - Fixed wrong union type for `startPosition`.
1348
+ [#6840](https://github.com/handsontable/handsontable/issues/6840)
1349
+ - Fixed type mismatch for `Handsontable.plugins.ContextMenu`.
1350
+ [#6347](https://github.com/handsontable/handsontable/issues/6347)
1351
+ - Fixed an issue where `manualColumnMove` did not modify the `columns` in `updateSettings`.
1352
+ [#5200](https://github.com/handsontable/handsontable/issues/5200)
1353
+ - Fixed rendering issue on column udpate with `updateSettings`.
1354
+ [#3770](https://github.com/handsontable/handsontable/issues/3770)
1355
+ - Fixed an issue where expanding a collapsed column was also expanding 'child' collapsed columns,
1356
+ except the first child. [#5792](https://github.com/handsontable/handsontable/issues/5792)
1357
+ - Fixed an issue with inproper selection for headers when the first column was hidden.
1358
+ [#5999](https://github.com/handsontable/handsontable/issues/5999)
1359
+ - Fixed an issue where it was not possible to align cells if the selection was made upward.
1360
+ [#6600](https://github.com/handsontable/handsontable/issues/6600)
1361
+ - Fixed an issue where `currentColClassName` did not work properly with `nestedHeaders`.
1362
+ [#5861](https://github.com/handsontable/handsontable/issues/5861)
1363
+ - Fixed an issue with scrollbar and dimension calculation in Firefox for toggling column visibility
1364
+ with fixed columns and `stretchH`.
1365
+ [#6186](https://github.com/handsontable/handsontable/issues/6186)
1366
+ - Fixed an issue with undoing the nested row removal.
1367
+ [#6433](https://github.com/handsontable/handsontable/issues/6433)
1368
+ - Fixed an isse where `getSourceData` functions returned wrong data for nested rows.
1369
+ [#5771](https://github.com/handsontable/handsontable/issues/5771)
1370
+ - Fixed na issue where formulas plugin did not work with `nestedRows`.
1371
+ [#4154](https://github.com/handsontable/handsontable/issues/4154)
1372
+ - Fixed an issue where nested headers and hidden columns highlighted ad additional column when used
1373
+ together. [#6881](https://github.com/handsontable/handsontable/issues/6881)
1374
+ - Fixed an issue where `getByRange` for sourceData did not work properly with nested object data.
1375
+ [#6548](https://github.com/handsontable/handsontable/issues/6548)
1376
+ - Fixed an issue where `window.frameElement` threw errors in MSEdge, IE and Safari.
1377
+ [#6478](https://github.com/handsontable/handsontable/issues/6478)
1378
+ - Fixed an issue where `DataSource.countColumns` returned invalid number of columns for nested
1379
+ objects. [#3958](https://github.com/handsontable/handsontable/issues/3958)
1380
+ - Fixed an issue where `mergedCells` with hidden cells caused problems with rendering.
1381
+ [#7020](https://github.com/handsontable/handsontable/issues/7020)
1382
+ - Fixed an issue where it was not possible to move column when all columns were selected by
1383
+ `ctrl + a`. [#6355](https://github.com/handsontable/handsontable/issues/6355)
1384
+ - Fixed an issue where double click on the column resize handle did not adjust size correctly.
1385
+ [#6755](https://github.com/handsontable/handsontable/issues/6755)
1386
+ - Fixed an issue where the cell meta was retrieved using the wrong coordinates.
1387
+ [#6703](https://github.com/handsontable/handsontable/issues/6703)
1388
+ - Fixed nested rows incorrect state after changing data.
1389
+ [#5753](https://github.com/handsontable/handsontable/issues/5753)
1390
+ - Fixed an issue in EDGE where the dropdown menu `onMouseOut` event caused critical errors when
1391
+ hovering over vertical scrollbar.
1392
+ [#6699](https://github.com/handsontable/handsontable/issues/6699)
1393
+ - Fixed an issue with too many layers of highlight with noncontinuous selection on merged cells.
1394
+ [#7028](https://github.com/handsontable/handsontable/issues/7028)
1395
+ - Fixed an issue where `NestedHeaders` did not allow to define header level as an empty array.
1396
+ [#7035](https://github.com/handsontable/handsontable/issues/7035)
1397
+ - Fixed an issue where passing `nestedHeaders` as a single empty array stoped the table from
1398
+ rendering. [#7036](https://github.com/handsontable/handsontable/issues/7036)
1399
+ - Fixed an issue where opening a context menu for a column when its hidden data was selected did not
1400
+ block adding of rows by the menu.
1401
+ [#7050](https://github.com/handsontable/handsontable/issues/7050)
1402
+ - Fixed an issue where it was not possible to navigate past hidden column using keyboard
1403
+ if` hot.updateSettings` was called in `afterSelection`.
1404
+ [#3726](https://github.com/handsontable/handsontable/issues/3726)
1405
+ - Fixed an issue where headers did not export with `exportToFile` in the specific case.
1406
+ [#4176](https://github.com/handsontable/handsontable/issues/4176)
1407
+ - Fixed an issue with types mismatch.
1408
+ [#6035](https://github.com/handsontable/handsontable/issues/6035)
1409
+ - Fixed an issue where manual row resize handler threw an error when bottom rows overlay was
1410
+ enabled. [#6435](https://github.com/handsontable/handsontable/issues/6435)
1411
+ - Fixed an issue where the `afterRowResize` hook shared incorrect results in the second parameter.
1412
+ [#6430](https://github.com/handsontable/handsontable/issues/6430)
1413
+ - Fixed an issue where the row/column resize hooks should not have returned `null`.
1414
+ [#7074](https://github.com/handsontable/handsontable/issues/7074)
1415
+ - Fixed the loss of selection after merging from headers.
1416
+ [#7076](https://github.com/handsontable/handsontable/issues/7076)
1417
+ - Fixed an issue where calling `updateSettings` changed the index of frozen columns via
1418
+ `freezeColumn` method. [#6843](https://github.com/handsontable/handsontable/issues/6843)
1419
+ - Fixed an issue where deleting the last column via `updateSettings` which was part of the selection
1420
+ caused scroll to the bottom. [#5849](https://github.com/handsontable/handsontable/issues/5849)
1421
+ - Fixed an issue where it was not possible to hide rows and merge cells at the same time.
1422
+ [#6224](https://github.com/handsontable/handsontable/issues/6224)
1423
+ - Fixed the wrong data in merge cells after the hidden column and additionally an error occurs.
1424
+ [#6888](https://github.com/handsontable/handsontable/issues/6888)
1425
+ - Fixed an issue where it was not possible to change cell type via `setCellMeta`.
1426
+ [#4793](https://github.com/handsontable/handsontable/issues/4793)
1427
+ - Fixed an issue where cell editor did not dynamically changed while changing the cell type.
1428
+ [#4360](https://github.com/handsontable/handsontable/issues/4360)
1429
+ - Fixed an issue where it was not possible to unmerge cells if part of them was hidden.
1430
+ [#7095](https://github.com/handsontable/handsontable/issues/7095)
1431
+ - Fixed an issue where calling `clear` method removed the focus from the table.
1432
+ [#7099](https://github.com/handsontable/handsontable/issues/7099)
1433
+ - Fixed an issue where `clear` method did not work for hidden data.
1434
+ [#7097](https://github.com/handsontable/handsontable/issues/7097)
1435
+ - Fixed an issue where the editor was moved by 1px when the first row / column was hidden.
1436
+ [#6982](https://github.com/handsontable/handsontable/issues/6982)
1437
+ - Fixed an issue where headers were deselected after undoing removal.
1438
+ [#6670](https://github.com/handsontable/handsontable/issues/6670)
1439
+ - Fixed an issue with improper selection after insert column/row when mergeCells was enabled.
1440
+ [#4897](https://github.com/handsontable/handsontable/issues/4897)
1441
+ - Fixed an issue where wrong cell meta was removed when deleting rows.
1442
+ [#6051](https://github.com/handsontable/handsontable/issues/6051)
1443
+ - Fixed wrong types of `beforeRowMove` arguments.
1444
+ [#6539](https://github.com/handsontable/handsontable/issues/6539)
1445
+ - Fixed an issue where selection of a whole row did not happen consequently after selecting a row
1446
+ header. [#5906](https://github.com/handsontable/handsontable/issues/5906)
1447
+ - Fixed an issue where it was not possible to use physical row index instead of visual one.
1448
+ [#6309](https://github.com/handsontable/handsontable/issues/6309)
1449
+ - Fixed an issue where incorrect data was returned after undoing the remove column option.
1450
+ [#5000](https://github.com/handsontable/handsontable/issues/5000)
1451
+ - Fixed - Copy and paste works properly also when selecting hidden columns when: all columns within
1452
+ a selected range are hidden and when just some columns within a selected range are hidden.
1453
+ [#7043](https://github.com/handsontable/handsontable/issues/7043).
1454
+ - Fixed an issue where it was impossible to add new row in the `nestedRows`.
1455
+ [#5133](https://github.com/handsontable/handsontable/issues/5133)
1456
+ - Fixed an issue where `afterOnCellMouseDown` returned (0,0) coords after clicking on the topleft
1457
+ corner. [#3978](https://github.com/handsontable/handsontable/issues/3978)
1458
+ - Fixed an issue where persisted `manualColumnMove` was not restored when using `loadData`.
1459
+ [#5207](https://github.com/handsontable/handsontable/issues/5207)
1460
+ - Fixed issues with filtering results in blank rows.
1461
+ [#5208](https://github.com/handsontable/handsontable/issues/5208)
1462
+ - Fixed an issue where changing data on collapsed rows resulted in error.
1463
+ [#5328](https://github.com/handsontable/handsontable/issues/5328)
1464
+ - Fixed an issue where the `manualColumnMove` operation affected the column order of data loaded by
1465
+ `loadData`. [#5591](https://github.com/handsontable/handsontable/issues/5591)
1466
+ - Fixed an issue where `nestedRows` did not allow to keep `rowHeaders` after collapsing.
1467
+ [#5874](https://github.com/handsontable/handsontable/issues/5874)
1468
+ - Fixed performance and CPU issue caused by using some handsontable properties.
1469
+ [#6058](https://github.com/handsontable/handsontable/issues/6058)
1470
+ - Fixed an error with columnSummary plugin when trying to create a row.
1471
+ [#6300](https://github.com/handsontable/handsontable/issues/6300)
1472
+ - Fixed an error where `walkontable.css` and `handsontable.css` stylesheets were out of sync.
1473
+ [#6381](https://github.com/handsontable/handsontable/issues/6381)
1474
+ - Fixed an issue where `colHeaders` order was not updated after manual move with empty object data
1475
+ source. [#6413](https://github.com/handsontable/handsontable/issues/6413)
1476
+ - Fixed "detach from parent" option.
1477
+ [#6432](https://github.com/handsontable/handsontable/issues/6432)
1478
+ - Fixed an issue where `PreventOverflow` feature did not work if `multiColumnSorting` plugin was
1479
+ enabled. [#6514](https://github.com/handsontable/handsontable/issues/6514)
1480
+ - Fixed an issue where old CSS classes were not removed after `updateSettings`.
1481
+ [#6575](https://github.com/handsontable/handsontable/issues/6575)
1482
+ - Fixed an issue where `columnSummary`, `Filters` and spare rows were causing 'RangeError: Maximum
1483
+ call stack size exceeded'. [#6695](https://github.com/handsontable/handsontable/issues/6695)
1484
+ - Fixed an issue where `afterSelectionEnd` returned incorrect data when clicking on a column when
1485
+ all rows were hidden. [#7045](https://github.com/handsontable/handsontable/issues/7045)
1486
+ - Fixed an issue where wrapping was not applied after setting `trimWhitespace` to `false`.
1487
+ [#6232](https://github.com/handsontable/handsontable/issues/6232)
1488
+ - Fixed an issue with additional selection border in iOS.
1489
+ [#7103](https://github.com/handsontable/handsontable/issues/7103)
1490
+ - Fixed an issue with rendering different borders.
1491
+ [#6955](https://github.com/handsontable/handsontable/issues/6955)
1492
+ - Fixed an issue with `BACKSPACE` not working properly in the filter by value input.
1493
+ [#6842](https://github.com/handsontable/handsontable/issues/6842)
1494
+ - Fixed an issue with Undo/Redo not working with fixing columns.
1495
+ [#6869](https://github.com/handsontable/handsontable/issues/6869)
1496
+ - Added a missing argument in the `deepObjectSize` function.
1497
+ [#6821](https://github.com/handsontable/handsontable/pull/6821)
845
1498
 
846
1499
  For more information on Handsontable 8.0.0, see:
1500
+
847
1501
  - [Blog post (8.0.0)](https://handsontable.com/blog/the-new-handsontable-8-is-now-available)
848
1502
  - [Documentation (8.0.0)](https://handsontable.com/docs/8.0.0)
849
1503
  - [Migration guide (7.4 → 8.0)](https://handsontable.com/docs/migration-from-7.4-to-8.0)
@@ -851,4 +1505,5 @@ For more information on Handsontable 8.0.0, see:
851
1505
 
852
1506
  ## Prior [8.0.0]
853
1507
 
854
- The changes for previous versions are described at https://github.com/handsontable/handsontable/releases.
1508
+ The changes for previous versions are described at
1509
+ https://github.com/handsontable/handsontable/releases.