diff --git a/CHANGELOG.md b/CHANGELOG.md index 6566d3d0d6..8a32eba3b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.32.1 - 2018-12-07 +## Changed +- Muted dash related missing props docstring from extract-meta warnings [#484](https://github.com/plotly/dash/pull/484) + ## 0.32.0 - 2018-12-07 ## Added - Support for .map file extension and dynamic (on demand) loading [#478](https://github.com/plotly/dash/pull/478) diff --git a/dash/extract-meta.js b/dash/extract-meta.js index 8394bcfeed..f61b74118d 100644 --- a/dash/extract-meta.js +++ b/dash/extract-meta.js @@ -36,7 +36,8 @@ function writeError(msg, filePath) { } function checkWarn(name, value) { - if (value.length < 1) { + const excluded = ['setProps', 'id', 'className', 'style', 'dashEvents', 'fireEvent']; + if (value.length < 1 && !excluded.includes(name)) { process.stderr.write(`\nDescription for ${name} is missing!\n`) } } diff --git a/dash/version.py b/dash/version.py index 2ef0c52ebf..68c3b13266 100644 --- a/dash/version.py +++ b/dash/version.py @@ -1 +1 @@ -__version__ = '0.32.0' +__version__ = '0.32.1'