@socketsecurity/cli 0.14.131 → 0.14.132
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/shadow-npm-inject.js +7 -2
- package/dist/shadow-npm-inject.js.map +1 -1
- package/package.json +1 -1
|
@@ -662,7 +662,7 @@ async function setupSdk(
|
|
|
662
662
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_NAME']".
|
|
663
663
|
name: 'socket',
|
|
664
664
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
665
|
-
version: '0.14.
|
|
665
|
+
version: '0.14.132',
|
|
666
666
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_HOMEPAGE']".
|
|
667
667
|
homepage: 'https://github.com/SocketDev/socket-cli'
|
|
668
668
|
})
|
|
@@ -2091,6 +2091,7 @@ async function addArtifactToAlertsMap(artifact, alertsByPkgId, options) {
|
|
|
2091
2091
|
return alertsByPkgId
|
|
2092
2092
|
}
|
|
2093
2093
|
function getCveInfoByAlertsMap(alertsMap, options) {
|
|
2094
|
+
debug.debugLog('getCveInfoByAlertsMap')
|
|
2094
2095
|
const exclude = {
|
|
2095
2096
|
upgradable: true,
|
|
2096
2097
|
...{
|
|
@@ -2122,6 +2123,10 @@ function getCveInfoByAlertsMap(alertsMap, options) {
|
|
|
2122
2123
|
}
|
|
2123
2124
|
const { firstPatchedVersionIdentifier, vulnerableVersionRange } =
|
|
2124
2125
|
alert.props
|
|
2126
|
+
debug.debugLog({
|
|
2127
|
+
firstPatchedVersionIdentifier,
|
|
2128
|
+
vulnerableVersionRange
|
|
2129
|
+
})
|
|
2125
2130
|
infos.push({
|
|
2126
2131
|
firstPatchedVersionIdentifier,
|
|
2127
2132
|
vulnerableVersionRange: new vendor.semverExports.Range(
|
|
@@ -2631,5 +2636,5 @@ exports.supportedConfigKeys = supportedConfigKeys
|
|
|
2631
2636
|
exports.updateConfigValue = updateConfigValue
|
|
2632
2637
|
exports.updateNode = updateNode
|
|
2633
2638
|
exports.updatePackageJsonFromNode = updatePackageJsonFromNode
|
|
2634
|
-
//# debugId=
|
|
2639
|
+
//# debugId=23ca00a1-6f09-4c44-97cd-9cf09c24625a
|
|
2635
2640
|
//# sourceMappingURL=shadow-npm-inject.js.map
|