From 8a75262e4f1c1d75e5803c47aab9763f46bbaea9 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Tue, 28 Mar 2023 10:51:26 -0400 Subject: [PATCH 1/4] version changes for v5.14.0 --- CHANGELOG.md | 10 +++++++++- README.md | 8 ++++---- .../javascript/jupyterlab-plotly/package-lock.json | 4 ++-- packages/javascript/jupyterlab-plotly/package.json | 2 +- packages/python/plotly/plotly/_widget_version.py | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14fa1203b0f..439e1faa667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## UNRELEASED +## [5.14.0] - 2023-03-28 ### Updated - Updated Plotly.js to from version 2.18.2 to version 2.20.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2200----2023-03-15) for more information. Notable changes include: @@ -12,6 +12,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Add `labelalias` to various axes namely cartesian, gl3d, polar, smith, ternary, carpet, indicator and colorbar [[#6481](https://github.com/plotly/plotly.js/pull/6481)], this feature was anonymously sponsored: thank you to our sponsor! + - Key errors no longer precalculated when performing updates on plots [[#4101](https://github.com/plotly/plotly.py/pull/4101)] + +### Fixed +- Fixed an issue with characters displaying incorrectly, by adding `charset="utf-8"` to scripts in `to_html`[[#4114](https://github.com/plotly/plotly.py/pull/4114)] +- Added `packaging` to install requirements, fixing a `No module named 'packaging` error on Python 3.6 [[#4113](https://github.com/plotly/plotly.py/pull/4113)] + +### Added +- Added option to allow passing a column name as a `str` in `hover_data` and `custom_data` in `plotly.express` [[4083](https://github.com/plotly/plotly.py/pull/4083)] ## [5.13.1] - 2023-02-24 diff --git a/README.md b/README.md index 017f2b36d1e..73d6fbdf7bb 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ ## Quickstart -`pip install plotly==5.13.1` +`pip install plotly==5.14.0` Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`): @@ -78,13 +78,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is plotly.py may be installed using pip... ``` -pip install plotly==5.13.1 +pip install plotly==5.14.0 ``` or conda. ``` -conda install -c plotly plotly=5.13.1 +conda install -c plotly plotly=5.14.0 ``` ### JupyterLab Support @@ -106,7 +106,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.13.1 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.14.1 @jupyter-widgets/jupyterlab-manager ``` Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab. diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index 5b5d78ab03b..af9f7a4c8c9 100644 --- a/packages/javascript/jupyterlab-plotly/package-lock.json +++ b/packages/javascript/jupyterlab-plotly/package-lock.json @@ -1,12 +1,12 @@ { "name": "jupyterlab-plotly", - "version": "5.13.1", + "version": "5.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "jupyterlab-plotly", - "version": "5.13.1", + "version": "5.14.0", "license": "MIT", "dependencies": { "@jupyter-widgets/base": ">=2.0.0 <7.0.0", diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 7475859a23c..c38e3b9a31a 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.13.1", + "version": "5.14.0", "description": "The plotly Jupyter extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/python/plotly/plotly/_widget_version.py b/packages/python/plotly/plotly/_widget_version.py index 7c6bc3ceaa6..4719145de23 100644 --- a/packages/python/plotly/plotly/_widget_version.py +++ b/packages/python/plotly/plotly/_widget_version.py @@ -2,4 +2,4 @@ # for automated dev builds # # It is edited by hand prior to official releases -__frontend_version__ = "^5.13.1" +__frontend_version__ = "^5.14.0" From ac674ef4a0370d27f32f75100c9118b929a51239 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Tue, 28 Mar 2023 11:08:34 -0400 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73d6fbdf7bb..0e6ceb0acb9 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.14.1 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.14.0 @jupyter-widgets/jupyterlab-manager ``` Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab. From ab8687da27d7aa68757a2cb645e38eaf73e53b71 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Tue, 28 Mar 2023 11:37:47 -0400 Subject: [PATCH 3/4] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 439e1faa667..f2afe193748 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Key errors no longer precalculated when performing updates on plots [[#4101](https://github.com/plotly/plotly.py/pull/4101)] ### Fixed -- Fixed an issue with characters displaying incorrectly, by adding `charset="utf-8"` to scripts in `to_html`[[#4114](https://github.com/plotly/plotly.py/pull/4114)] +- Fixed an issue with characters displaying incorrectly, by adding `charset="utf-8"` to scripts in `to_html` [[#4114](https://github.com/plotly/plotly.py/pull/4114)] - Added `packaging` to install requirements, fixing a `No module named 'packaging` error on Python 3.6 [[#4113](https://github.com/plotly/plotly.py/pull/4113)] ### Added From 31e97dc6a62131bb9b33cc3cbcb77f40dcf4cb15 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Wed, 29 Mar 2023 10:00:15 -0400 Subject: [PATCH 4/4] fix date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2afe193748..1efe6a315d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [5.14.0] - 2023-03-28 +## [5.14.0] - 2023-03-29 ### Updated - Updated Plotly.js to from version 2.18.2 to version 2.20.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2200----2023-03-15) for more information. Notable changes include: