File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).
4
4
5
5
## [Unreleased]
6
6
7
+ ### Added
8
+ - [#1923](https://github.com/plotly/dash/pull/1923):
9
+ - `dash.get_relative_path`
10
+ - `dash.strip_relative_path`
11
+ - `dash.get_asset_url`
12
+ This is similar to `dash.callback` where you don't need the `app` object. It makes it possible to use these
13
+ functions in the `pages` folder of a multi-page app without running into the circular `app` imports issue.
14
+
15
+ ## [2.1.0] - 2022-01-22
16
+
7
17
### Changed
8
18
- [#1876](https://github.com/plotly/dash/pull/1876) Delays finalizing `Dash.config` attributes not used in the constructor until `init_app()`.
9
19
- [#1869](https://github.com/plotly/dash/pull/1869), [#1873](https://github.com/plotly/dash/pull/1873) Upgrade Plotly.js to v2.8.3. This includes:
Original file line number Diff line number Diff line change @@ -424,9 +424,6 @@ def __init__(
424
424
425
425
self .logger .setLevel (logging .INFO )
426
426
427
- def _get_config (self ):
428
- return self .config
429
-
430
427
def init_app (self , app = None , ** kwargs ):
431
428
"""Initialize the parts of Dash that require a flask app."""
432
429
You can’t perform that action at this time.
0 commit comments