Comparing version 0.6.8 to 0.6.9
@@ -0,1 +1,5 @@ | ||
[0.6.9] | ||
* Added listen() skip and end events to the readme. | ||
* Methods skipped in listen() by a previous method throwing an error now have their statuses correctly set to "skipped" in output.listen.status | ||
[0.6.8] | ||
@@ -2,0 +6,0 @@ * The listen() error event has been returned to its previous behavior of throwing its own error. Without this, debugging is pretty much impossible. citizen's behavior remains the same, however (errors are not allowed to bubble up to the node process, so the app doesn't crash). You should still be using listen.success and listen.status to handle errors properly though. |
@@ -995,2 +995,7 @@ // core framework functions that might also be of use in the app | ||
success = false; | ||
for ( var propppp in status ) { | ||
if ( status[propppp] === 'waiting' || status[propppp] === 'called' ) { | ||
status[propppp] = 'skipped'; | ||
} | ||
} | ||
break; | ||
@@ -997,0 +1002,0 @@ } else if ( status[proppp] === 'waiting' || status[proppp] === 'called' ) { |
{ | ||
"name": "citizen", | ||
"version": "0.6.8", | ||
"version": "0.6.9", | ||
"description": "A server-side MVC and caching framework for Node.js web applications.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
268301
3578
3089