You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+39-3Lines changed: 39 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,37 @@
2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
-
## [Unreleased]
5
+
## [1.12.2] - 2016-06-20
6
+
### Updated
7
+
- Updated plotly.min.js so the offline mode is using plotly.js v1.13.0
8
+
- Fix `Plotly.toImage` and `Plotly.downloadImage` bug specific to Chrome 51 on OSX
9
+
- Beta version of the scattermapbox trace type - which allows users to create mapbox-gl maps using the plotly.js API. Note that scattermapbox is only available through custom bundling in this release.
10
+
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1130----2016-05-26) for additional additions and updates.
11
+
12
+
### Added
13
+
- The FigureFactory can now create gantt charts with `.create_gantt`. Check it out with:
14
+
```
15
+
import plotly.tools as tls
16
+
help(tls.FigureFactory.create_gantt)
17
+
```
18
+
- Ability to download images in offline mode. By providing an extra keyword `image` to the existing plot calls, you can now download the images of the plots you make in offline mode.
19
+
20
+
### Fixed
21
+
- Fixed check for the height parameter passed to `_plot_html`, and now sets the correct `link text` for plots
22
+
generated in offline mode.
23
+
24
+
25
+
## [1.12.1] - 2016-06-19
26
+
### Added
27
+
- The FigureFactory can now create violin plots with `.create_violin`. Check it out with:
28
+
```
29
+
import plotly.tools as tls
30
+
help(tls.FigureFactory.create_violin)
31
+
```
32
+
33
+
## [1.12.0] - 2016-06-06
34
+
### Added
35
+
- Added ability to enable/disable SSL certificate verification for streaming. Disabling SSL certification verification requires Python v2.7.9 / v3.4.3 (or above). This feature can be toggled via the `plotly_ssl_verification` configuration setting.
6
36
7
37
## [1.11.0] - 2016-05-27
8
38
### Updated
@@ -22,12 +52,18 @@ Note: This is a backwards incompatible change.
22
52
23
53
- In `create_trisurf`, the parameter `dist_func` has been replaced by `color_func`. Users can now:
24
54
- Input a list of different color types (hex, tuple, rgb) to `colormap` to map colors divergently
25
-
- Input a list|array of hex and rgb colors to `color_func` to assign each simplex to a color
55
+
- Input a list|array of hex and rgb colors to `color_func` to assign each simplex to a color
26
56
27
57
### Added
28
58
- Added the option to load plotly.js from a CDN by setting the parameter `connected=True`
29
59
in the `init_notebook_mode()` function call
30
-
60
+
- The FigureFactory can now create trisurf plots with `.create_trisurf`. Check it out with:
0 commit comments