Skip to content
Merged
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
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
## Unreleased

## v1.3.0

### Added
- Allow for request headers to be added to Choreographer calls [[#446](https://github.com/plotly/Kaleido/pull/446)]

### Changed
- Significant refactor, better organization
- `write_fig` and `_from_object` now take an additional argument:
`cancel_on_error: bool, default False`. See docs.
- Update Choreographer to v1.3.0 [[#449](https://github.com/plotly/Kaleido/pull/449)]

### Deprecated
- Unused `path` argument for `calc_fig` was deprecated.

### Fixed
- Fixed race condition where two render tasks would choose the same filename
- Fix issue where exporting large figures could cause hang [[#442](https://github.com/plotly/Kaleido/pull/442)], with thanks to @EliasTalcott for the contribution!

## v1.3.0rc0
Expand All @@ -16,7 +25,6 @@
- Unused `path` argument for `calc_fig` was deprecated.
- Fixed race condition where two render tasks would choose the same filename


## v1.2.0
- Try to use plotly JSON encoder instead of default

Expand Down Expand Up @@ -76,6 +84,6 @@
## v1.0.0rc6
- Allow PageGenerator(force_cdn=True) to not use plotly.py's installed js

## ## v1.0.0rc5
## v1.0.0rc5
- Fix bug by which plotly.py's internal js was always ignored
- Adds testing for PageGenerator
4 changes: 2 additions & 2 deletions src/py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
requires = ["setuptools>=65.0.0", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["kaleido"]
[tool.setuptools.packages.find]
include = ["kaleido", "kaleido.*"]

[tool.setuptools-git-versioning]
enabled = true
Expand Down
Loading