@socketsecurity/cli-with-sentry 1.1.96 → 1.1.97
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 +11 -0
- package/dist/cli.js +1421 -63
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/commands/manifest/bazel/bazel-bin-detect.d.mts +11 -0
- package/dist/types/commands/manifest/bazel/bazel-bin-detect.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-build-parser.d.mts +34 -0
- package/dist/types/commands/manifest/bazel/bazel-build-parser.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-java-shim.d.mts +10 -0
- package/dist/types/commands/manifest/bazel/bazel-java-shim.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-output-base-check.d.mts +7 -0
- package/dist/types/commands/manifest/bazel/bazel-output-base-check.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-python-shim.d.mts +9 -0
- package/dist/types/commands/manifest/bazel/bazel-python-shim.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-query-runner.d.mts +41 -0
- package/dist/types/commands/manifest/bazel/bazel-query-runner.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-repo-discovery.d.mts +34 -0
- package/dist/types/commands/manifest/bazel/bazel-repo-discovery.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/bazel-workspace-detect.d.mts +13 -0
- package/dist/types/commands/manifest/bazel/bazel-workspace-detect.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/cmd-manifest-bazel.d.mts +9 -0
- package/dist/types/commands/manifest/bazel/cmd-manifest-bazel.d.mts.map +1 -0
- package/dist/types/commands/manifest/bazel/extract_bazel_to_maven.d.mts +33 -0
- package/dist/types/commands/manifest/bazel/extract_bazel_to_maven.d.mts.map +1 -0
- package/dist/types/commands/manifest/cmd-manifest.d.mts.map +1 -1
- package/dist/types/commands/manifest/detect-manifest-actions.d.mts +1 -0
- package/dist/types/commands/manifest/detect-manifest-actions.d.mts.map +1 -1
- package/dist/types/commands/manifest/generate_auto_manifest.d.mts +4 -1
- package/dist/types/commands/manifest/generate_auto_manifest.d.mts.map +1 -1
- package/dist/types/commands/scan/handle-create-new-scan.d.mts.map +1 -1
- package/dist/types/utils/socket-json.d.mts +10 -0
- package/dist/types/utils/socket-json.d.mts.map +1 -1
- package/dist/utils.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ 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
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **`socket manifest bazel [beta]`** — Generate Bazel JVM SBOM manifests by running `bazel query` against discovered Maven repos in a Bazel workspace. Closes the inline-Maven-declaration gap that lockfile-only parsing misses for repos like envoy, ray, tensorflow, tink-java, and or-tools. Auto-detects Bzlmod and legacy `WORKSPACE`.
|
|
11
|
+
- **`socket scan create --auto-manifest`** now covers Bazel workspaces in addition to Gradle/Scala/Kotlin/Conda. Repos with `MODULE.bazel`, `WORKSPACE`, or `WORKSPACE.bazel` are detected automatically and their Maven dependencies extracted as part of the standard scan-create flow.
|
|
12
|
+
|
|
13
|
+
## [1.1.97](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.97) - 2026-05-18
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Updated the Coana CLI to v `15.3.0`.
|
|
17
|
+
|
|
7
18
|
## [1.1.96](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.96) - 2026-05-15
|
|
8
19
|
|
|
9
20
|
### Changed
|