Skip to content

Commit

Permalink
Dash for R v0.6.3 (#213)
Browse files Browse the repository at this point in the history
This release upgrades dash-renderer from v1.4.1 to v1.5.1, and is timed with the release of Dash for Python v1.13.4. This update also addresses a regression that prevented multiple loading states from displaying concurrently when a callback updates multiple outputs, as noted in [plotly/dash#1310](plotly/dash#1310).
  • Loading branch information
rpkyle authored Jun 25, 2020
1 parent 71c5c58 commit 3408f69
Show file tree
Hide file tree
Showing 10 changed files with 3,058 additions and 1,854 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.6.3] - 2020-06-25
### Fixed
- Resolves a regression that prevented multiple loading states from displaying concurrently when a callback updates multiple outputs (for more details, see [#1310](https://github.com/plotly/dash/pull/1310)).

## [0.6.2] - 2020-06-19
### Fixed
- Dash for R now depends on v4.8.1 of `dashTable`, which fixes a bug where headers are unaligned with columns following an update (for more details, see [#797](https://github.com/plotly/dash-table/issues/797)).
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dash
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications
Version: 0.6.2
Version: 0.6.3
Authors@R: c(person("Chris", "Parmer", role = c("aut"), email = "[email protected]"), person("Ryan Patrick", "Kyle", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5829-9867"), email = "[email protected]"), person("Carson", "Sievert", role = c("aut"), comment = c(ORCID = "0000-0002-4958-2844")), person("Hammad", "Khan", role = c("aut"), email = "[email protected]"), person(family = "Plotly Technologies", role = "cph"))
Description: A framework for building analytical web applications, Dash offers a pleasant and productive development experience. No JavaScript required.
Depends:
Expand Down
24 changes: 12 additions & 12 deletions R/internal.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
all_files = FALSE),
class = "html_dependency"),
`dash-renderer-dev` = structure(list(name = "dash-renderer",
version = "1.4.1",
src = list(href = "https://unpkg.com/dash-renderer@1.4.1",
file = "lib/dash-renderer@1.4.1"),
version = "1.5.1",
src = list(href = "https://unpkg.com/dash-renderer@1.5.1",
file = "lib/dash-renderer@1.5.1"),
meta = NULL,
script = "dash-renderer/dash_renderer.dev.js",
stylesheet = NULL,
Expand All @@ -48,9 +48,9 @@
all_files = FALSE),
class = "html_dependency"),
`dash-renderer-map-dev` = structure(list(name = "dash-renderer",
version = "1.4.1",
src = list(href = "https://unpkg.com/dash-renderer@1.4.1",
file = "lib/dash-renderer@1.4.1"),
version = "1.5.1",
src = list(href = "https://unpkg.com/dash-renderer@1.5.1",
file = "lib/dash-renderer@1.5.1"),
meta = NULL,
script = "dash-renderer/dash_renderer.dev.js.map",
stylesheet = NULL,
Expand All @@ -60,9 +60,9 @@
all_files = FALSE),
class = "html_dependency"),
`dash-renderer-prod` = structure(list(name = "dash-renderer",
version = "1.4.1",
src = list(href = "https://unpkg.com/dash-renderer@1.4.1",
file = "lib/dash-renderer@1.4.1"),
version = "1.5.1",
src = list(href = "https://unpkg.com/dash-renderer@1.5.1",
file = "lib/dash-renderer@1.5.1"),
meta = NULL,
script = "dash-renderer/dash_renderer.min.js",
stylesheet = NULL,
Expand All @@ -72,9 +72,9 @@
all_files = FALSE),
class = "html_dependency"),
`dash-renderer-map-prod` = structure(list(name = "dash-renderer",
version = "1.4.1",
src = list(href = "https://unpkg.com/dash-renderer@1.4.1",
file = "lib/dash-renderer@1.4.1"),
version = "1.5.1",
src = list(href = "https://unpkg.com/dash-renderer@1.5.1",
file = "lib/dash-renderer@1.5.1"),
meta = NULL,
script = "dash-renderer/dash_renderer.min.js.map",
stylesheet = NULL,
Expand Down

This file was deleted.

20 changes: 0 additions & 20 deletions inst/lib/[email protected]/dash-renderer/dash_renderer.min.js

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3408f69

Please sign in to comment.