Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
bump version to 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-André Rivet committed May 15, 2019
1 parent 4744414 commit cc07b9b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.24.0] - 2019-05-15
### Fixed
- Fix regression on handling PreventUpdate (204 NO CONTENT) [#170](https://github.com/plotly/dash-renderer/pull/170)

Expand Down
11 changes: 8 additions & 3 deletions dash_renderer/dash_renderer.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -38368,13 +38368,18 @@ function updateOutput(outputIdAndProp, getState, requestUid, dispatch, changedPr
// update the status of this request
updateRequestQueue(true, res.status);

/*
* This is a 204 response code, there's no content to process.
*/
if (res.status === STATUS.PREVENT_UPDATE) {
return;
}

/*
* eject into `catch` handler below to display error
* message in ui
*/
if (res.status !== STATUS.PREVENT_UPDATE) {
throw res;
}
throw res;
}

/*
Expand Down
2 changes: 1 addition & 1 deletion dash_renderer/dash_renderer.dev.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_renderer/dash_renderer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_renderer/dash_renderer.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_renderer/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.23.0'
__version__ = '0.24.0'
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-renderer",
"version": "0.23.0",
"version": "0.24.0",
"description": "render dash components in react",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit cc07b9b

Please sign in to comment.