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

Commit c82bea0

Browse files
Merge pull request #302 from plotly/plotlyjs-1.41.0
Upgraded plotly.js to 1.41.0
2 parents 29d9f1d + c94ad96 commit c82bea0

File tree

8 files changed

+66
-13
lines changed

8 files changed

+66
-13
lines changed

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,59 @@
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.29.0] -- 2018-09-13
6+
### Added
7+
8+
- Upgraded Plotly.js, the underlying library behind the dash_core_components.Graph component, to version 1.41.0. See https://github.com/plotly/plotly.js/releases/tag/v1.41.0 for the official notes.
9+
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
10+
11+
As part of plotly.js release:
12+
13+
- Enable selection by clicking on points via new layout attribute `clickmode`
14+
and flag `'select'` [#2944]
15+
- Add stacked area charts via new attributes `stackgroup` and `stackgaps` in
16+
`scatter` traces [#2960]
17+
- Add `barpolar` traces - which replace and augment `area` traces [#2954]
18+
- Add `polar.hole` to punch hole at the middle of polar subplot offsetting the
19+
start of the radial range [#2977, #2996]
20+
- Add an 'inner' radial axis drag box on polar subplots [#2977]
21+
- Add `{responsive: true}` plot config option [#2974]
22+
- Emit `plotly_webglcontextlost` event on WebGL context lost [#2986]
23+
- Support all numbered HTML entities (decimal and hex) in text elements [#2932]
24+
- Add Welsh (`cy`) locale [#2945]
25+
26+
### Changed
27+
As part of plotly.js release:
28+
29+
- Attribute meta information is now stripped be stripped out of bundles (made
30+
with bundlers that support browserify transforms) by default [#1584]
31+
- Draw polar axis ticks above polar axis lines [#2977]
32+
- Improve ordering of trace hover labels for matching positions [#2960]
33+
- Speed polar subplot radial drag interactions [#2954]
34+
- Improve pseudo-html conversion performance [#2932]
35+
- Bump `regl-splom` requirement to `^1.0.4` [#2956]
36+
- Bump `glslify` requirement to `^6.3.1` [#2990]
37+
- Use `gl-text` instead of `@etpinard/gl-text` [#2956]
38+
39+
### Fixed
40+
As part of plotly.js release:
41+
42+
- Fix `scatter` ordering in inner SVG `<g>` on some restyle calls [#2978]
43+
- Fix cartesian axis autorange edge cases [#2960]
44+
- Fix double-decoding of some HTML entities in text nodes [#2927]
45+
- Fix `scattergl` line traces rendered after non-line traces [#2990]
46+
- Fix legend positioning on graphs with very large margins [#2983]
47+
- Fix rendering of ternary subplots fix with `showticklabels: false` [#2993]
48+
- Fix show/hide updates of tick and tick labels on ternary subplots [#2993]
49+
- Fix handling of multi-selections in ternary subplots [#2944]
50+
- Fix `sankey` hover under `hovermode: false` [#2949]
51+
- Fix `sankey` positioning for non-default `domain.x` values [#2984]
52+
- Fix `type: 'date'` polar radial axes [#2954]
53+
- Fix send-to-cloud modebar buttons on graphs with typed arrays [#2995]
54+
- Fix handling of custom transforms that make their own data arrays in
55+
`Plotly.react`[#2973]
56+
- Fix missing violin and colorbar attributes in `gd._fullData` [#2850]
57+
558
## [0.28.3] - 2018-09-07
659
### Changed
760
- The `Interval` component's `max_interval` prop can now be used to stop/restart the interval. Fixes [#266](https://github.com/plotly/dash-core-components/issues/266)

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.40.1.min.js
6+
include dash_core_components/plotly-1.41.0.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.40.1.min.js',
39-
'relative_package_path': 'plotly-1.40.1.min.js',
38+
'external_url': 'https://cdn.plot.ly/plotly-1.41.0.min.js',
39+
'relative_package_path': 'plotly-1.41.0.min.js',
4040
'namespace': 'dash_core_components'
4141
},
4242
{

dash_core_components/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.28.3",
3+
"version": "0.29.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

dash_core_components/plotly-1.40.1.min.js

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

dash_core_components/plotly-1.41.0.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.28.3'
1+
__version__ = '0.29.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.28.3",
3+
"version": "0.29.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)