Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
### Changed

- [[#406](https://github.com/plotly/plotly.rs/issues/406)] Upgrade bundled plotly.js from 3.0.1 to 3.6.0
- [[#419](https://github.com/plotly/plotly.rs/issues/419)] Upgrade bundled plotly.js from 3.6.0 to 3.7.0

## [0.14.1] - 2026-02-15

Expand Down
180 changes: 90 additions & 90 deletions docs/book/plotly.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/book/theme/header.hbs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<script src="https://cdn.plot.ly/plotly-3.6.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-3.7.0.min.js"></script>
2 changes: 1 addition & 1 deletion examples/customization/multiple_plots_example/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use plotly::{
fn main() {
let html: String = HtmlPage::new()
.with_title("Plotly-rs Multiple Plots")
.with_script_link("https://cdn.plot.ly/plotly-latest.min.js")
.with_script_link("https://cdn.plot.ly/plotly-3.7.0.min.js")
.with_header(1, "Multiple Plotly plots on the same HTML page")
.with_raw(first_plot())
.with_raw(second_plot())
Expand Down
2 changes: 1 addition & 1 deletion examples/wasm-yew/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<title>Plotly Yew</title>
<script src="https://cdn.plot.ly/plotly-2.14.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-3.7.0.min.js"></script>
</head>

<body></body>
Expand Down
2 changes: 1 addition & 1 deletion examples/wasm-yew/callback-example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<title>Plotly Yew</title>
<script src="https://cdn.plot.ly/plotly-2.14.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-3.7.0.min.js"></script>
</head>

<body></body>
Expand Down
180 changes: 90 additions & 90 deletions plotly/resource/plotly.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plotly/src/plot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ impl Plot {
/// This function provides HTML script tags that load JavaScript libraries
/// from external CDN sources, requiring an internet connection to
/// function. The referenced sources include:
/// - Plotly.js library from CDN (version 3.6.0)
/// - Plotly.js library from CDN (version 3.7.0)
/// - MathJax tex-svg from jsDelivr CDN (version 3.2.2)
///
/// This is the default behavior when the `plotly_embed_js` feature is
Expand All @@ -767,7 +767,7 @@ impl Plot {
// Note that since 'tex-mml-chtml' conflicts with 'tex-svg' when generating
// Latex Titles we no longer include it.
r##"<script src="https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/tex-svg.js"></script>
<script src="https://cdn.plot.ly/plotly-3.6.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-3.7.0.min.js"></script>
"##
.to_string()
}
Expand Down
2 changes: 1 addition & 1 deletion plotly/templates/jupyter_notebook_plot.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<div id="{{ plot_div_id }}" class="plotly-graph-div" style="height:100%; width:100%;"></div>
<script type="text/javascript">
require(['https://cdn.plot.ly/plotly-3.6.0.min.js'], function(Plotly) {
require(['https://cdn.plot.ly/plotly-3.7.0.min.js'], function(Plotly) {
Plotly.newPlot(
"{{ plot_div_id }}",
{{ plot| tojson | safe }}
Expand Down
180 changes: 90 additions & 90 deletions plotly_static/resource/plotly.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plotly_static/src/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ fn offline_js_sources() -> String {
fn online_js_cdn() -> String {
// tex-mml-chtml conflicts with tex-svg when generating Latex Titles
r##"
<script src="https://cdn.plot.ly/plotly-3.6.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-3.7.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/tex-svg.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
"##
Expand Down
Loading