diff --git a/CHANGELOG.md b/CHANGELOG.md index a9bddb35..cce67244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,7 +51,8 @@ _Enhancements:_ - Added a new logging level (`5`) for benchmarking logs. - Added legacy names of options to the `defaultConfig` and `mapToNewConfig` function in order to support the old, PhantomJS-based structure of options. - Added a new process event handler for the `SIGHUP` signal. -- Added `mapChart` and `ganttChart` constructors in the exporting UI (#503). +- Added `mapChart` and `ganttChart` constructors in the exporting UI [(#503)](https://github.com/highcharts/node-export-server/issues/503). +- Added the series-on-point module [(#532)](https://github.com/highcharts/node-export-server/issues/532). - Reordered the `error` and `info` arguments in the callback of the `startExport` function. - Updates were made to the `config.js` file. - Updated the `killPool` function. @@ -70,8 +71,8 @@ _Enhancements:_ _Fixes:_ - Fixed `multer` related error: 'Field value too long'. -- Fixed the SSL handshake error (#307). -- Fixed missing background color transparency (#492). +- Fixed the SSL handshake error [(#307)](https://github.com/highcharts/node-export-server/issues/307). +- Fixed missing background color transparency [(#492)](https://github.com/highcharts/node-export-server/issues/492). - Fixed missing `foreignObject` elements issue. - Fixed type compatibility issues in the `pairArgumentValue` function, arising from CLI string arguments. - Fixed the 'httpsProxyAgent is not a constructor' issue with the `https-proxy-agent` module. @@ -112,8 +113,8 @@ _Fixes:_ # 3.0.5 -- Fixed an issue with transparent backgrounds in PNG exports (#463). -- Fixed an issue with missing `filename` property (https://github.com/highcharts/highcharts/issues/20370). +- Fixed an issue with transparent backgrounds in PNG exports [(#463)](https://github.com/highcharts/node-export-server/issues/463). +- Fixed an issue with missing `filename` property [(#20370)](https://github.com/highcharts/highcharts/issues/20370). # 3.0.4 @@ -121,8 +122,8 @@ _Fixes:_ # 3.0.3 -- Fixed an issue with height and width for CSS (#419). -- Fixed `globalOptions` (#434). +- Fixed an issue with height and width for CSS [(#419)](https://github.com/highcharts/node-export-server/issues/419). +- Fixed `globalOptions` [(#434)](https://github.com/highcharts/node-export-server/issues/434). - Other smaller fixes. # 3.0.2 @@ -246,8 +247,8 @@ _Changelog:_ # 2.0.15 - Added `queueSize` option to `initPool` to set the request overfow queue size. -- Added option to supply `cdnURL` to build script (#133). -- Added `;` between included scripts. Fixes map collections (#128). +- Added option to supply `cdnURL` to build script [(#133)](https://github.com/highcharts/node-export-server/issues/133). +- Added `;` between included scripts. Fixes map collections [(#128)](https://github.com/highcharts/node-export-server/issues/128). - Added `--skipKey` and `--skipToken` CLI options to configure the rate limiter. - Added `--queueSize` switch to the CLI options to set the overflow queue size. - Fixed issue with silent installs and default values. diff --git a/lib/schemas/config.js b/lib/schemas/config.js index b280f729..773a672e 100644 --- a/lib/schemas/config.js +++ b/lib/schemas/config.js @@ -20,7 +20,6 @@ export const scriptsNames = { 'map', 'gantt', 'exporting', - 'export-data', 'parallel-coordinates', 'accessibility', // 'annotations-advanced', @@ -55,6 +54,7 @@ export const scriptsNames = { 'arc-diagram', 'dependency-wheel', 'series-label', + 'series-on-point', 'solid-gauge', 'sonification', // 'stock-tools', @@ -78,7 +78,10 @@ export const scriptsNames = { 'marker-clusters', 'hollowcandlestick', 'heikinashi', - 'flowmap' + 'flowmap', + 'export-data', + 'navigator', + 'textpath' ], indicators: ['indicators-all'] };