Skip to content

Commit 381cc21

Browse files
committed
update Plotly.js to version 2.17.1
1 parent 478de06 commit 381cc21

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
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.2.2 (2023-01-10)
14+
15+
* __[maintenance]__
16+
The version of Plotly.js is bumped from 2.17.0 to 2.17.1.
17+
The new version contains a regression fix. For details on this see
18+
[the changelog of Plotly.js](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2171----2023-01-09).
19+
1320
## Version 2.2.1 (2023-01-10)
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.2.1",
3+
"version": "2.2.2",
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.17.0.min.js renamed to export-server/plotly-2.17.1.min.js

Lines changed: 3 additions & 3 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Plotly.js offline image export server with Node.js
3-
Copyright (C) 2018, 2021, 2022 Dirk Stolle
3+
Copyright (C) 2018, 2021, 2022, 2023 Dirk Stolle
44
55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
@@ -88,7 +88,7 @@ exports.render = async function(jsonData, filename, width, height) {
8888
};
8989

9090
await
91-
fs.promises.readFile('./plotly-2.17.0.min.js', 'utf-8')
91+
fs.promises.readFile('./plotly-2.17.1.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)