File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) .
66
7+ ## [ 1.1.32] ( https://github.com/SocketDev/socket-cli/releases/tag/v1.1.32 ) - 2025-11-20
8+
9+ ### Changed
10+ - Updated @coana-tech/cli to 14.12.90
11+ - Updated @cyclonedx/cdxgen to 11.11.0
12+
13+ ### Fixed
14+ - Resolved ` --limit ` flag behavior to correctly restrict vulnerability processing in ` socket fix ` local mode
15+ - Exclude ` .socket.facts.json ` files from ` socket fix ` manifest uploads
16+
717## [ 1.1.31] ( https://github.com/SocketDev/socket-cli/releases/tag/v1.1.31 ) - 2025-11-19
818
919### Fixed
Original file line number Diff line number Diff line change 11{
22 "name" : " socket" ,
3- "version" : " 1.1.31 " ,
3+ "version" : " 1.1.32 " ,
44 "description" : " CLI for Socket.dev" ,
55 "homepage" : " https://github.com/SocketDev/socket-cli" ,
66 "license" : " MIT AND OFL-1.1" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { promises as fs } from 'node:fs'
22import os from 'node:os'
33import path from 'node:path'
44
5- import { DOT_SOCKET_DOT_FACTS_JSON } from '../../constants.mts'
65import { joinAnd } from '@socketsecurity/registry/lib/arrays'
76import { debugDir , debugFn } from '@socketsecurity/registry/lib/debug'
87import { readJsonSync } from '@socketsecurity/registry/lib/fs'
@@ -22,7 +21,11 @@ import {
2221} from './env-helpers.mts'
2322import { getSocketFixBranchName , getSocketFixCommitMessage } from './git.mts'
2423import { getSocketFixPrs , openSocketFixPr } from './pull-request.mts'
25- import { FLAG_DRY_RUN , GQL_PR_STATE_OPEN } from '../../constants.mts'
24+ import {
25+ DOT_SOCKET_DOT_FACTS_JSON ,
26+ FLAG_DRY_RUN ,
27+ GQL_PR_STATE_OPEN ,
28+ } from '../../constants.mts'
2629import { handleApiCall } from '../../utils/api.mts'
2730import { cmdFlagValueToArray } from '../../utils/cmd.mts'
2831import { spawnCoanaDlx } from '../../utils/dlx.mts'
You can’t perform that action at this time.
0 commit comments