socket 1.1.152 → 1.1.154
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 +10 -0
- package/dist/cli.js +2348 -629
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/manifest-scripts/maven-extension/coana-maven-extension.jar +0 -0
- package/dist/manifest-scripts/socket-facts.init.gradle +14 -45
- package/dist/manifest-scripts/socket-facts.plugin.scala +15 -46
- package/dist/manifest-scripts/socket-workspaces.init.gradle +99 -0
- package/dist/manifest-scripts/socket-workspaces.plugin.scala +112 -0
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/commands/manifest/cmd-manifest-dynamic-sbom-inference.d.mts +9 -0
- package/dist/types/commands/manifest/cmd-manifest-dynamic-sbom-inference.d.mts.map +1 -0
- package/dist/types/commands/manifest/cmd-manifest-gradle.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-kotlin.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-maven.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-scala.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-setup.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest.d.mts.map +1 -1
- package/dist/types/commands/manifest/convert-gradle-to-facts.d.mts +2 -1
- package/dist/types/commands/manifest/convert-gradle-to-facts.d.mts.map +1 -1
- package/dist/types/commands/manifest/convert-maven-to-facts.d.mts +2 -1
- package/dist/types/commands/manifest/convert-maven-to-facts.d.mts.map +1 -1
- package/dist/types/commands/manifest/convert-sbt-to-facts.d.mts +2 -1
- package/dist/types/commands/manifest/convert-sbt-to-facts.d.mts.map +1 -1
- package/dist/types/commands/manifest/discover-manifest-roots.d.mts +18 -0
- package/dist/types/commands/manifest/discover-manifest-roots.d.mts.map +1 -0
- package/dist/types/commands/manifest/enumerate-workspaces.d.mts +19 -0
- package/dist/types/commands/manifest/enumerate-workspaces.d.mts.map +1 -0
- package/dist/types/commands/manifest/expand-env-var-refs.d.mts +10 -0
- package/dist/types/commands/manifest/expand-env-var-refs.d.mts.map +1 -0
- package/dist/types/commands/manifest/generate-recursive-manifests.d.mts +37 -0
- package/dist/types/commands/manifest/generate-recursive-manifests.d.mts.map +1 -0
- package/dist/types/commands/manifest/generate_auto_manifest.d.mts.map +1 -1
- package/dist/types/commands/manifest/handle-manifest-dynamic-sbom-inference.d.mts +8 -0
- package/dist/types/commands/manifest/handle-manifest-dynamic-sbom-inference.d.mts.map +1 -0
- package/dist/types/commands/manifest/handle-manifest-setup.d.mts +1 -1
- package/dist/types/commands/manifest/handle-manifest-setup.d.mts.map +1 -1
- package/dist/types/commands/manifest/manifest-flags.d.mts +6 -0
- package/dist/types/commands/manifest/manifest-flags.d.mts.map +1 -0
- package/dist/types/commands/manifest/output-manifest-dynamic-sbom-inference.d.mts +4 -0
- package/dist/types/commands/manifest/output-manifest-dynamic-sbom-inference.d.mts.map +1 -0
- package/dist/types/commands/manifest/run-manifest-facts.d.mts +13 -2
- package/dist/types/commands/manifest/run-manifest-facts.d.mts.map +1 -1
- package/dist/types/commands/manifest/scripts/exclude-paths-glob.d.mts +8 -0
- package/dist/types/commands/manifest/scripts/exclude-paths-glob.d.mts.map +1 -0
- package/dist/types/commands/manifest/scripts/run.d.mts +10 -1
- package/dist/types/commands/manifest/scripts/run.d.mts.map +1 -1
- package/dist/types/commands/manifest/setup-manifest-config.d.mts +19 -0
- package/dist/types/commands/manifest/setup-manifest-config.d.mts.map +1 -1
- package/dist/types/commands/manifest/setup-recursive-manifest-config.d.mts +120 -0
- package/dist/types/commands/manifest/setup-recursive-manifest-config.d.mts.map +1 -0
- package/dist/types/commands/scan/create-scan-from-github.d.mts +17 -0
- package/dist/types/commands/scan/create-scan-from-github.d.mts.map +1 -1
- package/dist/types/utils/github-errors.d.mts +51 -0
- package/dist/types/utils/github-errors.d.mts.map +1 -0
- package/dist/types/utils/socket-json.d.mts +38 -14
- package/dist/types/utils/socket-json.d.mts.map +1 -1
- package/dist/utils.js +307 -3
- package/dist/utils.js.map +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.154](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.154) - 2026-08-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Declared `form-data` as a dependency, so a fresh install no longer throws `Cannot find module 'form-data'` on its first upload.
|
|
11
|
+
|
|
12
|
+
## [1.1.153](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.153) - 2026-08-04
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated the Coana CLI to v `15.10.2`.
|
|
16
|
+
|
|
7
17
|
## [1.1.152](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.152) - 2026-08-03
|
|
8
18
|
|
|
9
19
|
### Changed
|