Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade plotly 1.41.3 #320

Merged
merged 5 commits into from Oct 4, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,27 @@
# Change Log for dash-core-components
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [0.33.0] -- 2018-10-04
### Added

- Upgraded Plotly.js, the underlying library behind the dash_core_components.Graph component, to version 1.41.3. See https://github.com/plotly/plotly.js/releases/tag/v1.41.3 for the official notes.
Many of these features were funded directly by companies that rely on this library. If your organization or company would like to sponsor particular features or bug fixes in these open source libraries, please reach out: http://plot.ly/products/consulting-and-oem

### Fixed
As part of plotly.js release:

- Fix handling of hover `text` in `barpolar` traces [#3040]
- Fix `scatterpolar[gl]` `text` placement in hover label [#3040]
- Fix `pie` trace support for individual stroke width values [#3030]
- Fix handling of CSS `max-width` and `max-height` in auto-size routine [#3033]
- Rotate hover labels when `hovermode: 'y'` and a single trace produces multiple
labels [#3043]
- Rotate hover labels when `hovermode: 'closest'` and multiple labels are
generated including one from an horizontal trace [#3043]
- Fix hover label coloring on white bgcolor [#3048]
- Do not coerce nor validate `polar?.bar*` attributes on
subplots w/o visible `barpolar` traces [#3023]
- Fix legacy polar attribute descriptions [#3023]

## [0.32.0] - 2018-10-2
### Added
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Expand Up @@ -3,7 +3,7 @@ include dash_core_components/dash_core_components.dev.js
include dash_core_components/metadata.json
include dash_core_components/rc-slider@6.1.2.css
include dash_core_components/react-select@1.0.0-rc.3.min.css
include dash_core_components/plotly-1.41.0.min.js
include dash_core_components/plotly-1.41.3.min.js
include dash_core_components/react-virtualized-select@3.1.0.css
include dash_core_components/react-virtualized@9.9.0.css
include dash_core_components/react-dates@12.3.0.css
Expand Down
4 changes: 2 additions & 2 deletions dash_core_components/__init__.py
Expand Up @@ -35,8 +35,8 @@

_js_dist = [
{
'external_url': 'https://cdn.plot.ly/plotly-1.41.0.min.js',
'relative_package_path': 'plotly-1.41.0.min.js',
'external_url': 'https://cdn.plot.ly/plotly-1.41.3.min.js',
'relative_package_path': 'plotly-1.41.3.min.js',
'namespace': 'dash_core_components'
},
{
Expand Down
2 changes: 1 addition & 1 deletion dash_core_components/package.json
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "0.32.0",
"version": "0.33.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_core_components/version.py
@@ -1 +1 @@
__version__ = '0.32.0'
__version__ = '0.33.0'
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "0.32.0",
"version": "0.33.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down