@socketsecurity/cli-with-sentry 1.1.49 → 1.1.51

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/bin/npm-cli.js +1 -1
  3. package/bin/npx-cli.js +2 -2
  4. package/dist/cli.js +100 -509
  5. package/dist/cli.js.map +1 -1
  6. package/dist/constants.js +6 -4
  7. package/dist/constants.js.map +1 -1
  8. package/dist/tsconfig.dts.tsbuildinfo +1 -1
  9. package/dist/types/commands/ci/handle-ci.d.mts.map +1 -1
  10. package/dist/types/commands/patch/cmd-patch.d.mts +1 -1
  11. package/dist/types/commands/patch/cmd-patch.d.mts.map +1 -1
  12. package/dist/types/commands/scan/cmd-scan-create.d.mts.map +1 -1
  13. package/dist/types/commands/scan/cmd-scan-reach.d.mts.map +1 -1
  14. package/dist/types/commands/scan/output-scan-report.d.mts.map +1 -1
  15. package/dist/types/commands/scan/perform-reachability-analysis.d.mts +1 -0
  16. package/dist/types/commands/scan/perform-reachability-analysis.d.mts.map +1 -1
  17. package/dist/types/commands/scan/reachability-flags.d.mts.map +1 -1
  18. package/dist/types/commands.d.mts +1 -1
  19. package/dist/types/constants.d.mts +1 -0
  20. package/dist/types/constants.d.mts.map +1 -1
  21. package/dist/types/utils/config.d.mts +6 -0
  22. package/dist/types/utils/config.d.mts.map +1 -1
  23. package/dist/types/utils/editable-json.d.mts +63 -0
  24. package/dist/types/utils/editable-json.d.mts.map +1 -0
  25. package/dist/types/utils/package-environment.d.mts.map +1 -1
  26. package/dist/utils.js +482 -50
  27. package/dist/utils.js.map +1 -1
  28. package/dist/vendor.js +13495 -3663
  29. package/package.json +4 -3
  30. package/dist/types/commands/patch/handle-patch.d.mts +0 -12
  31. package/dist/types/commands/patch/handle-patch.d.mts.map +0 -1
  32. package/dist/types/commands/patch/manifest-schema.d.mts +0 -34
  33. package/dist/types/commands/patch/manifest-schema.d.mts.map +0 -1
  34. package/dist/types/commands/patch/output-patch-result.d.mts +0 -5
  35. package/dist/types/commands/patch/output-patch-result.d.mts.map +0 -1
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.51](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.51) - 2025-12-23
8
+
9
+ ### Added
10
+ - Added internal `--reach-lazy-mode` flag for reachability analysis.
11
+
12
+ ### Changed
13
+ - Updated the Coana CLI to v `14.12.138`.
14
+
15
+ ## [1.1.50](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.50) - 2025-12-19
16
+
17
+ ### Fixed
18
+ - Fixed exit code when blocking alerts are found
19
+
7
20
  ## [1.1.49](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.49) - 2025-12-17
8
21
 
9
22
  ### Added
package/bin/npm-cli.js CHANGED
@@ -11,7 +11,7 @@ void (async () => {
11
11
 
12
12
  process.exitCode = 1
13
13
 
14
- const { spawnPromise } = await shadowNpmBin('npm', process.argv.slice(2), {
14
+ const { spawnPromise } = await shadowNpmBin(process.argv.slice(2), {
15
15
  stdio: 'inherit',
16
16
  })
17
17
 
package/bin/npx-cli.js CHANGED
@@ -7,11 +7,11 @@ void (async () => {
7
7
  const rootPath = path.join(__dirname, '..')
8
8
  Module.enableCompileCache?.(path.join(rootPath, '.cache'))
9
9
 
10
- const shadowNpmBin = require(path.join(rootPath, 'dist/shadow-npm-bin.js'))
10
+ const shadowNpxBin = require(path.join(rootPath, 'dist/shadow-npx-bin.js'))
11
11
 
12
12
  process.exitCode = 1
13
13
 
14
- const { spawnPromise } = await shadowNpmBin('npx', process.argv.slice(2), {
14
+ const { spawnPromise } = await shadowNpxBin(process.argv.slice(2), {
15
15
  stdio: 'inherit',
16
16
  })
17
17