Skip to content

Releases: striezel/echarts-node-export-server

Version 2.2.0 (2022-05-24)

24 May 00:31
Compare
Choose a tag to compare

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

Version 2.1.5 (2022-04-12)

12 Apr 16:22
Compare
Choose a tag to compare

[maintenance]
Update dependencies graceful-fs to 4.2.10, mime-db to 1.52.0, mime-type to 2.1.35, and mkdirp to 0.5.6.

Version 2.1.4 (2022-03-30)

30 Mar 12:17
Compare
Choose a tag to compare

[maintenance]
Update dependency minimist to 1.26.0.
This fixes a prototype pollution vulnerability in the minimist package, CVE-2021-44906.

Version 2.1.3 (2022-01-22)

22 Jan 20:13
Compare
Choose a tag to compare

[maintenance]
Update dependencies graceful-fs to 4.2.9, qs to 6.5.4, and sshpk to 1.17.0.

Version 2.1.2 (2021-12-10)

10 Dec 13:25
Compare
Choose a tag to compare

[maintenance]
Update dependencies asn1 to 0.2.6, json-schema to 0.4.0, jsprim to 1.4.2, mime-db to 1.51.0, and mime-types to 2.1.34.

Version 2.1.1 (2021-10-09)

09 Oct 21:59
Compare
Choose a tag to compare

[maintenance]
Update dependencies core-util-is to 1.0.3, graceful-fs to 4.2.8, mime-db to 1.50.0, and mime-types to 2.1.33.

Version 2.1.0 (2021-08-01)

01 Aug 15:20
Compare
Choose a tag to compare
  • [new feature]
    The port to which the server binds can now be changed by setting the environment variable PORT. If PORT is not set or is not a valid port number, then the default port 3000 is used.

    An example to use port 4000 instead of port 3000 when using GNU Bash or a similar shell would be:

    export PORT=4000
    npm start
  • [new feature]
    The hostname which the server shall use can now be changed by setting the environment variable HOST. If HOST is not set, then localhost will be used as default.

Version 2.0.2 (2021-08-01)

01 Aug 11:48
Compare
Choose a tag to compare

[maintenance]
Update dependencies buffer-from to 1.1.2, mime-db to 1.49.0 and mime-types to 2.1.32.

Version 2.0.1 (2021-07-18)

18 Jul 12:29
Compare
Choose a tag to compare

[maintenance]
The package dependencies mime-db and mime-types are updated to 1.48.0 and 2.1.31, respectively.

v2.0.0

20 Apr 00:45
Compare
Choose a tag to compare

Version 2.0.0 (2021-04-20)

  • [breaking change]
    The ECharts library is updated from version 4.9.0 to version 5.0.2. Note that ECharts 5.0.0 introduced some breaking changes like using a different default colour scheme or removing the built-in map GeoJSON. A complete list of the changes can be found at https://github.com/apache/echarts/releases/tag/5.0.0. Review this list carefully before using the new version.

  • [breaking change]
    The default image width is increased from 600 pixels to 700 pixels.
    Note that you can always specify your desired image width and height via the image size feature that was introduced in version 1.1.0.