Skip to content

Commit 95ab061

Browse files
authored
Merge branch 'v1.x' into fix/windows
2 parents db60bb9 + abeeb18 commit 95ab061

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7-
## [1.1.49](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.49) - 2025-12-16
7+
## [1.1.49](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.49) - 2025-12-17
8+
9+
### Added
10+
- Added initial telemetry functionality to track CLI usage and help improve the Socket experience.
11+
12+
### Fixed
13+
- Fixed error propagation when npm package finalization failed in `socket fix`.
814

915
### Changed
1016
- Updated the Coana CLI to v `14.12.134`.

bin/npm-cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void (async () => {
1111

1212
process.exitCode = 1
1313

14-
const { spawnPromise } = await shadowNpmBin('npm', process.argv.slice(2), {
14+
const { spawnPromise } = await shadowNpmBin(process.argv.slice(2), {
1515
stdio: 'inherit',
1616
})
1717

bin/npx-cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ void (async () => {
77
const rootPath = path.join(__dirname, '..')
88
Module.enableCompileCache?.(path.join(rootPath, '.cache'))
99

10-
const shadowNpmBin = require(path.join(rootPath, 'dist/shadow-npm-bin.js'))
10+
const shadowNpxBin = require(path.join(rootPath, 'dist/shadow-npx-bin.js'))
1111

1212
process.exitCode = 1
1313

14-
const { spawnPromise } = await shadowNpmBin('npx', process.argv.slice(2), {
14+
const { spawnPromise } = await shadowNpxBin(process.argv.slice(2), {
1515
stdio: 'inherit',
1616
})
1717

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socket",
3-
"version": "1.1.48",
3+
"version": "1.1.49",
44
"description": "CLI for Socket.dev",
55
"homepage": "https://github.com/SocketDev/socket-cli",
66
"license": "MIT AND OFL-1.1",

0 commit comments

Comments
 (0)