@socketsecurity/cli-with-sentry 1.1.4 → 1.1.6

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 +25 -14
  2. package/dist/cli.js +518 -352
  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,50 @@ 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.6](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.6) - 2025-09-10
8
+
9
+ ### Fixed
10
+ - GraphQL cache handling for PR operations
11
+
12
+ ## [1.1.5](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.5) - 2025-09-10
13
+
14
+ ### Fixed
15
+ - Fixed reachability analysis spinner behavior in certain scenarios
16
+ - Improved `--cwd` current working directory override handling
17
+
7
18
  ## [1.1.4](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.4) - 2025-09-09
8
19
 
9
20
  ### 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`
21
+ - Track release changes with CHANGELOG.md
22
+ - Enhanced development workflow with contributor guidance
23
+ - Control scan output detail with `--report-level` flag
13
24
 
14
25
  ## [1.1.1](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.1) - 2025-09-04
15
26
 
16
27
  ### Changed
17
- - Updated tab completion functionality
18
- - Improved spinner integration
28
+ - Faster command completion with improved tab functionality
29
+ - Smoother user experience with better loading indicators
19
30
 
20
31
  ### Removed
21
- - Removed `--test` and `--test-script` flags from user interface
22
- - Removed dead legacy `socket fix` code
32
+ - Removed legacy `--test` and `--test-script` flags from `socket fix`
33
+ - Continued cleanup of legacy `socket fix` code
23
34
 
24
35
  ## [1.1.0](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.0) - 2025-09-03
25
36
 
26
37
  ### Added
27
- - Added package version information to `socket npm` reports
38
+ - See package versions directly in `socket npm` security reports
28
39
 
29
40
  ### 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
41
+ - Clearer feedback for repeat `socket npm` installations
42
+ - More reliable handling of scan timeouts
43
+ - Streamlined repeat installs by hiding redundant audit info
33
44
 
34
45
  ### Fixed
35
- - Fixed file system method implementations
36
- - Fixed boolean value coercion in configurations
46
+ - More reliable file system operations
47
+ - Better configuration value handling
37
48
 
38
49
  ### Removed
39
- - Removed legacy `socket fix` code
50
+ - Cleaned up legacy `socket fix` code
40
51
 
41
52
  ## [1.0.111](https://github.com/SocketDev/socket-cli/releases/tag/v1.0.111) - 2025-09-03
42
53