You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,17 @@
1
+
# 5.0.0
2
+
3
+
_Breaking Changes:_
4
+
5
+
- Removed `xlink:href` from incoming SVGs in preperation for an upcoming puppeteer update that will remove this option.
6
+
- Changed the upload file size limit to 3MB, and exposed settings for configuring it (`SERVER_MAX_UPLOAD_SIZE`/`--maxUploadSize`/`maxUploadSize`). The rational behind this change is that in testing that seems like the most balanced limit along with other default values for pool sizing, timeouts and such to avoid attempting to process requests that would likely end up timing out due to its size.
7
+
8
+
_Fixes:_
9
+
10
+
- Fixed an issue where clip size for PDFs would on rare occation be invalid, causing the export to fail
11
+
- Fixed an issue where the chart constructor was sometimes incorrectly set, causing the export to fail
12
+
- Added referrers to CDN cache fetches on first startup/install.
13
+
- Fixed an issue that would sometimes cause cause a crash due to fail due to `Accept-Ranges` headers
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,7 @@ The format, along with its default values, is as follows (using the recommended
214
214
"host": "0.0.0.0",
215
215
"port": 7801,
216
216
"benchmarking": false,
217
+
"maxUploadSize": 3,
217
218
"proxy": {
218
219
"host": "",
219
220
"port": 8080,
@@ -316,6 +317,7 @@ These variables are set in your environment and take precedence over options fro
316
317
-`SERVER_HOST`: The hostname of the server. Additionally, it starts a server listening on the provided hostname (defaults to `0.0.0.0`).
317
318
-`SERVER_PORT`: The port to be used for the server when enabled (defaults to `7801`).
318
319
-`SERVER_BENCHMARKING`: Indicates whether to display a message with the duration, in milliseconds, of specific actions that occur on the server while serving a request (defaults to `false`).
320
+
-`SERVER_MAX_UPLOAD_SIZE`: The maximum size, in MB, of uploaded files (defaults to `3`).
319
321
320
322
### Server Proxy Config
321
323
@@ -413,6 +415,7 @@ _Available options:_
413
415
-`--enableServer`: If set to **true**, the server starts on 0.0.0.0 (defaults to `false`).
414
416
-`--host`: The hostname of the server. Additionally, it starts a server listening on the provided hostname (defaults to `0.0.0.0`).
415
417
-`--port`: The port to be used for the server when enabled (defaults to `7801`).
418
+
-`--maxUploadSize`: The maximum size, in MB, of files uploaded through the server (defaults to `3`).
416
419
-`--serverBenchmarking`: Indicates whether to display the duration, in milliseconds, of specific actions that occur on the server while serving a request (defaults to `false`).
417
420
-`--proxyHost`: The host of the proxy server to use, if it exists (defaults to `false`).
418
421
-`--proxyPort`: The port of the proxy server to use, if it exists (defaults to `false`).
0 commit comments