Skip to content

Commit a75a498

Browse files
committed
update Plotly.js to version 2.35.3
1 parent 3038ebe commit a75a498

File tree

7 files changed

+20
-15
lines changed

7 files changed

+20
-15
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-
## Version 5.9.4-pre (2025-01-08)
13+
## Version 5.9.4 (2025-01-08)
14+
15+
* __[maintenance]__
16+
The version of Plotly.js is bumped from 2.35.2 to 2.35.3.
17+
The new version contains some fixes. For details on those see
18+
[the changelog of Plotly.js](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2353----2024-12-13).
1419

1520
* __[maintenance]__
1621
Update dependencies `tldts` + `tldts-core` to 6.1.71.

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": "5.9.4-pre",
3+
"version": "5.9.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.35.2.min.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

export-server/plotly-2.35.3.min.js

Lines changed: 8 additions & 0 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, 2023, 2024 Dirk Stolle
3+
Copyright (C) 2018, 2021, 2022, 2023, 2024, 2025 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
@@ -75,7 +75,7 @@ exports.render = async function(jsonData, width, height) {
7575
};
7676

7777
return await
78-
fs.promises.readFile('./plotly-2.35.2.min.js', 'utf-8')
78+
fs.promises.readFile('./plotly-2.35.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 }))

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ A version history is available in [changelog.md](./changelog.md).
144144

145145
## Copyright and Licensing
146146

147-
Copyright 2018, 2020, 2021, 2022, 2023, 2024 Dirk Stolle
147+
Copyright 2018, 2020, 2021, 2022, 2023, 2024, 2025 Dirk Stolle
148148

149149
This program is free software: you can redistribute it and/or modify
150150
it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)