socket 1.1.107 → 1.1.108
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/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
12
12
|
### Changed
|
|
13
13
|
- **Bazel diagnostics** — `socket manifest bazel --verbose` now emits bounded subprocess traces with argv, cwd, duration, exit status, output sizes, and failure stderr tails to make customer log-only triage safer and faster.
|
|
14
14
|
|
|
15
|
+
## [1.1.108](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.108) - 2026-05-28
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Updated the Coana CLI to v `15.3.12`.
|
|
19
|
+
|
|
15
20
|
## [1.1.107](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.107) - 2026-05-28
|
|
16
21
|
|
|
17
22
|
### Changed
|
package/dist/cli.js
CHANGED
|
@@ -14874,7 +14874,13 @@ async function run$d(argv, importMeta, {
|
|
|
14874
14874
|
}
|
|
14875
14875
|
}
|
|
14876
14876
|
const detected = await detectManifestActions(sockJson, cwd);
|
|
14877
|
-
|
|
14877
|
+
// Suppress the --auto-manifest suggestion when a `.socket.facts.json` is
|
|
14878
|
+
// already present at cwd. That file is the output of `socket manifest auto`
|
|
14879
|
+
// (and `--facts` mode of the per-ecosystem manifest commands), so suggesting
|
|
14880
|
+
// to regenerate it would be misleading; the manifest data is already there
|
|
14881
|
+
// and will be picked up by the scan.
|
|
14882
|
+
const hasFactsFile = fs$1.existsSync(path.join(cwd, constants.default.DOT_SOCKET_DOT_FACTS_JSON));
|
|
14883
|
+
if (detected.count > 0 && !autoManifest && !hasFactsFile) {
|
|
14878
14884
|
logger.logger.info(`Detected ${detected.count} manifest targets we could try to generate. Please set the --auto-manifest flag if you want to include languages covered by \`socket manifest auto\` in the Scan.`);
|
|
14879
14885
|
}
|
|
14880
14886
|
if (updatedInput && orgSlug && targets.length) {
|
|
@@ -19021,5 +19027,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
19021
19027
|
// eslint-disable-next-line n/no-process-exit
|
|
19022
19028
|
process.exit(1);
|
|
19023
19029
|
});
|
|
19024
|
-
//# debugId=
|
|
19030
|
+
//# debugId=2c025222-c1b3-4410-abc9-e6c6a91083a2
|
|
19025
19031
|
//# sourceMappingURL=cli.js.map
|