socket 1.1.78 → 1.1.79
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 +5 -0
- package/dist/cli.js +11 -1
- 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/output-scan-reach.d.mts.map +1 -1
- package/dist/types/utils/coana.d.mts +7 -0
- package/dist/types/utils/coana.d.mts.map +1 -1
- package/dist/types/utils/npm-paths.d.mts.map +1 -1
- package/dist/utils.js +75 -3
- package/dist/utils.js.map +1 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.79](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.79) - 2026-04-08
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated the Coana CLI to v `14.12.205`.
|
|
11
|
+
|
|
7
12
|
## [1.1.78](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.78) - 2026-04-01
|
|
8
13
|
|
|
9
14
|
### Fixed
|
package/dist/cli.js
CHANGED
|
@@ -13342,6 +13342,16 @@ async function outputScanReach(result, {
|
|
|
13342
13342
|
logger.logger.log('');
|
|
13343
13343
|
logger.logger.success('Reachability analysis completed successfully!');
|
|
13344
13344
|
logger.logger.info(`Reachability report has been written to: ${actualOutputPath}`);
|
|
13345
|
+
|
|
13346
|
+
// Warn about individual vulnerabilities where reachability analysis errored.
|
|
13347
|
+
const errors = utils.extractReachabilityErrors(result.data.reachabilityReport);
|
|
13348
|
+
if (errors.length) {
|
|
13349
|
+
logger.logger.log('');
|
|
13350
|
+
logger.logger.warn(`Reachability analysis returned ${errors.length} ${words.pluralize('error', errors.length)} for individual ${words.pluralize('vulnerability', errors.length)}:`);
|
|
13351
|
+
for (const err of errors) {
|
|
13352
|
+
logger.logger.warn(` - ${err.ghsaId} in ${err.componentName}@${err.componentVersion} (${err.subprojectPath})`);
|
|
13353
|
+
}
|
|
13354
|
+
}
|
|
13345
13355
|
}
|
|
13346
13356
|
|
|
13347
13357
|
async function handleScanReach({
|
|
@@ -15529,5 +15539,5 @@ process.on('unhandledRejection', async (reason, promise) => {
|
|
|
15529
15539
|
// eslint-disable-next-line n/no-process-exit
|
|
15530
15540
|
process.exit(1);
|
|
15531
15541
|
});
|
|
15532
|
-
//# debugId=
|
|
15542
|
+
//# debugId=f5bad35b-2e1d-49ea-bc1c-dbacdf631051
|
|
15533
15543
|
//# sourceMappingURL=cli.js.map
|