@socketsecurity/cli 1.1.91 → 1.1.93

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,17 @@ 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.93](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.93) - 2026-05-08
8
+
9
+ ### Changed
10
+ - `socket fix --ecosystems` now accepts values case-insensitively (e.g. `NPM`, `npm`, and `Npm` are all valid), matching the existing behavior of `--package-managers`.
11
+ - Updated the Coana CLI to v `15.2.4`.
12
+
13
+ ## [1.1.92](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.92) - 2026-05-05
14
+
15
+ ### Changed
16
+ - Updated the Coana CLI to v `15.2.2`.
17
+
7
18
  ## [1.1.91](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.91) - 2026-05-01
8
19
 
9
20
  ### Added
package/dist/cli.js CHANGED
@@ -4557,7 +4557,7 @@ Available styles:
4557
4557
  ecosystems: {
4558
4558
  type: 'string',
4559
4559
  default: [],
4560
- description: 'Limit fix analysis to specific ecosystems. Can be provided as comma separated values or as multiple flags. Defaults to all ecosystems.',
4560
+ description: 'Limit fix analysis to specific ecosystems. Accepts space- or comma-separated values and is case-insensitive. Defaults to all ecosystems.',
4561
4561
  isMultiple: true
4562
4562
  },
4563
4563
  packageManagers: {
@@ -4713,7 +4713,9 @@ async function run$K(argv, importMeta, {
4713
4713
  const outputKind = utils.getOutputKind(json, markdown);
4714
4714
 
4715
4715
  // Process comma-separated values for ecosystems flag.
4716
- const ecosystemsRaw = utils.cmdFlagValueToArray(ecosystems);
4716
+ // ALL_ECOSYSTEMS is lowercase, so normalize input for a case-insensitive
4717
+ // match (mirrors --package-managers behavior).
4718
+ const ecosystemsRaw = utils.cmdFlagValueToArray(ecosystems).map(s => s.toLowerCase());
4717
4719
 
4718
4720
  // Validate ecosystem values early, before dry-run check.
4719
4721
  const validatedEcosystems = [];
@@ -15640,5 +15642,5 @@ process.on('unhandledRejection', async (reason, promise) => {
15640
15642
  // eslint-disable-next-line n/no-process-exit
15641
15643
  process.exit(1);
15642
15644
  });
15643
- //# debugId=b896b0a3-35bb-4e49-a314-5769e9e8152f
15645
+ //# debugId=6d796b61-8e93-4815-b8ee-24e4641dd484
15644
15646
  //# sourceMappingURL=cli.js.map