Skip to content

Commit 0151983

Browse files
committed
Merge tag '3.1.1' into develop
3.1.1
2 parents 308b2d5 + d30eeab commit 0151983

File tree

7 files changed

+500
-410
lines changed

7 files changed

+500
-410
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77

88
## [Unreleased]
99

10+
## [3.1.1] - 2025-12-18
11+
1012
### Fixed
1113

1214
- Fixed an issue where cells were not recalculated after adding, removing and renaming sheets. [#1116](https://github.com/handsontable/hyperformula/issues/1116)

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@
2525
HyperFormula is a headless spreadsheet built in TypeScript, serving as both a parser and evaluator of spreadsheet formulas. It can be integrated into your browser or utilized as a service with Node.js as your back-end technology.
2626

2727
## What HyperFormula can be used for?
28+
2829
HyperFormula doesn't assume any existing user interface, making it a general-purpose library that can be used in various business applications. Here are some examples:
2930

31+
- Deterministic compute layer for AI & LLMs
32+
- Calculated fields in CRM and ERP software
3033
- Custom spreadsheet-like app
3134
- Business logic builder
3235
- Forms and form builder

docs/guide/release-notes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ This page lists HyperFormula release notes. The format is based on
66
HyperFormula adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## 3.1.1
10+
11+
**Release date: December 18, 2025**
12+
13+
### Fixed
14+
15+
- Fixed an issue where cells were not recalculated after adding, removing and renaming sheets. [#1116](https://github.com/handsontable/hyperformula/issues/1116)
16+
- Fixed an issue where overwriting a non-computed cell caused the `Value of the formula cell is not computed` error. [#1194](https://github.com/handsontable/hyperformula/issues/1194)
17+
918
## 3.1.0
1019

1120
**Release date: October 14, 2025**

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@ description: HyperFormula® - An open-source headless spreadsheet for business w
3030
HyperFormula is a headless spreadsheet built in TypeScript, serving as both a parser and evaluator of spreadsheet formulas. It can be integrated into your browser or utilized as a service with Node.js as your back-end technology.
3131

3232
## What HyperFormula can be used for?
33+
3334
HyperFormula doesn't assume any existing user interface, making it a general-purpose library that can be used in various business applications. Here are some examples:
3435

36+
- Deterministic compute layer for AI & LLMs
37+
- Calculated fields in CRM and ERP software
3538
- Custom spreadsheet-like app
3639
- Business logic builder
3740
- Forms and form builder

ht.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ module.exports = {
66
HT_VERSION: packageBody.version,
77
HT_PACKAGE_NAME: packageBody.name,
88
HT_BUILD_DATE: moment().format('DD/MM/YYYY HH:mm:ss'),
9-
HT_RELEASE_DATE: '14/10/2025',
9+
HT_RELEASE_DATE: '18/12/2025',
1010
};

package-lock.json

Lines changed: 481 additions & 408 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/handsontable/hyperformula/issues"
1111
},
1212
"author": "Handsoncode <hello@handsontable.com>",
13-
"version": "3.1.0",
13+
"version": "3.1.1",
1414
"keywords": [
1515
"formula",
1616
"spreadsheet",

0 commit comments

Comments
 (0)