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

@locker/shared-url

Package Overview
Dependencies
Maintainers
6
Versions
241
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@locker/shared-url - npm Package Compare versions

Comparing version

to
0.13.5

5

dist/index.cjs.js

@@ -38,6 +38,7 @@ /**

}
const DISALLOWED_ENDPOINTS = ['/aura', '/webruntime'];
// TODO [W-7302311] Make paths and domains configurable
function isInvalidURL(parsedURL) {
const pathname = shared.StringToLowerCase(parsedURL.pathname);
return shared.StringIncludes(pathname, '/aura');
return shared.ArraySome(DISALLOWED_ENDPOINTS, (dep) => shared.StringIncludes(pathname, dep));
}

@@ -51,2 +52,2 @@

exports.sanitizeURLString = sanitizeURLString;
/** version: 0.13.4 */
/** version: 0.13.5 */

7

dist/index.js
/**
* Copyright (C) 2019 salesforce.com, inc.
*/
import { ReflectGetOwnPropertyDescriptor, ObjectLookupOwnGetter, ReflectApply, ArrayIncludes, emptyArray, StringReplace, StringToLowerCase, StringIncludes } from '@locker/shared';
import { ReflectGetOwnPropertyDescriptor, ObjectLookupOwnGetter, ReflectApply, ArrayIncludes, emptyArray, StringReplace, StringToLowerCase, ArraySome, StringIncludes } from '@locker/shared';
import { DocumentCreateElement } from '@locker/shared-dom';

@@ -34,9 +34,10 @@

}
const DISALLOWED_ENDPOINTS = ['/aura', '/webruntime'];
// TODO [W-7302311] Make paths and domains configurable
function isInvalidURL(parsedURL) {
const pathname = StringToLowerCase(parsedURL.pathname);
return StringIncludes(pathname, '/aura');
return ArraySome(DISALLOWED_ENDPOINTS, (dep) => StringIncludes(pathname, dep));
}
export { TRUSTED_DOMAINS, isInvalidURL, isValidURLScheme, parseURL, sanitizeURLForElement, sanitizeURLString };
/** version: 0.13.4 */
/** version: 0.13.5 */
{
"name": "@locker/shared-url",
"version": "0.13.4",
"version": "0.13.5",
"license": "Salesforce Developer Agreement",

@@ -22,6 +22,6 @@ "author": "Salesforce UI Security Team",

"dependencies": {
"@locker/shared": "0.13.4",
"@locker/shared-dom": "0.13.4"
"@locker/shared": "0.13.5",
"@locker/shared-dom": "0.13.5"
},
"gitHead": "31774f28eb975d639ee188ad9a7101919b731b39"
"gitHead": "213b7ea798dd4a01891a5b5ead2cff46f6db5600"
}

Sorry, the diff of this file is not supported yet