Skip to content

Commit 1ba1275

Browse files
authored
dash 1.19.0 dev to master (#1537)
1 parent 1cc7b3e commit 1ba1275

File tree

69 files changed

+1695
-1504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1695
-1504
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
artifacts:
1515
docker:
16-
- image: circleci/python:3.7.6-stretch-node-browsers
16+
- image: circleci/python:3.7.9-stretch-node-browsers
1717
auth:
1818
username: dashautomation
1919
password: $DASH_PAT_DOCKERHUB
@@ -33,7 +33,7 @@ jobs:
3333
lint-unit-37: &lint-unit
3434
working_directory: ~/dash
3535
docker:
36-
- image: circleci/python:3.7.6-stretch-node-browsers
36+
- image: circleci/python:3.7.9-stretch-node-browsers
3737
auth:
3838
username: dashautomation
3939
password: $DASH_PAT_DOCKERHUB
@@ -73,7 +73,7 @@ jobs:
7373
lint-unit-36:
7474
<<: *lint-unit
7575
docker:
76-
- image: circleci/python:3.6.9-stretch-node-browsers
76+
- image: circleci/python:3.6.12-stretch-node-browsers
7777
auth:
7878
username: dashautomation
7979
password: $DASH_PAT_DOCKERHUB
@@ -95,7 +95,7 @@ jobs:
9595
build-core-37: &build-core
9696
working_directory: ~/dash
9797
docker:
98-
- image: circleci/python:3.7.6-stretch-node-browsers
98+
- image: circleci/python:3.7.9-stretch-node-browsers
9999
auth:
100100
username: dashautomation
101101
password: $DASH_PAT_DOCKERHUB
@@ -133,7 +133,7 @@ jobs:
133133
build-core-36:
134134
<<: *build-core
135135
docker:
136-
- image: circleci/python:3.6.9-stretch-node-browsers
136+
- image: circleci/python:3.6.12-stretch-node-browsers
137137
auth:
138138
username: dashautomation
139139
password: $DASH_PAT_DOCKERHUB
@@ -153,7 +153,7 @@ jobs:
153153
build-misc-37: &build-misc
154154
working_directory: ~/dash
155155
docker:
156-
- image: circleci/python:3.7.6-stretch-node-browsers
156+
- image: circleci/python:3.7.9-stretch-node-browsers
157157
auth:
158158
username: dashautomation
159159
password: $DASH_PAT_DOCKERHUB
@@ -192,7 +192,7 @@ jobs:
192192
build-misc-36:
193193
<<: *build-misc
194194
docker:
195-
- image: circleci/python:3.6.9-stretch-node-browsers
195+
- image: circleci/python:3.6.12-stretch-node-browsers
196196
auth:
197197
username: dashautomation
198198
password: $DASH_PAT_DOCKERHUB
@@ -341,7 +341,7 @@ jobs:
341341
test-37: &test
342342
working_directory: ~/dash
343343
docker:
344-
- image: circleci/python:3.7.6-stretch-node-browsers
344+
- image: circleci/python:3.7.9-stretch-node-browsers
345345
auth:
346346
username: dashautomation
347347
password: $DASH_PAT_DOCKERHUB
@@ -386,7 +386,7 @@ jobs:
386386
test-36:
387387
<<: *test
388388
docker:
389-
- image: circleci/python:3.6.9-stretch-node-browsers
389+
- image: circleci/python:3.6.12-stretch-node-browsers
390390
auth:
391391
username: dashautomation
392392
password: $DASH_PAT_DOCKERHUB

.github/pull_request_template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
### optionals
1212

1313
- [ ] I have added entry in the `CHANGELOG.md`
14-
- [ ] If this PR needs a follow-up in **dash docs**, **community thread**, I have mentioned the relevant URLS as follow
15-
- [ ] this github [#PR number]() updates the dash docs
16-
- [ ] here is the show and tell thread in plotly dash community
14+
- [ ] If this PR needs a follow-up in **dash docs**, **community thread**, I have mentioned the relevant URLS as follows
15+
- [ ] this GitHub [#PR number]() updates the dash docs
16+
- [ ] here is the show and tell thread in Plotly Dash community

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ disable=fixme,
6161
old-style-class,
6262
superfluous-parens,
6363
bad-continuation,
64-
line-too-long
64+
line-too-long,
65+
bad-option-value
6566

6667

6768
# Enable the message, report, category or checker with the given id(s). You can

.pylintrc37

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,10 @@ disable=invalid-name,
149149
too-many-lines,
150150
too-many-statements,
151151
bad-continuation,
152-
line-too-long
152+
line-too-long,
153+
super-with-arguments,
154+
raise-missing-from,
155+
bad-option-value
153156

154157
# Enable the message, report, category or checker with the given id(s). You can
155158
# either give multiple identifier separated by comma (,) or put this option

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [1.19.0] - 2021-01-19
6+
7+
## Dash and Dash Renderer
8+
### Added
9+
- [#1508](https://github.com/plotly/dash/pull/1508) Fix [#1403](https://github.com/plotly/dash/issues/1403): Adds an x button
10+
to close the error messages box.
11+
- [#1525](https://github.com/plotly/dash/pull/1525) Adds support for callbacks which have overlapping inputs and outputs. Combined with `dash.callback_context` this addresses many use cases which require circular callbacks.
12+
13+
### Changed
14+
- [#1503](https://github.com/plotly/dash/pull/1506) Fix [#1466](https://github.com/plotly/dash/issues/1466): loosen `dash[testing]` requirements for easier integration in external projects. This PR also bumps many `dash[dev]` requirements.
15+
16+
### Fixed
17+
- [#1530](https://github.com/plotly/dash/pull/1530) Dedent error messages more carefully.
18+
- [#1527](https://github.com/plotly/dash/issues/1527)🐛 `get_asset_url` now pulls from an external source if `assets_external_path` is set.
19+
- updated `_add_assets_resource` to build asset urls the same way as `get_asset_url`.
20+
- 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.
21+
- [#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"
22+
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+
545
## [1.18.1] - 2020-12-09
646

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

dash-renderer/dash_renderer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

33
__file__
4-
__version__ = "1.8.3"
4+
__version__ = "1.9.0"
55

66
_js_dist_dependencies = [
77
{
@@ -42,7 +42,7 @@
4242
{
4343
"relative_package_path": "{}.min.js".format(__name__),
4444
"dev_package_path": "{}.dev.js".format(__name__),
45-
"external_url": "https://unpkg.com/dash-renderer@1.8.3"
45+
"external_url": "https://unpkg.com/dash-renderer@1.9.0"
4646
"/dash_renderer/dash_renderer.min.js",
4747
"namespace": "dash_renderer",
4848
},

0 commit comments

Comments
 (0)