socket 1.1.90 → 1.1.92
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 +10 -0
- package/dist/cli.js +1 -5
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/commands/scan/reachability-flags.d.mts.map +1 -1
- package/dist/types/utils/glob.d.mts.map +1 -1
- package/dist/utils.js +15 -2
- package/dist/utils.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [1.1.92](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.92) - 2026-05-05
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated the Coana CLI to v `15.2.2`.
|
|
11
|
+
|
|
12
|
+
## [1.1.91](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.91) - 2026-05-01
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- New `socket scan create` and `socket scan reach` flags let you keep reachability analysis going when it would otherwise halt: `--reach-continue-on-analysis-errors`, `--reach-continue-on-install-errors`, `--reach-continue-on-missing-lock-files`, and `--reach-continue-on-no-source-files`. Each falls back to precomputed (Tier 2) results so you still get a scan when individual workspaces hit timeouts, install failures, missing lock files, or empty source trees.
|
|
16
|
+
|
|
7
17
|
## [1.1.90](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.90) - 2026-04-30
|
|
8
18
|
|
|
9
19
|
### Added
|
package/dist/cli.js
CHANGED
|
@@ -11062,25 +11062,21 @@ const reachabilityFlags = {
|
|
|
11062
11062
|
reachContinueOnAnalysisErrors: {
|
|
11063
11063
|
type: 'boolean',
|
|
11064
11064
|
default: false,
|
|
11065
|
-
hidden: true,
|
|
11066
11065
|
description: '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.'
|
|
11067
11066
|
},
|
|
11068
11067
|
reachContinueOnInstallErrors: {
|
|
11069
11068
|
type: 'boolean',
|
|
11070
11069
|
default: false,
|
|
11071
|
-
hidden: true,
|
|
11072
11070
|
description: 'Continue reachability analysis when package installation fails, falling back to precomputed (Tier 2) results. By default, the CLI halts on installation errors.'
|
|
11073
11071
|
},
|
|
11074
11072
|
reachContinueOnMissingLockFiles: {
|
|
11075
11073
|
type: 'boolean',
|
|
11076
11074
|
default: false,
|
|
11077
|
-
hidden: true,
|
|
11078
11075
|
description: '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.'
|
|
11079
11076
|
},
|
|
11080
11077
|
reachContinueOnNoSourceFiles: {
|
|
11081
11078
|
type: 'boolean',
|
|
11082
11079
|
default: false,
|
|
11083
|
-
hidden: true,
|
|
11084
11080
|
description: 'Continue reachability analysis when a workspace contains no source files for its ecosystem. By default, the CLI halts.'
|
|
11085
11081
|
},
|
|
11086
11082
|
reachDisableExternalToolChecks: {
|
|
@@ -15644,5 +15640,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
15644
15640
|
// eslint-disable-next-line n/no-process-exit
|
|
15645
15641
|
process.exit(1);
|
|
15646
15642
|
});
|
|
15647
|
-
//# debugId=
|
|
15643
|
+
//# debugId=b896b0a3-35bb-4e49-a314-5769e9e8152f
|
|
15648
15644
|
//# sourceMappingURL=cli.js.map
|