From 1f090fee4539f712aee08af0728a91a193f82c01 Mon Sep 17 00:00:00 2001 From: philippe Date: Mon, 6 Jun 2022 16:05:36 -0400 Subject: [PATCH] Dash 2.5.0 version bumps --- CHANGELOG.md | 26 +++++++++---------- .../dash-core-components/package-lock.json | 4 +-- components/dash-core-components/package.json | 2 +- components/dash-table/package-lock.json | 4 +-- components/dash-table/package.json | 2 +- dash/_dash_renderer.py | 2 +- dash/dash-renderer/package.json | 2 +- dash/version.py | 2 +- 8 files changed, 21 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aec19f1a86..57cd08765d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,28 +2,26 @@ All notable changes to `dash` will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). -## [Unreleased] +## [2.5.0] - 2022-06-06 -### Fixed +### Added -- [#2043](https://github.com/plotly/dash/pull/2043) Fix bug -[#2003](https://github.com/plotly/dash/issues/2003) in which -`dangerously_allow_html=True` + `mathjax=True` works in some cases, and in some cases not. -- [#2047](https://github.com/plotly/dash/pull/2047) Fix bug [#1979](https://github.com/plotly/dash/issues/1979) in which `DASH_DEBUG` as enviroment variable gets ignored. -- [#2065](https://github.com/plotly/dash/pull/2065) Fix bug [#2064](https://github.com/plotly/dash/issues/2064) rendering of `dcc.Dropdown` with a value but no options. -- [#2070](https://github.com/plotly/dash/pull/2070) Fix bug [#2066](https://github.com/plotly/dash/issues/2066) nested types triggering maximum call stack error when building typescript components. +- [#1947](https://github.com/plotly/dash/pull/1947) Added `pages` - a better way to build multi-page apps. For more information see the [forum post.](https://community.plotly.com/t/introducing-dash-pages-a-dash-2-x-feature-preview/57775) +- [#1965](https://github.com/plotly/dash/pull/1965) Add component as props. +- [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing` ### Changed - [#2050](https://github.com/plotly/dash/pull/2050) Changed `find_element` and `find_elements` to accept an `attribute` argument that aligns with Selenium's `By` class, allowing you to search elements by other attributes. Default value is `CSS_SELECTOR` to maintain backwards compatibility with previous `find_elements`. -### Added - -- [#1947](https://github.com/plotly/dash/pull/1947) Added `pages` - a better way to build multi-page apps. For more information see the [forum post.](https://community.plotly.com/t/introducing-dash-pages-a-dash-2-x-feature-preview/57775) - +### Fixed -- [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing` -- [#1965](https://github.com/plotly/dash/pull/1965) Add component as props. +- [#2043](https://github.com/plotly/dash/pull/2043) Fix bug +[#2003](https://github.com/plotly/dash/issues/2003) in which +`dangerously_allow_html=True` + `mathjax=True` works in some cases, and in some cases not. +- [#2065](https://github.com/plotly/dash/pull/2065) Fix bug [#2064](https://github.com/plotly/dash/issues/2064) rendering of `dcc.Dropdown` with a value but no options. +- [#2047](https://github.com/plotly/dash/pull/2047) Fix bug [#1979](https://github.com/plotly/dash/issues/1979) in which `DASH_DEBUG` as environment variable gets ignored. +- [#2070](https://github.com/plotly/dash/pull/2070) Fix bug [#2066](https://github.com/plotly/dash/issues/2066) nested types triggering maximum call stack error when building typescript components. ## [2.4.1] - 2022-05-11 diff --git a/components/dash-core-components/package-lock.json b/components/dash-core-components/package-lock.json index 70cc3cc4fc..6d3b2c2b8d 100644 --- a/components/dash-core-components/package-lock.json +++ b/components/dash-core-components/package-lock.json @@ -1,12 +1,12 @@ { "name": "dash-core-components", - "version": "2.4.0", + "version": "2.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "dash-core-components", - "version": "2.4.0", + "version": "2.5.0", "license": "MIT", "dependencies": { "@fortawesome/fontawesome-svg-core": "1.2.36", diff --git a/components/dash-core-components/package.json b/components/dash-core-components/package.json index fe9cb7c4e8..b64891f8c4 100644 --- a/components/dash-core-components/package.json +++ b/components/dash-core-components/package.json @@ -1,6 +1,6 @@ { "name": "dash-core-components", - "version": "2.4.0", + "version": "2.5.0", "description": "Core component suite for Dash", "repository": { "type": "git", diff --git a/components/dash-table/package-lock.json b/components/dash-table/package-lock.json index a12e473f3d..8639e6b990 100644 --- a/components/dash-table/package-lock.json +++ b/components/dash-table/package-lock.json @@ -1,12 +1,12 @@ { "name": "dash-table", - "version": "5.1.2", + "version": "5.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "dash-table", - "version": "5.1.2", + "version": "5.1.3", "license": "MIT", "devDependencies": { "@babel/cli": "^7.17.10", diff --git a/components/dash-table/package.json b/components/dash-table/package.json index 6eb2f6ee30..de9b1c1588 100644 --- a/components/dash-table/package.json +++ b/components/dash-table/package.json @@ -1,6 +1,6 @@ { "name": "dash-table", - "version": "5.1.2", + "version": "5.1.3", "description": "Dash table", "repository": { "type": "git", diff --git a/dash/_dash_renderer.py b/dash/_dash_renderer.py index f2942e1e64..36de21cb24 100644 --- a/dash/_dash_renderer.py +++ b/dash/_dash_renderer.py @@ -1,4 +1,4 @@ -__version__ = "1.12.0" +__version__ = "1.13.0" _js_dist_dependencies = [ { diff --git a/dash/dash-renderer/package.json b/dash/dash-renderer/package.json index 08802f9cf1..8855abcf8e 100644 --- a/dash/dash-renderer/package.json +++ b/dash/dash-renderer/package.json @@ -1,6 +1,6 @@ { "name": "dash-renderer", - "version": "1.12.0", + "version": "1.13.0", "description": "render dash components in react", "main": "build/dash_renderer.min.js", "scripts": { diff --git a/dash/version.py b/dash/version.py index 54499df347..50062f87c0 100644 --- a/dash/version.py +++ b/dash/version.py @@ -1 +1 @@ -__version__ = "2.4.1" +__version__ = "2.5.0"