Skip to content

Commit efbc4d3

Browse files
committed
update Plotly.js to version 3.0.3
1 parent 5d71ab9 commit efbc4d3

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ 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-
## Next Version (2025-07-??)
13+
## Version 6.0.9 (2025-07-26)
14+
15+
* __[maintenance]__
16+
The version of Plotly.js is bumped from 3.0.2 to 3.0.3.
17+
The new version contains some minor changes. For details on those see
18+
[the changelog of Plotly.js](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#303----2025-07-23).
1419

1520
* __[maintenance]__
1621
Update dependency `cssstyle` to 4.6.0.

export-server/package-lock.json

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/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": "6.0.8",
3+
"version": "6.0.9",
44
"description": "Plotly.js Node.js export server",
55
"repository": {
66
"url": "https://gitlab.com/striezel/plotly-node-export-server.git",

export-server/plotly-3.0.2.min.js renamed to export-server/plotly-3.0.3.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
@@ -75,7 +75,7 @@ exports.render = async function(jsonData, width, height) {
7575
};
7676

7777
return await
78-
fs.promises.readFile('./plotly-3.0.2.min.js', 'utf-8')
78+
fs.promises.readFile('./plotly-3.0.3.min.js', 'utf-8')
7979
.then(win.eval)
8080
.then(() => win.Plotly.toImage({data: array_data, layout: layout, config: config},
8181
{ format: 'svg', imageDataOnly: true }))

0 commit comments

Comments
 (0)