@socketsecurity/cli-with-sentry 1.0.54 → 1.0.56
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 +5 -3
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/dist/types/commands/fix/agent-fix.d.mts.map +1 -1
- package/dist/utils.js +2 -2
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3081,11 +3081,11 @@ function getPrsForPurl(fixEnv, partialPurl) {
|
|
|
3081
3081
|
prs.push(pr);
|
|
3082
3082
|
}
|
|
3083
3083
|
}
|
|
3084
|
-
if (debug.isDebug('notice,
|
|
3084
|
+
if (debug.isDebug('notice,silly')) {
|
|
3085
3085
|
const fullName = packages.resolvePackageName(partialPurlObj);
|
|
3086
3086
|
if (prs.length) {
|
|
3087
3087
|
debug.debugFn('notice', `found: ${prs.length} PRs for ${fullName}`);
|
|
3088
|
-
debug.debugDir('
|
|
3088
|
+
debug.debugDir('silly', {
|
|
3089
3089
|
prs
|
|
3090
3090
|
});
|
|
3091
3091
|
} else if (fixEnv.prs.length) {
|
|
@@ -3933,6 +3933,8 @@ async function agentFix(pkgEnvDetails, actualTree, alertsMap, installer, {
|
|
|
3933
3933
|
// eslint-disable-next-line no-await-in-loop
|
|
3934
3934
|
(await utils.gitCreateBranch(branch, cwd)) && (
|
|
3935
3935
|
// eslint-disable-next-line no-await-in-loop
|
|
3936
|
+
await utils.gitCheckoutBranch(branch, cwd)) && (
|
|
3937
|
+
// eslint-disable-next-line no-await-in-loop
|
|
3936
3938
|
await utils.gitCommit(getSocketCommitMessage(oldPurl, newVersion, workspace),
|
|
3937
3939
|
// eslint-disable-next-line no-await-in-loop
|
|
3938
3940
|
await getModifiedFiles(cwd), {
|
|
@@ -14156,5 +14158,5 @@ void (async () => {
|
|
|
14156
14158
|
await utils.captureException(e);
|
|
14157
14159
|
}
|
|
14158
14160
|
})();
|
|
14159
|
-
//# debugId=
|
|
14161
|
+
//# debugId=4fadc2fa-389d-44dd-820e-1cd78bae1dd6
|
|
14160
14162
|
//# sourceMappingURL=cli.js.map
|