|
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 | +## [3.2.1] - 2018-09-14 |
| 6 | +This is a patch release that fixes a few bugs and reintroduces a few |
| 7 | +version 2 features that were not supported in version 3. |
| 8 | + |
| 9 | +The bundled version of plotly.js remains at 1.40.1 |
| 10 | + |
| 11 | +### JupyterLab Versions |
| 12 | +For use with JupyterLab, the following versions of the following packages |
| 13 | +must be installed: |
| 14 | + |
| 15 | + - Python Packages |
| 16 | + - plotly==3.2.1 |
| 17 | + - ipywidgets>=7.2 |
| 18 | + - notebook>=5.3 |
| 19 | + - jupyterlab==0.34 |
| 20 | + |
| 21 | + - JupyterLab Extensions |
| 22 | + |
| 23 | + - @jupyter-widgets/jupyterlab-manager@0.37 |
| 24 | + - @jupyterlab/plotly-extension@0.17 |
| 25 | + |
| 26 | +### Added |
| 27 | + - An optional `skip_invalid` argument has been added to the `Figure` and |
| 28 | + `FigureWidget` constructors. By default, `skip_invalid` is `False` and invalid |
| 29 | + figure properties will result in an exception (this is identical to the |
| 30 | + previous behavior). When `skip_invalid` is set to `True`, invalid properties |
| 31 | + will instead be silently ignored. This argument replaces the `_raise` |
| 32 | + argument that was available in version 2, and makes it possible to import |
| 33 | + figure definitions from different plotly versions, where incompatible |
| 34 | + properties are ignored rather than causing an exception. |
| 35 | + - A `to_ordered_dict` method has been added to the `Figure` and `FigureWidget` |
| 36 | + classes. This method returns a representation of the figure as a nested |
| 37 | + structure of `OrdererdDict` and `list` instances where the keys in each |
| 38 | + `OrderedDict` are sorted alphabetically. This method replaces the |
| 39 | + `get_ordered` method that was available in version 2, and makes it possible |
| 40 | + to traverse the nested structure of a figure in a deterministic order. |
| 41 | + |
| 42 | +### Fixed |
| 43 | + - Pandas `Series` and `Index` objects storing `datetime` values were |
| 44 | + incorrectly cast to numeric arrays |
| 45 | + ([plotly/plotly.py#1160](https://github.com/plotly/plotly.py/issues/1160), |
| 46 | + [plotly/plotly.py#1163](https://github.com/plotly/plotly.py/pull/1163)) |
| 47 | + - Numpy arrays with `uint64` datatype caused a `FigureWidget` error, |
| 48 | + and no figure was displayed |
| 49 | + ([plotly/plotly.py#1155](https://github.com/plotly/plotly.py/issues/1155), |
| 50 | + [plotly/plotly.py#1163](https://github.com/plotly/plotly.py/pull/1163)) |
| 51 | + |
5 | 52 | ## [3.2.0] - 2018-09-05
|
6 | 53 | This release introduces the long-anticipated ability to programmatically
|
7 | 54 | export figures as high quality static images in both raster and vector
|
|
0 commit comments