socket 1.1.6 → 1.1.8

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,19 @@ 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.8](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.8) - 2025-09-04
8
+
9
+ ### Changed
10
+ - Made insufficient permissions errors more helpful
11
+
12
+ ## [1.1.7](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.7) - 2025-09-11
13
+
14
+ ### Added
15
+ - Control spinner display with new `--no-spinner` flag
16
+
17
+ ### Fixed
18
+ - Configurable proxy handling for requests
19
+
7
20
  ## [1.1.6](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.6) - 2025-09-10
8
21
 
9
22
  ### Fixed
package/README.md CHANGED
@@ -107,3 +107,12 @@ npm exec socket
107
107
  - [`@socketsecurity/sdk`](https://github.com/SocketDev/socket-sdk-js) - The SDK used by Socket CLI
108
108
 
109
109
  [Socket.dev]: https://socket.dev/
110
+
111
+ <br/>
112
+ <div align="center">
113
+ <picture>
114
+ <source media="(prefers-color-scheme: dark)" srcset="logo-white.png">
115
+ <source media="(prefers-color-scheme: light)" srcset="logo-black.png">
116
+ <img width="324" height="108" alt="Socket Logo" src="logo-black.png">
117
+ </picture>
118
+ </div>
package/dist/cli.js CHANGED
@@ -8866,6 +8866,7 @@ async function findNodeModulesPaths(cwd) {
8866
8866
  absolute: true,
8867
8867
  cwd: path.dirname(rootNmPath),
8868
8868
  dot: true,
8869
+ followSymbolicLinks: false,
8869
8870
  onlyDirectories: true
8870
8871
  });
8871
8872
  }
@@ -9096,11 +9097,15 @@ async function run$k(argv, importMeta, {
9096
9097
  importMeta,
9097
9098
  parentName
9098
9099
  });
9099
- const dryRun = !!cli.flags['dryRun'];
9100
- const outputKind = utils.getOutputKind(cli.flags['json'], cli.flags['markdown']);
9100
+ const {
9101
+ dryRun,
9102
+ json,
9103
+ markdown
9104
+ } = cli.flags;
9105
+ const outputKind = utils.getOutputKind(json, markdown);
9101
9106
  const wasValidInput = utils.checkCommandInput(outputKind, {
9102
9107
  nook: true,
9103
- test: !cli.flags['json'] || !cli.flags['markdown'],
9108
+ test: !json || !markdown,
9104
9109
  message: 'The json and markdown flags cannot be both set, pick one',
9105
9110
  fail: 'omit one'
9106
9111
  });
@@ -14390,5 +14395,5 @@ void (async () => {
14390
14395
  await utils.captureException(e);
14391
14396
  }
14392
14397
  })();
14393
- //# debugId=4e95a2aa-15d9-468e-bbee-5bed1dff404f
14398
+ //# debugId=ac9751e6-2458-4e89-9ffb-14171de230d0
14394
14399
  //# sourceMappingURL=cli.js.map