Skip to content
Snippets Groups Projects
Unverified Commit b9b87121 authored by Mark Gibbs's avatar Mark Gibbs Committed by GitHub
Browse files

Insert stub function for backwards compatibility (#320)


* Insert stub function for backwards compatibility

* Add CHANGELOG and update version

Co-authored-by: default avatarMark Gibbs <mark@gibbs.consulting>
parent cddf5755
No related branches found
No related tags found
No related merge requests found
# Change log for django-plotly-dash
All notable changes should be documented in this file.
## [1.6.1] - 2021-02-06
Added a stub for `use_dash_dispatch` for backwards compatibility.
[PR](https://github.com/GibbsConsulting/django-plotly-dash/pull/320)
Handle state management for wildcard arguments.
https://github.com/GibbsConsulting/django-plotly-dash/pull/316
Enable forwarding of extra arguments to DjangoDash constructor
https://github.com/GibbsConsulting/django-plotly-dash/pull/312
...@@ -435,6 +435,15 @@ class WrappedDash(Dash): ...@@ -435,6 +435,15 @@ class WrappedDash(Dash):
self._return_embedded = False self._return_embedded = False
def use_dash_dispatch(self):
"""Return True if underlying dash dispatching should be used.
This stub is present to allow older code to work. Following PR #304
(see https://github.com/GibbsConsulting/django-plotly-dash/pull/304/files for
details) this function is no longer needed and therefore should always
return False"""
return False
def use_dash_layout(self): def use_dash_layout(self):
''' '''
Indicate if the underlying dash layout can be used. Indicate if the underlying dash layout can be used.
......
...@@ -23,4 +23,4 @@ SOFTWARE. ...@@ -23,4 +23,4 @@ SOFTWARE.
''' '''
__version__ = "1.6.0" __version__ = "1.6.1"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment