Commit 62588789c3 for handsontable.com

commit 62588789c3edd01f95960e3c232298673221dcc9
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Date:   Mon Aug 31 11:55:13 2026 +0000

    18.1.0-rc10

diff --git a/.changelogs/13306.json b/.changelogs/13306.json
deleted file mode 100644
index 7970586d33..0000000000
--- a/.changelogs/13306.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "issuesOrigin": "private",
-  "title": "Changed how touch opens the cell editor on devices that report both touch and mouse input, such as iPad: a double-tap opens it (taps up to 1 second apart), and a single tap on an already selected cell no longer opens it as it did in 18.0.0, where duplicated mouse events after the tap triggered the double-click.",
-  "type": "changed",
-  "issueOrPR": 13306,
-  "breaking": false,
-  "framework": "none"
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a64116166..4333ecd90c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

 <!-- UNVERSIONED -->

-## [18.1.0-rc9] - 2026-08-31
+## [18.1.0-rc10] - 2026-08-31

 ### Added
 - Added the `modifySinglePassLayout` hook, which forces the previous measure-then-render layout path for a table. [#12951](https://github.com/handsontable/handsontable/pull/12951)
@@ -50,6 +50,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 - Improved the performance of bulk grid alterations: removing many rows or columns, inserting multiple columns, pasting data that extends the grid, and edits with the `minSpareCols` or `minCols` options on large datasets. [#13091](https://github.com/handsontable/handsontable/issues/13091)
 - Improved `getColHeader` performance: the index translation derived from the `columns` function is now cached instead of being rebuilt on every call, which also speeds up grid initialization and `updateSettings` on grids with many columns. [#13096](https://github.com/handsontable/handsontable/issues/13096)
 - Improved sizing plugins performance: AutoColumnSize measures only the changed cells on edits instead of rescanning whole columns, its background width sweep is budgeted and runs on browser idle time, AutoRowSize reuses the cached header height on selection-driven renders, and a multi-column resize triggers one height recalculation instead of one per column. [#13097](https://github.com/handsontable/handsontable/issues/13097)
+- Changed how touch opens the cell editor on devices that report both touch and mouse input, such as iPad: a double-tap opens it (taps up to 1 second apart), and a single tap on an already selected cell no longer opens it as it did in 18.0.0, where duplicated mouse events after the tap triggered the double-click. [#13306](https://github.com/handsontable/handsontable/pull/13306)

 ### Removed
 - Removed leftover Pikaday styles from the themes. [#13156](https://github.com/handsontable/handsontable/pull/13156)
diff --git a/docs/content/guides/upgrade-and-migration/changelog/changelog.md b/docs/content/guides/upgrade-and-migration/changelog/changelog.md
index 06a3657bcd..4c512059ad 100644
--- a/docs/content/guides/upgrade-and-migration/changelog/changelog.md
+++ b/docs/content/guides/upgrade-and-migration/changelog/changelog.md
@@ -26,7 +26,7 @@ This page aggregates all Handsontable release notes. For upgrade instructions, s

 [[toc]]

-## 18.1.0-rc9
+## 18.1.0-rc10

 Released on August 31st, 2026

@@ -72,6 +72,7 @@ For more information about this release, see:
 - Improved the performance of bulk grid alterations: removing many rows or columns, inserting multiple columns, pasting data that extends the grid, and edits with the `minSpareCols` or `minCols` options on large datasets. [#13091](https://github.com/handsontable/handsontable/issues/13091)
 - Improved `getColHeader` performance: the index translation derived from the `columns` function is now cached instead of being rebuilt on every call, which also speeds up grid initialization and `updateSettings` on grids with many columns. [#13096](https://github.com/handsontable/handsontable/issues/13096)
 - Improved sizing plugins performance: AutoColumnSize measures only the changed cells on edits instead of rescanning whole columns, its background width sweep is budgeted and runs on browser idle time, AutoRowSize reuses the cached header height on selection-driven renders, and a multi-column resize triggers one height recalculation instead of one per column. [#13097](https://github.com/handsontable/handsontable/issues/13097)
+- Changed how touch opens the cell editor on devices that report both touch and mouse input, such as iPad: a double-tap opens it (taps up to 1 second apart), and a single tap on an already selected cell no longer opens it as it did in 18.0.0, where duplicated mouse events after the tap triggered the double-click. [#13306](https://github.com/handsontable/handsontable/pull/13306)

 #### Removed
 - Removed leftover Pikaday styles from the themes. [#13156](https://github.com/handsontable/handsontable/pull/13156)
diff --git a/handsontable/package.json b/handsontable/package.json
index 491cda4c3e..45c4c88c9e 100644
--- a/handsontable/package.json
+++ b/handsontable/package.json
@@ -10,7 +10,7 @@
     "url": "https://github.com/handsontable/handsontable/issues"
   },
   "author": "Handsoncode <hello@handsontable.com>",
-  "version": "18.1.0-rc9",
+  "version": "18.1.0-rc10",
   "main": "index",
   "module": "index.mjs",
   "jsnext:main": "index.mjs",
diff --git a/hot.config.js b/hot.config.js
index 7bf672695d..75ef8cd423 100644
--- a/hot.config.js
+++ b/hot.config.js
@@ -1,6 +1,6 @@
 module.exports = {
   HOT_FILENAME: 'handsontable',
-  HOT_VERSION: '18.1.0-rc9',
+  HOT_VERSION: '18.1.0-rc10',
   HOT_PACKAGE_NAME: 'handsontable',
   HOT_BUILD_DATE: (() => {
     const d = new Date();
diff --git a/visual-tests/package.json b/visual-tests/package.json
index 132c4562aa..bdab0a53a3 100644
--- a/visual-tests/package.json
+++ b/visual-tests/package.json
@@ -1,7 +1,7 @@
 {
   "name": "handsontable-visual-tests",
   "private": true,
-  "version": "18.1.0-rc9",
+  "version": "18.1.0-rc10",
   "description": "",
   "main": "index.js",
   "scripts": {
diff --git a/wrappers/angular-wrapper/package.json b/wrappers/angular-wrapper/package.json
index ccac205020..e1dc05cd11 100644
--- a/wrappers/angular-wrapper/package.json
+++ b/wrappers/angular-wrapper/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@handsontable/angular-wrapper",
-  "version": "18.1.0-rc9",
+  "version": "18.1.0-rc10",
   "description": "Best Data Grid for Angular with Spreadsheet Look and Feel.",
   "author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
   "license": "SEE LICENSE IN LICENSE.txt",
diff --git a/wrappers/react-wrapper/package.json b/wrappers/react-wrapper/package.json
index 4422f94c85..9a787a9d82 100644
--- a/wrappers/react-wrapper/package.json
+++ b/wrappers/react-wrapper/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@handsontable/react-wrapper",
-  "version": "18.1.0-rc9",
+  "version": "18.1.0-rc10",
   "description": "Best Data Grid for React with Spreadsheet Look and Feel.",
   "author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
   "homepage": "https://handsontable.com",
diff --git a/wrappers/vue3/package.json b/wrappers/vue3/package.json
index 40761f8576..9d21ed0c64 100644
--- a/wrappers/vue3/package.json
+++ b/wrappers/vue3/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@handsontable/vue3",
-  "version": "18.1.0-rc9",
+  "version": "18.1.0-rc10",
   "description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",
   "author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
   "homepage": "https://handsontable.com",