Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 192498b

Browse files
committed
📦 upgrade plotly js to 1.40.1
1 parent 26b2c62 commit 192498b

File tree

7 files changed

+31
-12
lines changed

7 files changed

+31
-12
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.28.0]
6+
- Upgraded Plotly.js, the underlying library behind the
7+
`dash_core_components.Graph` component, to [version 1.40.1](https://github.com/plotly/plotly.js/releases/tag/v1.40.1).
8+
See https://github.com/plotly/plotly.js/releases/tag/v1.40.1 for the official notes.
9+
10+
As part of plotly.js release:
11+
### Changed
12+
- Bump `browserify` to `v16` [#2923]
13+
- Bump `glslify` to `v6.2.1` [#2923]
14+
- Use `[email protected]` throughout code base [#2923]
15+
### Fixed
16+
- Fix logic for hiding zero lines when they conflict with axis lines [#2936]
17+
- Fix `exponentformat` values `'e'` and `'E'` on log axes [#2921]
18+
- Fix dynamic layer ordering of heatmap and carpet traces [#2917]
19+
- Fix `Plotly.downloadImage` when using graph id or figure object
20+
as first argument [#2931]
21+
- Fix regl-based rendering when WebGL buffer dimensions don't match canvas
22+
dimensions [#2939]
23+
524
## [0.27.2]
625
### Fixed
726
- `Tabs.children` can now be undefined, so you can update them dynamically. [#265](https://github.com/plotly/dash-core-components/issues/265)

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include dash_core_components/bundle.js.map
33
include dash_core_components/metadata.json
44
include dash_core_components/[email protected]
55
include dash_core_components/[email protected]
6-
include dash_core_components/plotly-1.39.1.min.js
6+
include dash_core_components/plotly-1.40.1.min.js
77
include dash_core_components/[email protected]
88
include dash_core_components/[email protected]
99
include dash_core_components/[email protected]

dash_core_components/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535

3636
_js_dist = [
3737
{
38-
'external_url': 'https://cdn.plot.ly/plotly-1.39.1.min.js',
39-
'relative_package_path': 'plotly-1.39.1.min.js',
38+
'external_url': 'https://cdn.plot.ly/plotly-1.40.1.min.js',
39+
'relative_package_path': 'plotly-1.40.1.min.js',
4040
'namespace': 'dash_core_components'
4141
},
4242
{

dash_core_components/plotly-1.39.1.min.js

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

dash_core_components/plotly-1.40.1.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_core_components/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.27.2'
1+
__version__ = '0.28.0'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "0.27.2",
3+
"version": "0.28.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)