Skip to content

Commit 29fb8e0

Browse files
authored
[prerelease] dash 1.19.0 (#1535)
* bump dash v1.19.0, bump renderer v1.9.0, loosen versions, update changelog
1 parent cc1b13e commit 29fb8e0

File tree

5 files changed

+32
-8
lines changed

5 files changed

+32
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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+
## [1.19.0] - 2021-01-19
6+
7+
## Dash and Dash Renderer
68
### Added
79
- [#1508](https://github.com/plotly/dash/pull/1508) Fix [#1403](https://github.com/plotly/dash/issues/1403): Adds an x button
810
to close the error messages box.
@@ -18,6 +20,28 @@ to close the error messages box.
1820
- updated doc string for `assets_external_path` Dash argument to be more clear that it will allways be joined with the `assets_url_path` argument when determining the url to an external asset.
1921
- [#1493](https://github.com/plotly/dash/pull/1493) Fix [#1143](https://github.com/plotly/dash/issues/1143), a bug where having a file with one of several common names (test.py, code.py, org.py, etc) that imports a dash component package would make `import dash` fail with a cryptic error message asking whether you have a file named "dash.py"
2022

23+
## Dash Core Components
24+
### Fixed
25+
- [#905](https://github.com/plotly/dash-core-components/pull/905) Make sure the `figure` prop of `dcc.Graph` receives updates from user interactions in the graph, by using the same `layout` object as provided in the prop rather than cloning it. Fixes [#879](https://github.com/plotly/dash-core-components/issues/879).
26+
- [#903](https://github.com/plotly/dash-core-components/pull/903) Part of fixing dash import bug https://github.com/plotly/dash/issues/1143
27+
28+
### Updated
29+
- [#911](https://github.com/plotly/dash-core-components/pull/911), [#906](https://github.com/plotly/dash-core-components/pull/906)
30+
- Upgraded Plotly.js to [1.58.4](https://github.com/plotly/plotly.js/releases/tag/v1.58.4)
31+
- Patch Release [1.58.4](https://github.com/plotly/plotly.js/releases/tag/v1.58.4)
32+
- Patch Release [1.58.3](https://github.com/plotly/plotly.js/releases/tag/v1.58.3)
33+
34+
### Added
35+
- [#888](https://github.com/plotly/dash-core-components/pull/888) Adds a `drag_value` prop to `dcc.Slider`to be able to fire callbacks from dragging and releasing the slider.
36+
37+
## Dash HTML Components
38+
### Fixed
39+
- [#169](https://github.com/plotly/dash-html-components/pull/169) - part of fixing dash import bug https://github.com/plotly/dash/issues/1143
40+
41+
## Dash Table
42+
### Fixed
43+
- [#854](https://github.com/plotly/dash-table/pull/854) - part of fixing dash import bug https://github.com/plotly/dash/issues/1143
44+
2145
## [1.18.1] - 2020-12-09
2246

2347
## [1.18.0] - 2020-12-07

dash-renderer/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash-renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "1.8.3",
3+
"version": "1.9.0",
44
"description": "render dash components in react",
55
"main": "dash_renderer/dash_renderer.min.js",
66
"scripts": {

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.18.1"
1+
__version__ = "1.19.0"

requires-install.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Flask>=1.0.4
22
flask-compress
33
plotly
4-
dash_renderer==1.8.3
5-
dash-core-components==1.14.1
6-
dash-html-components==1.1.1
7-
dash-table==4.11.1
4+
dash_renderer>=1.8.3
5+
dash-core-components>=1.14.1
6+
dash-html-components>=1.1.1
7+
dash-table>=4.11.1
88
future

0 commit comments

Comments
 (0)