Skip to content

Commit af020a0

Browse files
committed
update Plotly.js to version 2.16.4
1 parent 1bb64b7 commit af020a0

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ Since [Plotly.js](https://plotly.com/javascript/) is the main dependency of this
1010
application, major version changes in Plotly.js will also trigger a major
1111
version change in this application.
1212

13+
## Version 2.1.4 (2022-12-09)
14+
15+
* __[maintenance]__
16+
The version of Plotly.js is bumped from 2.16.1 to 2.16.4.
17+
The new version contains a few fixes. For details on those see
18+
[the changelog of Plotly.js](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2164----2022-12-07).
19+
1320
## Version 2.1.3 (2022-12-09)
1421

1522
* __[maintenance]__

export-server/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

export-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotly-node-export-server",
3-
"version": "2.1.3",
3+
"version": "2.1.4",
44
"description": "Plotly.js Node.js export server",
55
"repository": {
66
"url": "https://gitlab.com/striezel/plotly-node-export-server.git",

export-server/plotly-2.16.1.min.js renamed to export-server/plotly-2.16.4.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

export-server/ssr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ exports.render = async function(jsonData, filename, width, height) {
8888
};
8989

9090
await
91-
fs.promises.readFile('./plotly-2.16.1.min.js', 'utf-8')
91+
fs.promises.readFile('./plotly-2.16.4.min.js', 'utf-8')
9292
.then(win.eval)
9393
.then(() => win.Plotly.toImage({data: [data], layout: layout, config: config},
9494
{ format: 'svg', imageDataOnly: true }))

0 commit comments

Comments
 (0)