@socketsecurity/cli-with-sentry 0.15.15 → 0.15.17

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 (36) hide show
  1. package/dist/.config/tsconfig.dts.tsbuildinfo +1 -1
  2. package/dist/cli.js +1035 -886
  3. package/dist/cli.js.map +1 -1
  4. package/dist/constants.js +3 -3
  5. package/dist/constants.js.map +1 -1
  6. package/dist/socket-completion.bash +3 -3
  7. package/dist/types/commands/ci/cmd-ci.d.mts.map +1 -1
  8. package/dist/types/commands/ci/handle-ci.d.mts +1 -1
  9. package/dist/types/commands/ci/handle-ci.d.mts.map +1 -1
  10. package/dist/types/commands/fix/npm-fix.d.mts.map +1 -1
  11. package/dist/types/commands/fix/open-pr.d.mts.map +1 -1
  12. package/dist/types/commands/fix/pnpm-fix.d.mts.map +1 -1
  13. package/dist/types/commands/manifest/cmd-manifest-auto.d.mts.map +1 -1
  14. package/dist/types/commands/manifest/detect-manifest-actions.d.mts +9 -0
  15. package/dist/types/commands/manifest/detect-manifest-actions.d.mts.map +1 -0
  16. package/dist/types/commands/manifest/generate_auto_manifest.d.mts +4 -0
  17. package/dist/types/commands/manifest/generate_auto_manifest.d.mts.map +1 -0
  18. package/dist/types/commands/repos/cmd-repos-list.d.mts.map +1 -1
  19. package/dist/types/commands/repos/fetch-list-all-repos.d.mts +8 -0
  20. package/dist/types/commands/repos/fetch-list-all-repos.d.mts.map +1 -0
  21. package/dist/types/commands/repos/handle-list-repos.d.mts +3 -2
  22. package/dist/types/commands/repos/handle-list-repos.d.mts.map +1 -1
  23. package/dist/types/commands/repos/output-list-repos.d.mts +1 -1
  24. package/dist/types/commands/repos/output-list-repos.d.mts.map +1 -1
  25. package/dist/types/commands/scan/cmd-scan-create.d.mts.map +1 -1
  26. package/dist/types/commands/scan/handle-create-new-scan.d.mts +2 -1
  27. package/dist/types/commands/scan/handle-create-new-scan.d.mts.map +1 -1
  28. package/external/@socketsecurity/registry/lib/constants/skip-tests-by-ecosystem.js +1 -5
  29. package/external/@socketsecurity/registry/lib/logger.d.ts +6 -1
  30. package/external/@socketsecurity/registry/lib/logger.js +39 -3
  31. package/external/@socketsecurity/registry/lib/spinner.js +13 -2
  32. package/external/@socketsecurity/registry/lib/strings.d.ts +7 -2
  33. package/external/@socketsecurity/registry/lib/strings.js +6 -0
  34. package/external/@socketsecurity/registry/manifest.json +2 -2
  35. package/external/@socketsecurity/registry/package.json +2 -2
  36. package/package.json +3 -2
@@ -5,6 +5,11 @@ function indentString(str, count = 1) {
5
5
  return str.replace(/^(?!\s*$)/gm, ' '.repeat(count))
6
6
  }
7
7
 
8
+ /*@__PURE__*/
9
+ function isBlankString(value) {
10
+ return typeof value === 'string' && (!value.length || /^\s+$/.test(value))
11
+ }
12
+
8
13
  /*@__NO_SIDE_EFFECTS__*/
9
14
  function isNonEmptyString(value) {
10
15
  return typeof value === 'string' && value.length > 0
@@ -33,6 +38,7 @@ function stripBom(str) {
33
38
 
34
39
  module.exports = {
35
40
  indentString,
41
+ isBlankString,
36
42
  isNonEmptyString,
37
43
  search,
38
44
  stripBom
@@ -1843,7 +1843,7 @@
1843
1843
  }
1844
1844
  ],
1845
1845
  [
1846
- "pkg:npm/%40socketregistry/yocto-spinner@1.0.16",
1846
+ "pkg:npm/%40socketregistry/yocto-spinner@1.0.17",
1847
1847
  {
1848
1848
  "categories": ["cleanup"],
1849
1849
  "engines": {
@@ -1853,7 +1853,7 @@
1853
1853
  "license": "MIT",
1854
1854
  "name": "@socketregistry/yocto-spinner",
1855
1855
  "package": "yocto-spinner",
1856
- "version": "1.0.16"
1856
+ "version": "1.0.17"
1857
1857
  }
1858
1858
  ],
1859
1859
  [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socketsecurity/registry",
3
- "version": "1.0.189",
3
+ "version": "1.0.193",
4
4
  "license": "MIT",
5
5
  "description": "Socket.dev registry helpers methods and metadata",
6
6
  "keywords": [
@@ -628,7 +628,7 @@
628
628
  "@rollup/plugin-replace": "6.0.2",
629
629
  "@socketregistry/is-unicode-supported": "1.0.4",
630
630
  "@socketregistry/packageurl-js": "1.0.6",
631
- "@socketregistry/yocto-spinner": "1.0.16",
631
+ "@socketregistry/yocto-spinner": "1.0.17",
632
632
  "@types/pacote": "11.1.8",
633
633
  "@yarnpkg/extensions": "2.0.5",
634
634
  "browserslist": "4.24.5",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socketsecurity/cli-with-sentry",
3
- "version": "0.15.15",
3
+ "version": "0.15.17",
4
4
  "description": "CLI tool for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
5
5
  "homepage": "https://github.com/SocketDev/socket-cli",
6
6
  "license": "MIT",
@@ -108,7 +108,7 @@
108
108
  "@socketregistry/is-interactive": "1.0.5",
109
109
  "@socketregistry/packageurl-js": "1.0.6",
110
110
  "@socketsecurity/config": "3.0.1",
111
- "@socketsecurity/registry": "1.0.189",
111
+ "@socketsecurity/registry": "1.0.193",
112
112
  "@socketsecurity/sdk": "1.4.36",
113
113
  "@types/blessed": "0.1.25",
114
114
  "@types/cmd-shim": "5.0.2",
@@ -173,6 +173,7 @@
173
173
  "overrides": {
174
174
  "@octokit/graphql": "$@octokit/graphql",
175
175
  "@octokit/request-error": "$@octokit/request-error",
176
+ "@socketsecurity/registry": "$@socketsecurity/registry",
176
177
  "aggregate-error": "npm:@socketregistry/aggregate-error@^1",
177
178
  "es-define-property": "npm:@socketregistry/es-define-property@^1",
178
179
  "function-bind": "npm:@socketregistry/function-bind@^1",