Skip to content

Commit

Permalink
Merge branch 'release/2.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sequba committed Jul 18, 2024
2 parents 458a0e4 + 26c775d commit dd16991
Show file tree
Hide file tree
Showing 27 changed files with 4,143 additions and 23,894 deletions.
8 changes: 4 additions & 4 deletions .config/webpack/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ const path = require('path');
const fs = require('fs');
const { BannerPlugin } = require('webpack');

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

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

module.exports.create = function create(processedFile) {
const config = {
Expand Down Expand Up @@ -45,7 +45,7 @@ module.exports.create = function create(processedFile) {
]
},
plugins: [
new BannerPlugin(licenseBody),
new BannerPlugin(licensePreamble),
],
};

Expand Down
4 changes: 3 additions & 1 deletion .config/webpack/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ module.exports.create = function create() {

c.optimization = {
minimize: true,
minimizer: [new TerserPlugin()]
minimizer: [new TerserPlugin({
extractComments: false
})]
};

c.plugins.forEach((plugin) => {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
audit:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: audit
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [ 14, 16 ]
node-version: [ 20, 22 ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
install-command: [ i, ci ]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
lint:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: lint
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
performance-test:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: performance-test
name: Test performance
runs-on: ${{ matrix.os }}
steps:
- name: Setup Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
publish-docs:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: publish-docs
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
unit-tests:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: unit-tests
runs-on: ${{ matrix.os }}
Expand All @@ -42,7 +42,7 @@ jobs:
browser-tests:
strategy:
matrix:
node-version: [ '16' ]
node-version: [ '22' ]
os: [ 'ubuntu-latest' ]
name: browser-tests
runs-on: ${{ matrix.os }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [2.7.1] - 2024-07-18

### Fixed

- 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)

## [2.7.0] - 2024-04-10

### Added
Expand Down
Loading

0 comments on commit dd16991

Please # to comment.