Skip to content

Commit acd72c9

Browse files
committed
V5.0.0
1 parent d795376 commit acd72c9

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Convert Highcharts.JS charts into static image files.
66

77
## Upgrade Notes
88

9+
## v4.x.x to v5.x.x
10+
11+
There are two breaking changes in v5.x.x:
12+
- `xlink:href` is now dissallowed in incoming SVG. This has adverse effects on exports with e.g. background images or other external resources, and is being done to prevent potential security issues. To allow this attribute, set `OTHER_ALLOW_XLINK_HREF` to `true`.
13+
- There is now an active upload limit which defaults to 3MB (can be configured with `SERVER_MAX_UPLOAD_SIZE`/`--maxUploadSize`/`maxUploadSize`)
14+
15+
For other changes and fixes, please see the [changelog](CHANGELOG.md).
16+
17+
## v3.x.x to v4.x.x
18+
919
In most cases, v4 should serve as a drop-in replacement for v2 and v3. However, due to changes in the browser backend, various tweaks related to process handling (e.g., worker counts, and so on) may now have different effects than before.
1020

1121
Significant changes have been made to the API for using the server as a Node.js module. While a compatibility layer has been created to address this, it is recommended to transition to the new API described below. It is worth noting that the compatibility layer may be deprecated at some point in the future.
@@ -384,6 +394,7 @@ These variables are set in your environment and take precedence over options fro
384394
- `OTHER_NO_LOGO`: Skip printing the logo on a startup. Will be replaced by a simple text (defaults to `false`).
385395
- `OTHER_HARD_RESET_PAGE`: Determines whether the page's content should be reset from scratch, including Highcharts scripts (defaults to `false`).
386396
- `OTHER_BROWSER_SHELL_MODE`: Decides whether to enable older but much more performant _shell_ mode for the browser (defaults to `true`).
397+
- `OTHER_ALLOW_XLINK`: If set to true, allow `xlink:href` in incoming SVG (defaults to `false`).
387398

388399
### Debugging Config
389400
- `DEBUG_ENABLE`: Enables or disables debug mode for the underlying browser (defaults to `false`).

dist/index.cjs

+2-2
Large diffs are not rendered by default.

dist/index.esm.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.esm.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/envs.js

+1
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ export const Config = z.object({
231231
OTHER_NO_LOGO: v.boolean(),
232232
OTHER_HARD_RESET_PAGE: v.boolean(),
233233
OTHER_BROWSER_SHELL_MODE: v.boolean(),
234+
OTHER_ALLOW_XLINK: v.boolean(),
234235

235236
// debugger
236237
DEBUG_ENABLE: v.boolean(),

lib/sanitize.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ See LICENSE file in root for details.
2020
import { JSDOM } from 'jsdom';
2121
import DOMPurify from 'dompurify';
2222

23+
import { envs } from './envs.js';
2324
/**
2425
* Sanitizes a given HTML string by removing <script> tags.
2526
* This function uses a regular expression to find and remove all
@@ -29,12 +30,17 @@ import DOMPurify from 'dompurify';
2930
* @returns {string} The sanitized HTML string.
3031
*/
3132
export function sanitize(input) {
33+
const forbidden = [];
34+
35+
if (!envs.OTHER_ALLOW_XLINK) {
36+
forbidden.push('xlink:href');
37+
}
38+
3239
const window = new JSDOM('').window;
3340
const purify = DOMPurify(window);
3441
return purify.sanitize(input, {
3542
ADD_TAGS: ['foreignObject'],
36-
// Disallow all xlinks in incoming SVG
37-
FORBID_ATTR: ['xlink:href']
43+
FORBID_ATTR: forbidden
3844
});
3945
}
4046

0 commit comments

Comments
 (0)