Skip to content

Commit

Permalink
make required Node.js version explicit in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jul 3, 2022
1 parent da5b301 commit 0a53c96
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ Since [ECharts](https://echarts.apache.org/) is the main dependency of this
application, major version changes in ECharts will also trigger a major version
change in this application.

## Version 3.0.2 (2022-07-03)

__[improvement]__
The requirement for Node.js 8 or a later version is now explicitly stated in the
`package.json` file. While Node.js 8 or later has been required since version
3.0.0, this step provides clarity on the required version of Node.js.

## Version 3.0.1 (2022-06-18)

__[improvement]__
Expand Down Expand Up @@ -38,6 +45,10 @@ background. To set a background color, use the option
of ECharts. For example, to get the white background as in previous versions,
add `"backgroundColor": "#ffffff"` to the chart options.

Furthermore, the application will now __require at least version 8 of Node.js,__
but the use of a later version that is still maintained (e. g. Node.js 14 LTS)
is preferred.

__[maintenance]__
Update dependency `uuid` to 8.3.2.

Expand Down
2 changes: 1 addition & 1 deletion export-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion export-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echarts-node-export-server",
"version": "3.0.1",
"version": "3.0.2",
"description": "ECharts Node.js export server",
"repository": {
"url": "https://gitlab.com/striezel/echarts-node-export-server.git",
Expand All @@ -24,5 +24,8 @@
"dependencies": {
"canvas": "^2.9.1",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=8"
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ render [ECharts](https://echarts.apache.org/) graphs to PNG or SVG images.

This application needs the following prerequisites:

* Node.js (preferably the latest LTS version)
* Node.js 8 or later (preferably the latest LTS version)
* internet connection to download required dependencies (only once before
first start)

Expand Down

0 comments on commit 0a53c96

Please sign in to comment.