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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Added
- Add `raw=True` parameter to graph object constructors and `go.Figure` for high-performance figure construction, bypassing validation and object creation. Includes fast paths for `update_traces`, `for_each_trace`, `select_traces`, `update_annotations`, `update_shapes`, and other `update_*` methods [[#5514](https://github.com/plotly/plotly.py/issues/5514)].
Benchmarks show significant speedups:
- Trace creation: ~26x faster
- Figure creation: ~52x faster
- `add_traces`: ~36x faster
- `add_vline`/`add_hline`: ~90,000x faster

## [6.5.2] - 2026-01-14

### Fixed
Expand Down
3 changes: 3 additions & 0 deletions plotly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
colors,
io,
data,
config,
)
from plotly.version import __version__

Expand All @@ -54,6 +55,7 @@
"colors",
"io",
"data",
"config",
"__version__",
]

Expand All @@ -73,6 +75,7 @@
".colors",
".io",
".data",
".config",
],
[".version.__version__"],
)
Expand Down
Loading