socket 1.1.78 → 1.1.80

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
@@ -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.80](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.80) - 2026-04-10
8
+
9
+ ### Changed
10
+ - Updated the Coana CLI to v `14.12.209`.
11
+
12
+ ## [1.1.79](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.79) - 2026-04-08
13
+
14
+ ### Changed
15
+ - Updated the Coana CLI to v `14.12.205`.
16
+
7
17
  ## [1.1.78](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.78) - 2026-04-01
8
18
 
9
19
  ### 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=eee29af9-4818-4849-9195-de65323ca372
15542
+ //# debugId=f5bad35b-2e1d-49ea-bc1c-dbacdf631051
15533
15543
  //# sourceMappingURL=cli.js.map