socket 2.0.7 → 2.0.8
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 +6 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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
|
+
## [2.0.8](https://github.com/SocketDev/socket-cli/releases/tag/v2.0.8) - 2025-10-31
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Binary name resolution for external tools (@coana-tech/cli, @cyclonedx/cdxgen, synp) in dlx execution
|
|
11
|
+
- Preflight downloads now correctly specify binary names for background package caching
|
|
12
|
+
|
|
7
13
|
## [2.0.7](https://github.com/SocketDev/socket-cli/releases/tag/v2.0.7) - 2025-10-31
|
|
8
14
|
|
|
9
15
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "socket",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "CLI for Socket.dev",
|
|
5
5
|
"homepage": "https://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"logo-light.png"
|
|
25
25
|
],
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@socketbin/cli-alpine-arm64": "0.0.0-20251031.
|
|
28
|
-
"@socketbin/cli-alpine-x64": "0.0.0-20251031.
|
|
29
|
-
"@socketbin/cli-darwin-arm64": "0.0.0-20251031.
|
|
30
|
-
"@socketbin/cli-darwin-x64": "0.0.0-20251031.
|
|
31
|
-
"@socketbin/cli-linux-arm64": "0.0.0-20251031.
|
|
32
|
-
"@socketbin/cli-linux-x64": "0.0.0-20251031.
|
|
33
|
-
"@socketbin/cli-win32-arm64": "0.0.0-20251031.
|
|
34
|
-
"@socketbin/cli-win32-x64": "0.0.0-20251031.
|
|
27
|
+
"@socketbin/cli-alpine-arm64": "0.0.0-20251031.102422",
|
|
28
|
+
"@socketbin/cli-alpine-x64": "0.0.0-20251031.102422",
|
|
29
|
+
"@socketbin/cli-darwin-arm64": "0.0.0-20251031.102422",
|
|
30
|
+
"@socketbin/cli-darwin-x64": "0.0.0-20251031.102422",
|
|
31
|
+
"@socketbin/cli-linux-arm64": "0.0.0-20251031.102422",
|
|
32
|
+
"@socketbin/cli-linux-x64": "0.0.0-20251031.102422",
|
|
33
|
+
"@socketbin/cli-win32-arm64": "0.0.0-20251031.102422",
|
|
34
|
+
"@socketbin/cli-win32-x64": "0.0.0-20251031.102422"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "node scripts/build.mjs",
|