Commit a6010bbae9 for handsontable.com
commit a6010bbae9f40521a730f04dc7aab3a8e64c49a3
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Date: Tue Jun 30 08:25:13 2026 +0000
18.0.0-rc6
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f8f367b12..792795fe5a 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.0.0-rc5] - 2026-06-25
+## [18.0.0-rc6] - 2026-06-30
### Added
- **Breaking change**: Added wrapper layout slots and a `layout` option to control the order of UI elements rendered around the grid (pagination, dialog). The license notification always renders last in the bottom area and is not orderable. Built-in UI now mounts into dedicated wrapper containers, which changes the root DOM structure. [#12094](https://github.com/handsontable/handsontable/issues/12094)
diff --git a/docs/content/guides/upgrade-and-migration/changelog/changelog.md b/docs/content/guides/upgrade-and-migration/changelog/changelog.md
index d79ca1ef55..d49b97d2f3 100644
--- a/docs/content/guides/upgrade-and-migration/changelog/changelog.md
+++ b/docs/content/guides/upgrade-and-migration/changelog/changelog.md
@@ -26,9 +26,9 @@ This page aggregates all Handsontable release notes. For upgrade instructions, s
[[toc]]
-## 18.0.0-rc5
+## 18.0.0-rc6
-Released on June 25th, 2026
+Released on June 30th, 2026
For more information about this release, see:
- [Documentation (18.0)](https://handsontable.com/docs/18.0)
@@ -42,6 +42,7 @@ For more information about this release, see:
#### Changed
- **Breaking change**: Migrated Handsontable core source from JavaScript to TypeScript [#12011](https://github.com/handsontable/handsontable/issues/12011)
- **Breaking change**: Renamed the `--ht-wrapper-border-radius` theme variable to `--ht-border-radius` (token `wrapperBorderRadius` to `borderRadius`) and removed the `--ht-wrapper-border-width` and `--ht-wrapper-border-color` variables (tokens `wrapperBorderWidth` and `wrapperBorderColor`). [#12775](https://github.com/handsontable/handsontable/issues/12775)
+- **Breaking change**: Angular: Updated Angular peer dependency minimum version to 19 in `@handsontable/angular-wrapper` [#1836](https://github.com/handsontable/handsontable/pull/1836)
- Dragging a selection past the viewport edge now scrolls the viewport and extends the selection to the newly-scrolled cells. [#12344](https://github.com/handsontable/handsontable/issues/12344)
- Improved getSourceData() performance when called repeatedly inside the cells function or custom renderers. [#12480](https://github.com/handsontable/handsontable/issues/12480)
- Improved scroll performance by caching overlay alignment calculations and using native visibility checks. [#12659](https://github.com/handsontable/handsontable/issues/12659)
diff --git a/handsontable/package.json b/handsontable/package.json
index 965be92c99..e0df011bb8 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.0.0-rc5",
+ "version": "18.0.0-rc6",
"main": "index",
"module": "index.mjs",
"jsnext:main": "index.mjs",
diff --git a/hot.config.js b/hot.config.js
index 25515f2030..5c872983a6 100644
--- a/hot.config.js
+++ b/hot.config.js
@@ -1,6 +1,6 @@
module.exports = {
HOT_FILENAME: 'handsontable',
- HOT_VERSION: '18.0.0-rc5',
+ HOT_VERSION: '18.0.0-rc6',
HOT_PACKAGE_NAME: 'handsontable',
HOT_BUILD_DATE: (() => {
const d = new Date();
@@ -8,5 +8,5 @@ module.exports = {
return `${p(d.getDate())}/${p(d.getMonth() + 1)}/${d.getFullYear()} ${p(d.getHours())}:${p(d.getMinutes())}:${p(d.getSeconds())}`;
})(),
- HOT_RELEASE_DATE: '25/06/2026',
+ HOT_RELEASE_DATE: '30/06/2026',
};
diff --git a/visual-tests/package.json b/visual-tests/package.json
index 7163258baa..a3d2194c71 100644
--- a/visual-tests/package.json
+++ b/visual-tests/package.json
@@ -1,7 +1,7 @@
{
"name": "handsontable-visual-tests",
"private": true,
- "version": "18.0.0-rc5",
+ "version": "18.0.0-rc6",
"description": "",
"main": "index.js",
"scripts": {
diff --git a/wrappers/angular-wrapper/package.json b/wrappers/angular-wrapper/package.json
index 13eef695ad..df5c83cfa6 100644
--- a/wrappers/angular-wrapper/package.json
+++ b/wrappers/angular-wrapper/package.json
@@ -1,6 +1,6 @@
{
"name": "@handsontable/angular-wrapper",
- "version": "18.0.0-rc5",
+ "version": "18.0.0-rc6",
"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 2b480b4dad..385ed0364c 100644
--- a/wrappers/react-wrapper/package.json
+++ b/wrappers/react-wrapper/package.json
@@ -1,6 +1,6 @@
{
"name": "@handsontable/react-wrapper",
- "version": "18.0.0-rc5",
+ "version": "18.0.0-rc6",
"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 4476b8a3ea..74938fd435 100644
--- a/wrappers/vue3/package.json
+++ b/wrappers/vue3/package.json
@@ -1,6 +1,6 @@
{
"name": "@handsontable/vue3",
- "version": "18.0.0-rc5",
+ "version": "18.0.0-rc6",
"description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",
"author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
"homepage": "https://handsontable.com",