@socketsecurity/cli-with-sentry 0.14.120 → 0.14.121
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 +18 -9
- 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 +18 -9
- 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.121:002547b:1fdc0d88: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')
|
|
@@ -4245,9 +4245,13 @@ async function npmFix(
|
|
|
4245
4245
|
workspaceName
|
|
4246
4246
|
}
|
|
4247
4247
|
)
|
|
4248
|
-
if (prResponse
|
|
4249
|
-
|
|
4250
|
-
|
|
4248
|
+
if (prResponse) {
|
|
4249
|
+
const { data } = prResponse
|
|
4250
|
+
spinner?.info(`PR #${data.number} opened.`)
|
|
4251
|
+
if (autoMerge) {
|
|
4252
|
+
// eslint-disable-next-line no-await-in-loop
|
|
4253
|
+
await enableAutoMerge(data)
|
|
4254
|
+
}
|
|
4251
4255
|
}
|
|
4252
4256
|
}
|
|
4253
4257
|
if (errored || isCi) {
|
|
@@ -4494,6 +4498,7 @@ async function pnpmFix(
|
|
|
4494
4498
|
const oldVersions = arrays.arrayUnique(
|
|
4495
4499
|
shadowNpmInject.findPackageNodes(actualTree, name).map(n => n.version)
|
|
4496
4500
|
)
|
|
4501
|
+
debug.debugLog(name, 'oldVersions', oldVersions)
|
|
4497
4502
|
const packument =
|
|
4498
4503
|
oldVersions.length && infos.length
|
|
4499
4504
|
? // eslint-disable-next-line no-await-in-loop
|
|
@@ -4710,9 +4715,13 @@ async function pnpmFix(
|
|
|
4710
4715
|
workspaceName
|
|
4711
4716
|
}
|
|
4712
4717
|
)
|
|
4713
|
-
if (prResponse
|
|
4714
|
-
|
|
4715
|
-
|
|
4718
|
+
if (prResponse) {
|
|
4719
|
+
const { data } = prResponse
|
|
4720
|
+
spinner?.info(`PR #${data.number} opened.`)
|
|
4721
|
+
if (autoMerge) {
|
|
4722
|
+
// eslint-disable-next-line no-await-in-loop
|
|
4723
|
+
await enableAutoMerge(data)
|
|
4724
|
+
}
|
|
4716
4725
|
}
|
|
4717
4726
|
}
|
|
4718
4727
|
if (errored || isCi) {
|
|
@@ -12317,7 +12326,7 @@ void (async () => {
|
|
|
12317
12326
|
await vendor.updater({
|
|
12318
12327
|
name: SOCKET_CLI_BIN_NAME,
|
|
12319
12328
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
12320
|
-
version: '0.14.
|
|
12329
|
+
version: '0.14.121',
|
|
12321
12330
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
12322
12331
|
})
|
|
12323
12332
|
try {
|
|
@@ -12385,5 +12394,5 @@ void (async () => {
|
|
|
12385
12394
|
await shadowNpmInject.captureException(e)
|
|
12386
12395
|
}
|
|
12387
12396
|
})()
|
|
12388
|
-
//# debugId=
|
|
12397
|
+
//# debugId=524536b6-4081-429c-a851-5e74eb74ccb7
|
|
12389
12398
|
//# sourceMappingURL=cli.js.map
|