Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix/532-series-on-point-module #534

Merged
merged 6 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -112,17 +113,17 @@ _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

- Fixed and issue with reading `resources.json` during exports.

# 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
Expand Down Expand Up @@ -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.
Expand Down
7 changes: 5 additions & 2 deletions lib/schemas/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export const scriptsNames = {
'map',
'gantt',
'exporting',
'export-data',
'parallel-coordinates',
'accessibility',
// 'annotations-advanced',
Expand Down Expand Up @@ -55,6 +54,7 @@ export const scriptsNames = {
'arc-diagram',
'dependency-wheel',
'series-label',
'series-on-point',
'solid-gauge',
'sonification',
// 'stock-tools',
Expand All @@ -78,7 +78,10 @@ export const scriptsNames = {
'marker-clusters',
'hollowcandlestick',
'heikinashi',
'flowmap'
'flowmap',
'export-data',
'navigator',
'textpath'
],
indicators: ['indicators-all']
};
Expand Down
Loading