Skip to content

Commit f4cf05e

Browse files
authored
Merge pull request #553 from highcharts/master
Prep 4.0 release.
2 parents b523e5e + 0e77dc8 commit f4cf05e

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

Diff for: CHANGELOG.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# 4.0.0
22

3+
_Breaking Changes:_
4+
5+
- Reordered the `error` and `info` arguments in the callback of the `startExport` function.
6+
- Renamed the environment variables for a better representation of their roles (refer to all envs in the README's `Environment Variables` section).
7+
- Renamed the `HIGHCHARTS_MODULES` environment variable to `HIGHCHARTS_MODULE_SCRIPTS`.
8+
- Renamed the `HIGHCHARTS_INDICATORS` environment variables to `HIGHCHARTS_INDICATOR_SCRIPTS`.
9+
- Renamed the `POOL_LISTEN_TO_PROCESS_EXITS` environment variable to `OTHER_LISTEN_TO_PROCESS_EXITS`.
10+
- Renamed the `customCode` section of the options config to the `customLogic` in order to avoid confusion with the existing `customCode` property within.
11+
- Renamed the `scripts` property in the `highcharts` section of the options config to the `customScripts`.
12+
- Renamed the `initPool` function to `initExport` in the main module.
13+
- Renamed the `init` function to `initPool` in the pool module.
14+
315
_New Features:_
416

517
- Implemented debug mode, including new environment variables, a config section, 'console' event listener, and npm script for debugging the headful Puppeteer browser.
@@ -27,16 +39,9 @@ _Enhancements:_
2739
- Made corrections for gracefully shutting down resources, including running servers, ongoing intervals, browser instance, created pages, and workers pool.
2840
- Updated `createImage` and `createPDF` functions with faster execution options including `optimizeForSpeed` and `quality`.
2941
- Set `waitUntil` to 'domcontentloaded' for `setContent` and `goto` functions to improve performance.
30-
- Replaced browser's deprecated `isConnected()` with the `onnected` property.
42+
- Replaced browser's deprecated `isConnected()` with the `connected` property.
3143
- Added information on all available pool resources.
3244
- Numerous minor improvements for performance and stability.
33-
- Changed the `customCode` section of options to `customLogic` in order to avoid confusion with the existing `customCode` property within.
34-
- Renamed the environment variables for a better representation of their roles (refer to all envs in the README's `Environment Variables` section).
35-
- Renamed the `HIGHCHARTS_MODULES` and `HIGHCHARTS_INDICATORS` environment variables respectively to `HIGHCHARTS_MODULE_SCRIPTS` and `HIGHCHARTS_INDICATOR_SCRIPTS`.
36-
- Renamed the `scripts` property of the config options to `customScripts`.
37-
- Renamed the `initPool` function to `initExport` in the main module.
38-
- Renamed the `init` function to `initPool` in the pool module.
39-
- Renamed the environment variable `POOL_LISTEN_TO_PROCESS_EXITS` to `OTHER_LISTEN_TO_PROCESS_EXITS`.
4045
- Moved the `listenToProcessExits` from the `pool` to the `other` section of the options.
4146
- Replaced the temporary benchmark module with a simpler server benchmark for evaluating export time.
4247
- Removed unnecessary separate `body-parser` package (already implemented in Express v4.16+).
@@ -53,7 +58,6 @@ _Enhancements:_
5358
- Added a new process event handler for the `SIGHUP` signal.
5459
- Added `mapChart` and `ganttChart` constructors in the exporting UI [(#503)](https://github.com/highcharts/node-export-server/issues/503).
5560
- Added the series-on-point module [(#532)](https://github.com/highcharts/node-export-server/issues/532).
56-
- Reordered the `error` and `info` arguments in the callback of the `startExport` function.
5761
- Updates were made to the `config.js` file.
5862
- Updated the `killPool` function.
5963
- The `uncaughtException` handler now kills the pool, browser, and terminates the process with exit code 1, when enabled.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Additionally, with the v3 release, we transitioned from HTTP to HTTPS for export
1414

1515
## Changelog
1616

17-
**The v4 introduces numerous breaking changes. For further details, please refer to the changelog document provided below.**
17+
**Version 4 introduces some breaking changes, mostly related to renamed options, environment variables, function names, and reordered function parameters. For further details, please refer to the changelog document provided below, under the Breaking Changes section.**
1818

1919
The full change log for all versions can be viewed [here](CHANGELOG.md).
2020

0 commit comments

Comments
 (0)