You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add hidden reach-continue-on-* flags for Coana v15 (#1251)
Coana v15 introduces four new halt-by-default behaviors in socket mode
and corresponding --reach-continue-on-* opt-outs. Expose them as hidden
flags on `socket scan create` and `socket scan reach` so the Socket CLI
is ready to forward them when Coana v15 becomes the default.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
'Set the maximum number of concurrent reachability analysis runs. It is recommended to choose a concurrency level that ensures each analysis run has at least the --reach-analysis-memory-limit amount of memory available. NPM reachability analysis does not support concurrent execution, so the concurrency level is ignored for NPM.',
27
27
},
28
+
reachContinueOnAnalysisErrors: {
29
+
type: 'boolean',
30
+
default: false,
31
+
hidden: true,
32
+
description:
33
+
'Continue reachability analysis when errors occur (timeouts, OOM, parse errors, etc.), falling back to precomputed (Tier 2) results. By default, the CLI halts on analysis errors.',
34
+
},
35
+
reachContinueOnInstallErrors: {
36
+
type: 'boolean',
37
+
default: false,
38
+
hidden: true,
39
+
description:
40
+
'Continue reachability analysis when package installation fails, falling back to precomputed (Tier 2) results. By default, the CLI halts on installation errors.',
41
+
},
42
+
reachContinueOnMissingLockFiles: {
43
+
type: 'boolean',
44
+
default: false,
45
+
hidden: true,
46
+
description:
47
+
'Continue reachability analysis when a Gradle or SBT project is missing its lock file (or version catalog / pre-generated SBOM). By default, the CLI halts.',
48
+
},
49
+
reachContinueOnNoSourceFiles: {
50
+
type: 'boolean',
51
+
default: false,
52
+
hidden: true,
53
+
description:
54
+
'Continue reachability analysis when a workspace contains no source files for its ecosystem. By default, the CLI halts.',
0 commit comments