Skip to content

Commit dd16991

Browse files
committed
Merge branch 'release/2.7.1'
2 parents 458a0e4 + 26c775d commit dd16991

27 files changed

+4143
-23894
lines changed

.config/webpack/base.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ const path = require('path');
22
const fs = require('fs');
33
const { BannerPlugin } = require('webpack');
44

5-
let licenseBody = fs.readFileSync(path.resolve(__dirname, '../../LICENSE.txt'), 'utf8');
5+
let licensePreamble = fs.readFileSync(path.resolve(__dirname, '../../LICENSE.txt'), 'utf8');
66

7-
licenseBody += '\nVersion: ' + process.env.HT_VERSION;
8-
licenseBody += '\nRelease date: ' + process.env.HT_RELEASE_DATE + ' (built at ' + process.env.HT_BUILD_DATE + ')';
7+
licensePreamble += '\n\nVersion: ' + process.env.HT_VERSION;
8+
licensePreamble += '\nRelease date: ' + process.env.HT_RELEASE_DATE + ' (built at ' + process.env.HT_BUILD_DATE + ')';
99

1010
module.exports.create = function create(processedFile) {
1111
const config = {
@@ -45,7 +45,7 @@ module.exports.create = function create(processedFile) {
4545
]
4646
},
4747
plugins: [
48-
new BannerPlugin(licenseBody),
48+
new BannerPlugin(licensePreamble),
4949
],
5050
};
5151

.config/webpack/production.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ module.exports.create = function create() {
1717

1818
c.optimization = {
1919
minimize: true,
20-
minimizer: [new TerserPlugin()]
20+
minimizer: [new TerserPlugin({
21+
extractComments: false
22+
})]
2123
};
2224

2325
c.plugins.forEach((plugin) => {

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
audit:
1717
strategy:
1818
matrix:
19-
node-version: [ '16' ]
19+
node-version: [ '22' ]
2020
os: [ 'ubuntu-latest' ]
2121
name: audit
2222
runs-on: ${{ matrix.os }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
node-version: [ 14, 16 ]
21+
node-version: [ 20, 22 ]
2222
os: [ ubuntu-latest, windows-latest, macos-latest ]
2323
install-command: [ i, ci ]
2424
runs-on: ${{ matrix.os }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
lint:
1717
strategy:
1818
matrix:
19-
node-version: [ '16' ]
19+
node-version: [ '22' ]
2020
os: [ 'ubuntu-latest' ]
2121
name: lint
2222
runs-on: ${{ matrix.os }}

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
performance-test:
1212
strategy:
1313
matrix:
14-
node-version: [ '16' ]
14+
node-version: [ '22' ]
1515
os: [ 'ubuntu-latest' ]
16-
name: performance-test
16+
name: Test performance
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Setup Node.js ${{ matrix.node-version }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish-docs:
1010
strategy:
1111
matrix:
12-
node-version: [ '16' ]
12+
node-version: [ '22' ]
1313
os: [ 'ubuntu-latest' ]
1414
name: publish-docs
1515
runs-on: ${{ matrix.os }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
unit-tests:
1717
strategy:
1818
matrix:
19-
node-version: [ '16' ]
19+
node-version: [ '22' ]
2020
os: [ 'ubuntu-latest' ]
2121
name: unit-tests
2222
runs-on: ${{ matrix.os }}
@@ -42,7 +42,7 @@ jobs:
4242
browser-tests:
4343
strategy:
4444
matrix:
45-
node-version: [ '16' ]
45+
node-version: [ '22' ]
4646
os: [ 'ubuntu-latest' ]
4747
name: browser-tests
4848
runs-on: ${{ matrix.os }}

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.7.1] - 2024-07-18
11+
12+
### Fixed
13+
14+
- Fixed an issue where adding or removing columns with `DenseStrategy` for address mapping resulted in the `Cannot read properties of undefined (reading 'splice')` error. [#1406](https://github.com/handsontable/hyperformula/issues/1406)
15+
1016
## [2.7.0] - 2024-04-10
1117

1218
### Added

0 commit comments

Comments
 (0)