Skip to content

Commit 91cd0cd

Browse files
committed
updated CHANGELOG.md
1 parent 1fe99dc commit 91cd0cd

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).
44

55
## [Unreleased]
66

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+
717
### Changed
818
- [#1876](https://github.com/plotly/dash/pull/1876) Delays finalizing `Dash.config` attributes not used in the constructor until `init_app()`.
919
- [#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:

dash/dash.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,9 +424,6 @@ def __init__(
424424

425425
self.logger.setLevel(logging.INFO)
426426

427-
def _get_config(self):
428-
return self.config
429-
430427
def init_app(self, app=None, **kwargs):
431428
"""Initialize the parts of Dash that require a flask app."""
432429

0 commit comments

Comments
 (0)