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

node-cls

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-cls - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

2

CHANGELOG.md
## Release notes
__1.0.5__
Bugfix for start().
__1.0.4__

@@ -3,0 +5,0 @@ No longer using recursion internally. This could potentially lead to "Maximum call stack size exceeded".

5

index-core.js

@@ -104,4 +104,4 @@ let fs = require('fs');

log(`exit ${ asyncId}`);
let parentId = stack[asyncId].parent;
let parent = stack[parentId];
asyncId = stack[asyncId].parent;
let parent = stack[asyncId];
if (parent) {

@@ -112,3 +112,2 @@ if (parent.contexts[ns] === context)

return;
asyncId = parentId;
}

@@ -115,0 +114,0 @@ }

{
"name": "node-cls",
"version": "1.0.4",
"version": "1.0.5",
"description": "Continuation Local Storage based on async_hooks",

@@ -5,0 +5,0 @@ "main": "index.js",

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