Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fusebit/everyauth-express

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fusebit/everyauth-express - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

11

libc/profile.js

@@ -89,5 +89,5 @@ "use strict";

}
// Recursively look upwards for a `.fusebit` directory
// Recursively look upwards for a `.fusebit` directory until the top-most directory is reached.
let settingsDir = '.';
while (settingsDir != '/') {
while (true) {
try {

@@ -100,3 +100,8 @@ exports.cachedFoundProfile = await loadProfileFromDisk(path.join(settingsDir, '.fusebit'), profileName);

}
settingsDir = path.resolve(path.join(settingsDir, '..'));
// Make sure the parent directory is a different directory.
const parentDir = path.resolve(path.join(settingsDir, '..'));
if (parentDir === settingsDir) {
break;
}
settingsDir = parentDir;
}

@@ -103,0 +108,0 @@ throw new Error(`No ${settingsName} found in this tree.`);

@@ -55,5 +55,7 @@ "use strict";

if (userId) {
// eslint-disable-next-line security/detect-object-injection
payload.tags[constants_1.USER_TAG] = userId;
}
if (tenantId) {
// eslint-disable-next-line security/detect-object-injection
payload.tags[constants_1.TENANT_TAG] = tenantId;

@@ -60,0 +62,0 @@ }

{
"name": "@fusebit/everyauth-express",
"version": "2.1.0",
"version": "2.1.1",
"description": "EveryAuth is the easiest way for your app to access APIs like Slack, Salesforce, or Github.",

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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