Skip to content

Commit 478aec3

Browse files
authored
Merge pull request #534 from highcharts/bugfix/532-series-on-point-module
bugfix/532-series-on-point-module
2 parents cabc30a + 4e91612 commit 478aec3

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ _Enhancements:_
5151
- Added a new logging level (`5`) for benchmarking logs.
5252
- Added legacy names of options to the `defaultConfig` and `mapToNewConfig` function in order to support the old, PhantomJS-based structure of options.
5353
- Added a new process event handler for the `SIGHUP` signal.
54-
- Added `mapChart` and `ganttChart` constructors in the exporting UI (#503).
54+
- Added `mapChart` and `ganttChart` constructors in the exporting UI [(#503)](https://github.com/highcharts/node-export-server/issues/503).
55+
- Added the series-on-point module [(#532)](https://github.com/highcharts/node-export-server/issues/532).
5556
- Reordered the `error` and `info` arguments in the callback of the `startExport` function.
5657
- Updates were made to the `config.js` file.
5758
- Updated the `killPool` function.
@@ -70,8 +71,8 @@ _Enhancements:_
7071
_Fixes:_
7172

7273
- Fixed `multer` related error: 'Field value too long'.
73-
- Fixed the SSL handshake error (#307).
74-
- Fixed missing background color transparency (#492).
74+
- Fixed the SSL handshake error [(#307)](https://github.com/highcharts/node-export-server/issues/307).
75+
- Fixed missing background color transparency [(#492)](https://github.com/highcharts/node-export-server/issues/492).
7576
- Fixed missing `foreignObject` elements issue.
7677
- Fixed type compatibility issues in the `pairArgumentValue` function, arising from CLI string arguments.
7778
- Fixed the 'httpsProxyAgent is not a constructor' issue with the `https-proxy-agent` module.
@@ -112,17 +113,17 @@ _Fixes:_
112113

113114
# 3.0.5
114115

115-
- Fixed an issue with transparent backgrounds in PNG exports (#463).
116-
- Fixed an issue with missing `filename` property (https://github.com/highcharts/highcharts/issues/20370).
116+
- Fixed an issue with transparent backgrounds in PNG exports [(#463)](https://github.com/highcharts/node-export-server/issues/463).
117+
- Fixed an issue with missing `filename` property [(#20370)](https://github.com/highcharts/highcharts/issues/20370).
117118

118119
# 3.0.4
119120

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

122123
# 3.0.3
123124

124-
- Fixed an issue with height and width for CSS (#419).
125-
- Fixed `globalOptions` (#434).
125+
- Fixed an issue with height and width for CSS [(#419)](https://github.com/highcharts/node-export-server/issues/419).
126+
- Fixed `globalOptions` [(#434)](https://github.com/highcharts/node-export-server/issues/434).
126127
- Other smaller fixes.
127128

128129
# 3.0.2
@@ -246,8 +247,8 @@ _Changelog:_
246247
# 2.0.15
247248

248249
- Added `queueSize` option to `initPool` to set the request overfow queue size.
249-
- Added option to supply `cdnURL` to build script (#133).
250-
- Added `;` between included scripts. Fixes map collections (#128).
250+
- Added option to supply `cdnURL` to build script [(#133)](https://github.com/highcharts/node-export-server/issues/133).
251+
- Added `;` between included scripts. Fixes map collections [(#128)](https://github.com/highcharts/node-export-server/issues/128).
251252
- Added `--skipKey` and `--skipToken` CLI options to configure the rate limiter.
252253
- Added `--queueSize` switch to the CLI options to set the overflow queue size.
253254
- Fixed issue with silent installs and default values.

lib/schemas/config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export const scriptsNames = {
2020
'map',
2121
'gantt',
2222
'exporting',
23-
'export-data',
2423
'parallel-coordinates',
2524
'accessibility',
2625
// 'annotations-advanced',
@@ -55,6 +54,7 @@ export const scriptsNames = {
5554
'arc-diagram',
5655
'dependency-wheel',
5756
'series-label',
57+
'series-on-point',
5858
'solid-gauge',
5959
'sonification',
6060
// 'stock-tools',
@@ -78,7 +78,10 @@ export const scriptsNames = {
7878
'marker-clusters',
7979
'hollowcandlestick',
8080
'heikinashi',
81-
'flowmap'
81+
'flowmap',
82+
'export-data',
83+
'navigator',
84+
'textpath'
8285
],
8386
indicators: ['indicators-all']
8487
};

0 commit comments

Comments
 (0)