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

Diff for: CHANGELOG.md

+19
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 `color-normlize@1.3.0` 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)

Diff for: MANIFEST.in

+1-1
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/rc-slider@6.1.2.css
55
include dash_core_components/react-select@1.0.0-rc.3.min.css
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/react-virtualized-select@3.1.0.css
88
include dash_core_components/react-virtualized@9.9.0.css
99
include dash_core_components/react-dates@12.3.0.css

Diff for: dash_core_components/__init__.py

+2-2
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
{

Diff for: dash_core_components/plotly-1.39.1.min.js

-7
This file was deleted.

Diff for: dash_core_components/plotly-1.40.1.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dash_core_components/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.27.2'
1+
__version__ = '0.28.0'

Diff for: package.json

+1-1
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)