Skip to content

Commit 2e42340

Browse files
authored
Merge branch 'dev' into update-docstrings
2 parents fa8c762 + 8edc339 commit 2e42340

File tree

6 files changed

+43
-35
lines changed

6 files changed

+43
-35
lines changed

.circleci/config.yml

Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -409,28 +409,20 @@ workflows:
409409
version: 2
410410
python3.7:
411411
jobs:
412-
- lint-unit-37:
413-
context: dash-docker-hub
414-
- build-core-37:
415-
context: dash-docker-hub
416-
- build-windows-37:
417-
context: dash-docker-hub
418-
- build-misc-37:
419-
context: dash-docker-hub
420-
- build-dashr:
421-
context: dash-docker-hub
412+
- lint-unit-37
413+
- build-core-37
414+
- build-windows-37
415+
- build-misc-37
416+
- build-dashr
422417
- test-37:
423-
context: dash-docker-hub
424418
requires:
425419
- build-core-37
426420
- build-misc-37
427421
- percy-finalize:
428-
context: dash-docker-hub
429422
requires:
430423
- build-dashr
431424
- test-37
432425
- artifacts:
433-
context: dash-docker-hub
434426
requires:
435427
- percy-finalize
436428
filters:
@@ -443,27 +435,19 @@ workflows:
443435

444436
python3.6:
445437
jobs:
446-
- lint-unit-36:
447-
context: dash-docker-hub
448-
- build-core-36:
449-
context: dash-docker-hub
450-
- build-misc-36:
451-
context: dash-docker-hub
438+
- lint-unit-36
439+
- build-core-36
440+
- build-misc-36
452441
- test-36:
453-
context: dash-docker-hub
454442
requires:
455443
- build-core-36
456444
- build-misc-36
457445
python2.7:
458446
jobs:
459-
- lint-unit-27:
460-
context: dash-docker-hub
461-
- build-core-27:
462-
context: dash-docker-hub
463-
- build-misc-27:
464-
context: dash-docker-hub
447+
- lint-unit-27
448+
- build-core-27
449+
- build-misc-27
465450
- test-27:
466-
context: dash-docker-hub
467451
requires:
468452
- build-core-27
469453
- build-misc-27

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.9.0
5+
dash-core-components==1.15.0
6+
dash-html-components==1.1.2
7+
dash-table==4.11.2
88
future

0 commit comments

Comments
 (0)