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

Commit

Permalink
Merge pull request #320 from plotly/upgrade_plotly-1.41.3
Browse files Browse the repository at this point in the history
Upgrade plotly 1.41.3
  • Loading branch information
valentijnnieman authored Oct 4, 2018
2 parents 837bd81 + c9134d0 commit d004b29
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 8 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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/[email protected]
include dash_core_components/[email protected]
include dash_core_components/plotly-1.41.0.min.js
include dash_core_components/plotly-1.41.3.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.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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.32.0'
__version__ = '0.33.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.32.0",
"version": "0.33.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down

0 comments on commit d004b29

Please sign in to comment.