@venncity/nested-config
Advanced tools
Comparing version 3.1.19 to 3.1.20-jest-memory-fixes2.39
{ | ||
"name": "@venncity/nested-config", | ||
"version": "3.1.19", | ||
"version": "3.1.20-jest-memory-fixes2.39+bbecdffca", | ||
"author": "Venn Engineering", | ||
@@ -32,3 +32,3 @@ "main": "src/nestedConfig.js", | ||
"dependencies": { | ||
"@venncity/package-info": "^1.1.63", | ||
"@venncity/package-info": "^1.1.64-jest-memory-fixes2.39+bbecdffca", | ||
"config": "^3.1.0", | ||
@@ -53,3 +53,3 @@ "lodash": "^4.17.11", | ||
}, | ||
"gitHead": "a2b3814145dc03f83e6368cedf6cc8724e19b1fe" | ||
"gitHead": "bbecdffca3e791988956fa8e4ab0992cc9f9d288" | ||
} |
@@ -9,3 +9,4 @@ const cls = require('cls-hooked'); | ||
} | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request')); | ||
const jestWorkerId = process.env.JEST_WORKER_ID || ''; | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request') + jestWorkerId); | ||
return requestNamespace && requestNamespace.get(key); | ||
@@ -15,3 +16,4 @@ } | ||
function setReqV(key, value) { | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request')); | ||
const jestWorkerId = process.env.JEST_WORKER_ID || ''; | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request') + jestWorkerId); | ||
if (requestNamespace) { | ||
@@ -25,3 +27,4 @@ requestNamespace.set(key, value); | ||
function isInRequestContext() { | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request')); | ||
const jestWorkerId = process.env.JEST_WORKER_ID || ''; | ||
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request') + jestWorkerId); | ||
return requestNamespace && requestNamespace.active; | ||
@@ -28,0 +31,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39797
431
2
19
2