Update: version 1.16 has been released since this was posted.
Dash v1.14.0 is a minor release featuring:
-
Ability to update the
document.title
(the title that appears in your browser tab) via atitle=
argument. By default this is'Dash'
app = dash.Dash(title='Weekly Analytics')
-
Ability to update the
document.title
dynamically when you click on different tabs, navigate different pages, or really during any other interaction! See the Update the Document Title Dynamically based off of the URL or Tab example. -
Ability to update the “Updating…” message that appears in the
document.title
during update via theupdate_title=
argument. Set toNone
to remove this message. This was a community contribution from @stlehmann! See the Customizing or Removing Dash’s “Updating…” Message example in the docs. -
Upgraded Plotly.js from 1.54.3 to 1.54.7
-
Added ability to configure markdown links behavior in DataTable. This fixes a regression introduced with #787 that made it impossible to open markdown links in the current tab. This adds a new property called
markdown_options
:dash_table.DataTable(markdown_options={'link_target': '_self'})
link_target
can be_blank
,_parent
,_self
,_top
or an arbitrary string (default:_blank
)
Give this a release a try with
pip install dash==1.14.0
and let us know how it goes!
Previous Releases
- 📣 Dash v1.13.4 Release: Fixes regression with loading states from callbacks with multiple outputs
- 📣 Dash v1.13.3 Release: Improved performance, clientside callback_context, many dcc.Graph & DataTable bug fixes - #11 by Amazigh
- 📣 Dash v1.12.0 Release - Pattern-Matching Callbacks Fixes, Shape-drawing, new DataTable conditional formatting options, prevent_initial_call, and more - #10 by MM-Lehmann
- 📣 Dash v1.11.0 Release - Introducing Pattern-Matching Callbacks
- 📣 Dash v1.10.0 Release - New dcc.Graph features, updated dcc.Link, React upgrade and bug fixes - #10
- 📣 Dash v1.9.0 release - Bug fixes
- 📣 Dash v1.8.0 release - dcc.Graph updates, markdown & link support in DataTable, and more - #17 by Jialun
- 📣 Dash v1.7.0 released - Async component fixes, inline clientside callbacks, and bug fixes - #15 by Marc-Andre
- 📣 Dash 1.6.0 released - dcc.Graph updates, async performance improvements, improved caching - #5 by mbkupfer