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

Commit fbfe532

Browse files
committed
v0.13.0
1 parent 66f6a57 commit fbfe532

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
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.13.0] - 2017-10-05
6+
### Added
7+
- Bumped [plotly.js](https://github.com/plotly/plotly.js) from `v1.29.3` to `v1.30.0`.
8+
This was a huge release by the plotly.js team! :clap:
9+
See the full changelog here: https://github.com/plotly/plotly.js/releases/tag/v1.31.0.
10+
The following improvements from this version update apply to dash:
11+
- Add `table` trace type [2030](https://github.com/plotly/plotly.js/issue/2030)
12+
- Add `geo.center` making geo views fully reproducible using layout attributes [2030](https://github.com/plotly/plotly.js/issue/2030)
13+
- Add lasso and select-box drag modes to `scattergeo` and `choropleth` traces [2030](https://github.com/plotly/plotly.js/issue/2030)
14+
- Add lasso and select-box drag modes to `bar` and `histogram` traces [2045](https://github.com/plotly/plotly.js/issue/2045)
15+
- Throttle lasso and select-box events for smoother behavior [2040](https://github.com/plotly/plotly.js/issue/2040)
16+
- Add constraintext attribute for bar traces [1931](https://github.com/plotly/plotly.js/1931)
17+
- Add axis layer attribute to ternary axes [1952](https://github.com/plotly/plotly.js/1952)
18+
- Add cross-trace matching auto-binning logic to histogram traces [1944](https://github.com/plotly/plotly.js/1944)
19+
- Harmonize gl3d and gl2d zoom speed with cartesian behavior [2041](https://github.com/plotly/plotly.js/issue/2041)
20+
- Fix handling of extreme off-plot data points in scatter lines [2060](https://github.com/plotly/plotly.js/issue/2060)
21+
- Fix `hoverinfo` array support for `scattergeo`, `choropleth`, `scatterternary` and `scattermapbox` traces [2055](https://github.com/plotly/plotly.js/issue/2055)
22+
- Fix single-bin histogram edge case [2028](https://github.com/plotly/plotly.js/issue/2028)
23+
- Fix autorange for bar with base zero [2050](https://github.com/plotly/plotly.js/issue/2050)
24+
- Fix annotations arrow rendering when graph div is off the DOM [2046](https://github.com/plotly/plotly.js/issue/2046)
25+
- Fix hover for graphs with `scattergeo` markers outside 'usa' scope [2030](https://github.com/plotly/plotly.js/issue/2030)
26+
- Fix handling of cross anti-meridian geo `lonaxis` ranges [2030](https://github.com/plotly/plotly.js/issue/2030)
27+
- Fix miter limit for lines on geo subplots [2030](https://github.com/plotly/plotly.js/issue/2030)
28+
- Fix `marker.opacity` handling for `scattergeo` bubbles [2030](https://github.com/plotly/plotly.js/issue/2030)
29+
- Fix layout animation of secondary axes [1999](https://github.com/plotly/plotly.js/issue/1999)
30+
- Fix `sankey` hover text placement for empty `link.label` items [2016](https://github.com/plotly/plotly.js/issue/2016)
31+
- Fix `sankey` rendering of nodes with very small values [2017](https://github.com/plotly/plotly.js/issue/2017,2021] https://github.com/plotly/plotly.js/issue/2021)
32+
- Fix `sankey` hover label positioning on pages that style the 'svg-container' div node [2027](https://github.com/plotly/plotly.js/issue/2027)
33+
- Fix hover label exponents [1932](https://github.com/plotly/plotly.js/issue/1932)
34+
- Fix scatter fill with isolated endpoints [1933](https://github.com/plotly/plotly.js/issue/1933)
35+
- Fix parcoords axis tick scale when ticktext is unordered [1945](https://github.com/plotly/plotly.js/issue/1945)
36+
- Fix sankey with 4 multi-links or more [1934](https://github.com/plotly/plotly.js/issue/1934)
37+
- Fix exponent labels beyond SI prefixes [1930](https://github.com/plotly/plotly.js/issue/1930)
38+
- Fix image generation for marker gradient legend items [1928](https://github.com/plotly/plotly.js/issue/1928)
39+
- Fix parcoords image generation when multiple parcoords graphs are present on page [1947](https://github.com/plotly/plotly.js/issue/1947)
40+
- Ignore bare closing tags in pseudo-html string inputs [1926](https://github.com/plotly/plotly.js/issue/1926)
41+
42+
543
## [0.12.7] - 2017-09-26
644
### :bug: Fixed
745
- Fixed issues related to updating the `max_date_allowed` property of `DatePickerSingle` and `DatePickerRange` programatically through callbacks

dash_core_components/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.12.7'
1+
__version__ = '0.13.0'

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

0 commit comments

Comments
 (0)