Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feature/websockets
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulDalek committed Jul 4, 2024
2 parents f5eb3a7 + 478aec3 commit 187a84c
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 69 deletions.
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
4 changes: 2 additions & 2 deletions dist/index.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.esm.js.map

Large diffs are not rendered by default.

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
104 changes: 52 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"https-proxy-agent": "^7.0.4",
"https-proxy-agent": "^7.0.5",
"jsdom": "^24.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"prompts": "^2.4.2",
"puppeteer": "^22.12.0",
"puppeteer": "^22.12.1",
"tarn": "^3.0.2",
"uuid": "^10.0.0",
"ws": "^8.17.1",
Expand Down

0 comments on commit 187a84c

Please sign in to comment.