New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

citizen

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

citizen - npm Package Compare versions

Comparing version 0.6.8 to 0.6.9

4

CHANGELOG.txt

@@ -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' ) {

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc