Skip to content

Commit

Permalink
update changelog to announce breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 30, 2024
1 parent 7970760 commit 4b561bb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ 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 6.0.0-pre (2024-06-30)

* __[breaking change]__
__Support for Node.js 12, Node.js 13, Node.js 14, and Node.js 15 is dropped.__
The minimum required version is now Node.js 16.
These old Node.js versions have reached their end of life. All those versions
are not maintained anymore by the Node.js developers. If you are still using
older versions of Node.js, then please consider updating to a newer one.

* __[breaking change]__
Update dependency `uuid` to 10.0.0. This version of `uuid` drops support for
Node.js 14 (and earlier versions).

## Version 5.1.6 (2024-06-28)

* __[improvement]__
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.

4 changes: 2 additions & 2 deletions export-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echarts-node-export-server",
"version": "5.1.6",
"version": "6.0.0-pre",
"description": "ECharts Node.js export server",
"repository": {
"url": "https://gitlab.com/striezel/echarts-node-export-server.git",
Expand All @@ -26,6 +26,6 @@
"uuid": "^10.0.0"
},
"engines": {
"node": ">=12"
"node": ">=16"
}
}

0 comments on commit 4b561bb

Please sign in to comment.