socket 1.1.4 → 1.1.5

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 (59) hide show
  1. package/CHANGELOG.md +20 -14
  2. package/dist/cli.js +517 -351
  3. package/dist/cli.js.map +1 -1
  4. package/dist/constants.js +34 -13
  5. package/dist/constants.js.map +1 -1
  6. package/dist/flags.js +15 -9
  7. package/dist/flags.js.map +1 -1
  8. package/dist/tsconfig.dts.tsbuildinfo +1 -1
  9. package/dist/types/commands/analytics/cmd-analytics.d.mts.map +1 -1
  10. package/dist/types/commands/analytics/handle-analytics.d.mts +6 -5
  11. package/dist/types/commands/analytics/handle-analytics.d.mts.map +1 -1
  12. package/dist/types/commands/analytics/output-analytics.d.mts +6 -5
  13. package/dist/types/commands/analytics/output-analytics.d.mts.map +1 -1
  14. package/dist/types/commands/audit-log/cmd-audit-log.d.mts.map +1 -1
  15. package/dist/types/commands/fix/cmd-fix.d.mts.map +1 -1
  16. package/dist/types/commands/fix/coana-fix.d.mts.map +1 -1
  17. package/dist/types/commands/fix/handle-fix.d.mts +1 -1
  18. package/dist/types/commands/fix/handle-fix.d.mts.map +1 -1
  19. package/dist/types/commands/fix/pull-request.d.mts +2 -2
  20. package/dist/types/commands/fix/pull-request.d.mts.map +1 -1
  21. package/dist/types/commands/fix/types.d.mts +1 -4
  22. package/dist/types/commands/fix/types.d.mts.map +1 -1
  23. package/dist/types/commands/login/cmd-login.d.mts.map +1 -1
  24. package/dist/types/commands/organization/fetch-organization-list.d.mts +1 -1
  25. package/dist/types/commands/organization/fetch-organization-list.d.mts.map +1 -1
  26. package/dist/types/commands/patch/cmd-patch.d.mts.map +1 -1
  27. package/dist/types/commands/patch/handle-patch.d.mts +3 -9
  28. package/dist/types/commands/patch/handle-patch.d.mts.map +1 -1
  29. package/dist/types/commands/patch/output-patch-result.d.mts.map +1 -1
  30. package/dist/types/commands/repository/cmd-repository-create.d.mts.map +1 -1
  31. package/dist/types/commands/repository/cmd-repository-del.d.mts.map +1 -1
  32. package/dist/types/commands/repository/cmd-repository-update.d.mts.map +1 -1
  33. package/dist/types/commands/repository/cmd-repository-view.d.mts.map +1 -1
  34. package/dist/types/commands/scan/cmd-scan-create.d.mts.map +1 -1
  35. package/dist/types/commands/scan/cmd-scan-github.d.mts.map +1 -1
  36. package/dist/types/commands/scan/cmd-scan-list.d.mts.map +1 -1
  37. package/dist/types/commands/scan/cmd-scan-reach.d.mts.map +1 -1
  38. package/dist/types/commands/scan/generate-report.d.mts.map +1 -1
  39. package/dist/types/commands/scan/output-scan-report.d.mts.map +1 -1
  40. package/dist/types/commands/scan/perform-reachability-analysis.d.mts.map +1 -1
  41. package/dist/types/constants.d.mts +21 -7
  42. package/dist/types/constants.d.mts.map +1 -1
  43. package/dist/types/flags.d.mts.map +1 -1
  44. package/dist/types/utils/api.d.mts +8 -7
  45. package/dist/types/utils/api.d.mts.map +1 -1
  46. package/dist/types/utils/config.d.mts.map +1 -1
  47. package/dist/types/utils/git.d.mts +1 -0
  48. package/dist/types/utils/git.d.mts.map +1 -1
  49. package/dist/types/utils/meow-with-subcommands.d.mts.map +1 -1
  50. package/dist/types/utils/purl.d.mts +34 -19
  51. package/dist/types/utils/purl.d.mts.map +1 -1
  52. package/dist/types/utils/socket-package-alert.d.mts.map +1 -1
  53. package/dist/types/utils/spec.d.mts +1 -1
  54. package/dist/types/utils/spec.d.mts.map +1 -1
  55. package/dist/utils.js +94 -66
  56. package/dist/utils.js.map +1 -1
  57. package/dist/vendor.js +378 -378
  58. package/external/@socketsecurity/registry/lib/constants/skip-tests-by-ecosystem.js +0 -1
  59. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -4,39 +4,45 @@ 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.5](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.5) - 2025-09-10
8
+
9
+ ### Fixed
10
+ - Fixed reachability analysis spinner behavior in certain scenarios
11
+ - Improved `--cwd` current working directory override handling
12
+
7
13
  ## [1.1.4](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.4) - 2025-09-09
8
14
 
9
15
  ### Added
10
- - Added CHANGELOG.md to track user-facing changes
11
- - Added CLAUDE.md for development guidance
12
- - Added `--report-level` flag to `socket scan create`
16
+ - Track release changes with CHANGELOG.md
17
+ - Enhanced development workflow with contributor guidance
18
+ - Control scan output detail with `--report-level` flag
13
19
 
14
20
  ## [1.1.1](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.1) - 2025-09-04
15
21
 
16
22
  ### Changed
17
- - Updated tab completion functionality
18
- - Improved spinner integration
23
+ - Faster command completion with improved tab functionality
24
+ - Smoother user experience with better loading indicators
19
25
 
20
26
  ### Removed
21
- - Removed `--test` and `--test-script` flags from user interface
22
- - Removed dead legacy `socket fix` code
27
+ - Removed legacy `--test` and `--test-script` flags from `socket fix`
28
+ - Continued cleanup of legacy `socket fix` code
23
29
 
24
30
  ## [1.1.0](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.0) - 2025-09-03
25
31
 
26
32
  ### Added
27
- - Added package version information to `socket npm` reports
33
+ - See package versions directly in `socket npm` security reports
28
34
 
29
35
  ### Changed
30
- - Improved messaging for repeat `socket npm` installs
31
- - Enhanced timeout handling with try-catch for batch purl timeouts
32
- - Hide audit functionality on repeat `socket npm` installs
36
+ - Clearer feedback for repeat `socket npm` installations
37
+ - More reliable handling of scan timeouts
38
+ - Streamlined repeat installs by hiding redundant audit info
33
39
 
34
40
  ### Fixed
35
- - Fixed file system method implementations
36
- - Fixed boolean value coercion in configurations
41
+ - More reliable file system operations
42
+ - Better configuration value handling
37
43
 
38
44
  ### Removed
39
- - Removed legacy `socket fix` code
45
+ - Cleaned up legacy `socket fix` code
40
46
 
41
47
  ## [1.0.111](https://github.com/SocketDev/socket-cli/releases/tag/v1.0.111) - 2025-09-03
42
48