Skip to content

Commit 9f7b2db

Browse files
committed
Merge branch 'release/2.4.0'
2 parents f829f4c + 90dcf4a commit 9f7b2db

File tree

121 files changed

+2580
-2421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+2580
-2421
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ module.exports = {
3232
'@typescript-eslint/brace-style': 'error', // wtf
3333
'@typescript-eslint/no-unnecessary-boolean-literal-compare': ['error'],
3434
'@typescript-eslint/no-extra-non-null-assertion': ['error'],
35+
'@typescript-eslint/no-throw-literal': ['error'],
3536
'@typescript-eslint/array-type': ['error'],
3637
'@typescript-eslint/space-before-function-paren': ["error", {
3738
"anonymous": "never",

.github/pull_request_template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
### Checklist:
2121
<!--- Go through the points below, and put an `x` in each box that applies. -->
2222
<!--- If you're unsure about any of these, contact us. We're always glad to help! -->
23+
- [ ] I have reviewed the guidelines about [Contributing to HyperFormula](https://hyperformula.handsontable.com/guide/contributing.html) and I confirm that my code follows the code style of this project.
24+
- [ ] I have signed the [Contributor License Agreement](https://goo.gl/forms/yuutGuN0RjsikVpM2).
2325
- [ ] My change is compliant with the [OpenDocument](https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part4-formula/OpenDocument-v1.3-os-part4-formula.html) standard.
2426
- [ ] My change is compatible with Microsoft Excel.
2527
- [ ] My change is compatible with Google Sheets.
26-
- [ ] My code follows the code style of this project.
2728
- [ ] I described my changes in the [CHANGELOG.md](https://github.com/handsontable/hyperformula/blob/master/CHANGELOG.md) file.
2829
- [ ] My changes require a documentation update.
2930
- [ ] My changes require a migration guide.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [2.4.0] - 2023-04-24
12+
13+
### Added
14+
15+
- Exported the `CellError` class as a public API.
16+
[#1232](https://github.com/handsontable/hyperformula/issues/1232)
17+
- Exported the `SimpleRangeValue` class as a public API.
18+
[#1178](https://github.com/handsontable/hyperformula/issues/1178)
19+
20+
### Fixed
21+
22+
- Fixed an `EmptyCellVertex` data integrity issue between the `AddressMapping` and `DependencyGraph` objects.
23+
[#1188](https://github.com/handsontable/hyperformula/issues/1188)
24+
- Fixed a build issue with M1- and M2-chip MacBooks.
25+
[#1166](https://github.com/handsontable/hyperformula/issues/1166)
26+
- Fixed an issue where the order of items returned by `removeColumns()` depended on the address mapping policy.
27+
[#1205](https://github.com/handsontable/hyperformula/issues/1205)
28+
1129
## [2.3.1] - 2023-03-03
1230

1331
### Fixed

docs/.vuepress/config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ module.exports = {
2121
})(window,document,'script','dataLayer','GTM-N59TZXR');
2222
`],
2323
// Google Console
24-
['meta', { name: 'google-site-verification', content: 'MZpSOa8SNvFLRRGwUQpYVZ78kIHQoPVdVbafHhJ_d4Q' }]
24+
['meta', { name: 'google-site-verification', content: 'MZpSOa8SNvFLRRGwUQpYVZ78kIHQoPVdVbafHhJ_d4Q' }],
25+
// Favicon
26+
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/favicon/apple-touch-icon.png' }],
27+
['link', { rel: 'icon', sizes: '32x32', type: 'image/png', href: '/favicon/favicon-32x32.png' }],
28+
['link', { rel: 'icon', sizes: '16x16', type: 'image/png', href: '/favicon/favicon-16x16.png' }],
29+
['link', { rel: 'manifest', href: '/favicon/site.webmanifest' }],
30+
['link', { rel: 'mask-icon', color: '#ffffff', href: '/favicon/safari-pinned-tab.svg' }],
2531
],
2632
base: '/',
2733
plugins: [
6.46 KB
Loading
21.3 KB
Loading
6.03 KB
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#ffffff</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>
817 Bytes
Loading
1.31 KB
Loading

0 commit comments

Comments
 (0)