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

upgrade plotly js to 1.40.1 #280

Merged
merged 1 commit into from
Aug 26, 2018
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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.28.0]
- Upgraded Plotly.js, the underlying library behind the
`dash_core_components.Graph` component, to [version 1.40.1](https://github.com/plotly/plotly.js/releases/tag/v1.40.1).
See https://github.com/plotly/plotly.js/releases/tag/v1.40.1 for the official notes.

As part of plotly.js release:
### Changed
- Bump `browserify` to `v16` [#2923]
- Bump `glslify` to `v6.2.1` [#2923]
- Use `[email protected]` throughout code base [#2923]
### Fixed
- Fix logic for hiding zero lines when they conflict with axis lines [#2936]
- Fix `exponentformat` values `'e'` and `'E'` on log axes [#2921]
- Fix dynamic layer ordering of heatmap and carpet traces [#2917]
- Fix `Plotly.downloadImage` when using graph id or figure object
as first argument [#2931]
- Fix regl-based rendering when WebGL buffer dimensions don't match canvas
dimensions [#2939]

## [0.27.2]
### Fixed
- `Tabs.children` can now be undefined, so you can update them dynamically. [#265](https://github.com/plotly/dash-core-components/issues/265)
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include dash_core_components/bundle.js.map
include dash_core_components/metadata.json
include dash_core_components/[email protected]
include dash_core_components/[email protected]
include dash_core_components/plotly-1.39.1.min.js
include dash_core_components/plotly-1.40.1.min.js
include dash_core_components/[email protected]
include dash_core_components/[email protected]
include dash_core_components/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions dash_core_components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

_js_dist = [
{
'external_url': 'https://cdn.plot.ly/plotly-1.39.1.min.js',
'relative_package_path': 'plotly-1.39.1.min.js',
'external_url': 'https://cdn.plot.ly/plotly-1.40.1.min.js',
'relative_package_path': 'plotly-1.40.1.min.js',
'namespace': 'dash_core_components'
},
{
Expand Down
7 changes: 0 additions & 7 deletions dash_core_components/plotly-1.39.1.min.js

This file was deleted.

7 changes: 7 additions & 0 deletions dash_core_components/plotly-1.40.1.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_core_components/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.27.2'
__version__ = '0.28.0'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "0.27.2",
"version": "0.28.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down