Skip to content

Commit 1f090fe

Browse files
committed
Dash 2.5.0 version bumps
1 parent 48bf177 commit 1f090fe

File tree

8 files changed

+21
-23
lines changed

8 files changed

+21
-23
lines changed

CHANGELOG.md

+12-14
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,26 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5-
## [Unreleased]
5+
## [2.5.0] - 2022-06-06
66

7-
### Fixed
7+
### Added
88

9-
- [#2043](https://github.com/plotly/dash/pull/2043) Fix bug
10-
[#2003](https://github.com/plotly/dash/issues/2003) in which
11-
`dangerously_allow_html=True` + `mathjax=True` works in some cases, and in some cases not.
12-
- [#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.
13-
- [#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.
14-
- [#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.
9+
- [#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)
10+
- [#1965](https://github.com/plotly/dash/pull/1965) Add component as props.
11+
- [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing`
1512

1613
### Changed
1714

1815
- [#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`.
1916

20-
### Added
21-
22-
- [#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)
23-
17+
### Fixed
2418

25-
- [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing`
26-
- [#1965](https://github.com/plotly/dash/pull/1965) Add component as props.
19+
- [#2043](https://github.com/plotly/dash/pull/2043) Fix bug
20+
[#2003](https://github.com/plotly/dash/issues/2003) in which
21+
`dangerously_allow_html=True` + `mathjax=True` works in some cases, and in some cases not.
22+
- [#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.
23+
- [#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.
24+
- [#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.
2725

2826
## [2.4.1] - 2022-05-11
2927

components/dash-core-components/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/dash-core-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

components/dash-table/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/dash-table/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "5.1.2",
3+
"version": "5.1.3",
44
"description": "Dash table",
55
"repository": {
66
"type": "git",

dash/_dash_renderer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.12.0"
1+
__version__ = "1.13.0"
22

33
_js_dist_dependencies = [
44
{

dash/dash-renderer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "1.12.0",
3+
"version": "1.13.0",
44
"description": "render dash components in react",
55
"main": "build/dash_renderer.min.js",
66
"scripts": {

dash/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.4.1"
1+
__version__ = "2.5.0"

0 commit comments

Comments
 (0)