Skip to content

Commit

Permalink
update ECharts library to version 5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Oct 16, 2022
1 parent 7526280 commit 23885aa
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 48 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ 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 4.1.0 (2022-10-16)

__[improvement]__
The ECharts library is updated from version 5.3.3 to version 5.4.0.
ECharts 5.4.0 brings several fixes and a few new features, compared to 5.3.3.
For a full list of those see the release notes of ECharts:

* [Changes in ECharts 5.4.0](https://github.com/apache/echarts/releases/tag/5.4.0)

## Version 4.0.1 (2022-10-16)

* __[maintenance]__
Expand Down
45 changes: 0 additions & 45 deletions export-server/echarts.v5.3.3.min.js

This file was deleted.

45 changes: 45 additions & 0 deletions export-server/echarts.v5.4.0.min.js

Large diffs are not rendered by default.

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.

2 changes: 1 addition & 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": "4.0.1",
"version": "4.1.0",
"description": "ECharts Node.js export server",
"repository": {
"url": "https://gitlab.com/striezel/echarts-node-export-server.git",
Expand Down
2 changes: 1 addition & 1 deletion export-server/ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

var fs = require('fs');
const { createCanvas } = require('canvas');
const echarts = require('./echarts.v5.3.3.min.js');
const echarts = require('./echarts.v5.4.0.min.js');
const { v4: uuidv4 } = require('uuid');


Expand Down

0 comments on commit 23885aa

Please sign in to comment.