@socketsecurity/cli-with-sentry 0.14.113 → 0.14.114
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/instrument-with-sentry.js +2 -2
- package/dist/instrument-with-sentry.js.map +1 -1
- package/dist/module-sync/cli.js +7 -3
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/shadow-npm-inject.js +2 -2
- package/dist/module-sync/shadow-npm-inject.js.map +1 -1
- package/dist/require/cli.js +7 -3
- package/dist/require/cli.js.map +1 -1
- package/dist/require/shadow-npm-inject.js +2 -2
- package/dist/require/shadow-npm-inject.js.map +1 -1
- package/package.json +1 -1
package/dist/require/cli.js
CHANGED
|
@@ -917,7 +917,7 @@ function emitBanner(name) {
|
|
|
917
917
|
logger.logger.error(getAsciiHeader(name))
|
|
918
918
|
}
|
|
919
919
|
function getAsciiHeader(command) {
|
|
920
|
-
const cliVersion = '0.14.
|
|
920
|
+
const cliVersion = '0.14.114:6709538:d8784340:pub' // The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION_HASH']".
|
|
921
921
|
const nodeVersion = process$1.version
|
|
922
922
|
const apiToken = shadowNpmInject.getDefaultToken()
|
|
923
923
|
const defaultOrg = shadowNpmInject.getConfigValue('defaultOrg')
|
|
@@ -4517,12 +4517,16 @@ async function pnpmFix(
|
|
|
4517
4517
|
firstPatchedVersionIdentifier,
|
|
4518
4518
|
vulnerableVersionRange
|
|
4519
4519
|
} of infos) {
|
|
4520
|
+
debug.debugLog('name', name)
|
|
4521
|
+
debug.debugLog('oldVersion', oldVersion)
|
|
4522
|
+
debug.debugLog('pkgJsonPath', pkgJsonPath)
|
|
4520
4523
|
const node = shadowNpmInject.findPackageNode(
|
|
4521
4524
|
actualTree,
|
|
4522
4525
|
name,
|
|
4523
4526
|
oldVersion
|
|
4524
4527
|
)
|
|
4525
4528
|
if (!node) {
|
|
4529
|
+
debug.debugLog('skipping no node', pkgJsonPath)
|
|
4526
4530
|
continue
|
|
4527
4531
|
}
|
|
4528
4532
|
const availableVersions = Object.keys(packument.versions)
|
|
@@ -12311,7 +12315,7 @@ void (async () => {
|
|
|
12311
12315
|
await vendor.updater({
|
|
12312
12316
|
name: SOCKET_CLI_BIN_NAME,
|
|
12313
12317
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
12314
|
-
version: '0.14.
|
|
12318
|
+
version: '0.14.114',
|
|
12315
12319
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
12316
12320
|
})
|
|
12317
12321
|
try {
|
|
@@ -12379,5 +12383,5 @@ void (async () => {
|
|
|
12379
12383
|
await shadowNpmInject.captureException(e)
|
|
12380
12384
|
}
|
|
12381
12385
|
})()
|
|
12382
|
-
//# debugId=
|
|
12386
|
+
//# debugId=79766fe4-6a25-4f10-93af-69276e4074ab
|
|
12383
12387
|
//# sourceMappingURL=cli.js.map
|