Skip to content

Commit c0a0ee0

Browse files
authored
Release 4.3.0 (#1894)
* Bump plotly.js to 1.51.1 in jupyterlab-plotly extension * Update CHANGELOG for 4.3.0 * Bump plotlywidget and jupyterlab-plotly versions to 1.3.0 * Update versions in README
1 parent 424c824 commit c0a0ee0

File tree

8 files changed

+1782
-1781
lines changed

8 files changed

+1782
-1781
lines changed

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
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+
## [4.3.0] - 2019-11-11
6+
7+
### Updated
8+
- Updated Plotly.js to version 1.51.1. See the
9+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1511----2019-11-04)
10+
for more information
11+
- Improved propagation of empty templates ([#1892](https://github.com/plotly/plotly.py/pull/1892))
12+
- Update the `add_annotations`/`add_shapes`/`add_images` methods to no longer default to adding objects in paper coordinates. This allows plotly.js to determine the default reference frame based on context ([#1888](https://github.com/plotly/plotly.py/pull/1888))
13+
- Use the default template's background color for displaying color swatches ([#1872](https://github.com/plotly/plotly.py/pull/1872)). Special thanks to [@joelostblom](https://github.com/joelostblom) for this contribution!
14+
- Improved docstrings ([#1835](https://github.com/plotly/plotly.py/pull/1835), [#1837](https://github.com/plotly/plotly.py/pull/1837))
15+
16+
### Added
17+
- Added image trace type ([plotly.js#4289](https://github.com/plotly/plotly.js/pull/4289), [plotly.js#4307](https://github.com/plotly/plotly.js/pull/4307), [plotly.js#4313](https://github.com/plotly/plotly.js/pull/4313), [plotly.js#4319](https://github.com/plotly/plotly.js/pull/4319))
18+
- Added matplotlib-style `plotly.express.imshow` convenience function to display images and heatmaps ([#1855](https://github.com/plotly/plotly.py/pull/1855), [#1885](https://github.com/plotly/plotly.py/pull/1885))
19+
- Added matplotlib-style `simple_white` template ([#1864](https://github.com/plotly/plotly.py/pull/1864)). Special thanks to [@joelostblom](https://github.com/joelostblom) for this contribution.
20+
- Added support for using an externally managed orca server for image export features ([#1850](https://github.com/plotly/plotly.py/pull/1850)). Special thanks to [@miriad](https://github.com/miriad) for this contribution.
21+
- Added facet wrapping support to plotly express functions using the new `facet_col_wrap` argument ([#1838](https://github.com/plotly/plotly.py/pull/1838))
22+
523
## [4.2.1] - 2019-10-18
624
### Fixed
725
- Fixed regression in 4.2.0 that caused all figure factories to require that scikit-image be installed ([#1832](https://github.com/plotly/plotly.py/pull/1832))

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
7272

7373
plotly.py may be installed using pip...
7474
```
75-
pip install plotly==4.2.1
75+
pip install plotly==4.3.0
7676
```
7777

7878
or conda.
7979
```
80-
conda install -c plotly plotly=4.2.1
80+
conda install -c plotly plotly=4.3.0
8181
```
8282

8383
### Jupyter Notebook Support
@@ -99,7 +99,7 @@ For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
9999
packages using pip...
100100

101101
```
102-
pip install jupyterlab==1.0 "ipywidgets==7.5"
102+
pip install jupyterlab==1.2 "ipywidgets==7.5"
103103
```
104104

105105
or conda.
@@ -117,13 +117,13 @@ export NODE_OPTIONS=--max-old-space-size=4096
117117
set NODE_OPTIONS=--max-old-space-size=4096
118118
119119
# Jupyter widgets extension
120-
jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build
120+
jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1 --no-build
121121
122122
# FigureWidget support
123-
jupyter labextension install plotlywidget@1.2.0 --no-build
123+
jupyter labextension install plotlywidget@1.3.0 --no-build
124124
125125
# and jupyterlab renderer support
126-
jupyter labextension install jupyterlab-plotly@1.2.0 --no-build
126+
jupyter labextension install jupyterlab-plotly@1.3.0 --no-build
127127
128128
# Build extensions (must be done to activate extensions since --no-build is used above)
129129
jupyter lab build

0 commit comments

Comments
 (0)