Skip to content

Support for config-aware relative paths #1070

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b89c85b
artifacts
Aug 27, 2019
cdbf2be
Merge remote-tracking branch 'origin/dev'
Sep 17, 2019
5b30bad
Merge remote-tracking branch 'origin/dev'
Sep 19, 2019
d42846d
Merge remote-tracking branch 'origin/dev'
Oct 8, 2019
99a66aa
update build artifacts
Oct 8, 2019
9d080d9
bump dash version to 1.4.0
Oct 8, 2019
619ed99
Merge remote-tracking branch 'origin/dev'
Oct 8, 2019
8fc89e6
Merge remote-tracking branch 'origin/dev'
Oct 17, 2019
74b4c2e
build 1.1.2
Oct 17, 2019
4446ea8
Merge remote-tracking branch 'origin/dev'
Oct 29, 2019
5fd4e71
update build
Oct 29, 2019
6150ec5
Merge remote-tracking branch 'origin/dev'
Oct 30, 2019
041ab38
Merge remote-tracking branch 'origin/dev'
Nov 4, 2019
079a8b4
Merge remote-tracking branch 'origin/dev'
Nov 14, 2019
8202224
strict versions
Nov 14, 2019
904f0e3
Merge remote-tracking branch 'origin/dev'
Nov 27, 2019
2d4fee4
Update CODEOWNERS (#1032)
Marc-Andre-Rivet Nov 29, 2019
82156b9
remove unnecessary plotly.js external from renderer webpack config
alexcjohnson Dec 2, 2019
4f3141b
:hocho: raw-loader - just turn werkzeug css into a js string
alexcjohnson Dec 2, 2019
4c655a0
:hocho: uniqid
alexcjohnson Dec 2, 2019
e477155
pull in checkPropTypes
alexcjohnson Dec 2, 2019
0b4a2d7
changelog for build simplification
alexcjohnson Dec 2, 2019
0e6ac07
update checkPropTypes comments
alexcjohnson Dec 2, 2019
eea1038
fix #1014 - test for no_update by type rather than identity
alexcjohnson Dec 4, 2019
be492fb
changelog for no_update cache fix
alexcjohnson Dec 4, 2019
fccc5dd
:sparkles: async/dynamic support in R pkg deps
Dec 8, 2019
08b8b16
Revert ":sparkles: async/dynamic support in R pkg deps"
Dec 8, 2019
4b83c52
Fix display of stack traces within RStudio's viewer pane (#996)
rpkyle Dec 9, 2019
393c91d
Fix test regressions related to dcc.Graph changes (#1066)
Marc-Andre-Rivet Jan 6, 2020
2d0742e
R package generator improvements + async support (#1048)
rpkyle Jan 7, 2020
cba1bbb
:link: get_relative_path
chriddyp Jan 7, 2020
2a1624d
:see_no_evil: stale commit
chriddyp Jan 7, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence
* @alexcjohnson @byronz @Marc-Andre-Rivet
* @alexcjohnson @Marc-Andre-Rivet

_r_* @alexcjohnson @byronz @Marc-Andre-Rivet @rpkyle
_r_* @alexcjohnson @Marc-Andre-Rivet @rpkyle
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Changed
- [#1035](https://github.com/plotly/dash/pull/1035) Simplify our build process.

### Fixed
- [#1037](https://github.com/plotly/dash/pull/1037) Fix no_update test to allow copies, such as those stored and retrieved from a cache.

## [1.7.0] - 2019-11-27
### Added
- [#967](https://github.com/plotly/dash/pull/967) Add support for defining
Expand Down
55 changes: 55 additions & 0 deletions dash-renderer/dash_renderer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import sys

__file__
__version__ = "1.2.2"

_js_dist_dependencies = [
{
"external_url": {
"prod": [
"https://unpkg.com/@babel/[email protected]/dist/polyfill.min.js",
"https://unpkg.com/[email protected]/umd/react.production.min.js",
"https://unpkg.com/[email protected]/umd/react-dom.production.min.js",
"https://unpkg.com/[email protected]/prop-types.min.js",
],
"dev": [
"https://unpkg.com/@babel/[email protected]/dist/polyfill.min.js",
"https://unpkg.com/[email protected]/umd/react.development.js",
"https://unpkg.com/[email protected]/umd/react-dom.development.js",
"https://unpkg.com/[email protected]/prop-types.js",
],
},
"relative_package_path": {
"prod": [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
],
"dev": [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
],
},
"namespace": "dash_renderer",
}
]


_js_dist = [
{
"relative_package_path": "{}.min.js".format(__name__),
"dev_package_path": "{}.dev.js".format(__name__),
"external_url": "https://unpkg.com/[email protected]"
"/dash_renderer/dash_renderer.min.js",
"namespace": "dash_renderer",
},
{
"relative_package_path": "{}.min.js.map".format(__name__),
"dev_package_path": "{}.dev.js.map".format(__name__),
"namespace": "dash_renderer",
"dynamic": True,
},
]
Loading