diff --git a/CHANGELOG.md b/CHANGELOG.md index 12243f357..b3656ac7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [1.1.32](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.32) - 2025-11-20 + +### Changed +- Updated @coana-tech/cli to 14.12.90 +- Updated @cyclonedx/cdxgen to 11.11.0 + +### Fixed +- Resolved `--limit` flag behavior to correctly restrict vulnerability processing in `socket fix` local mode +- Exclude `.socket.facts.json` files from `socket fix` manifest uploads + ## [1.1.31](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.31) - 2025-11-19 ### Fixed diff --git a/package.json b/package.json index 778ce591b..876ea3062 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "socket", - "version": "1.1.31", + "version": "1.1.32", "description": "CLI for Socket.dev", "homepage": "https://github.com/SocketDev/socket-cli", "license": "MIT AND OFL-1.1", diff --git a/src/commands/fix/coana-fix.mts b/src/commands/fix/coana-fix.mts index fc7325ea8..e72cc370b 100644 --- a/src/commands/fix/coana-fix.mts +++ b/src/commands/fix/coana-fix.mts @@ -2,7 +2,6 @@ import { promises as fs } from 'node:fs' import os from 'node:os' import path from 'node:path' -import { DOT_SOCKET_DOT_FACTS_JSON } from '../../constants.mts' import { joinAnd } from '@socketsecurity/registry/lib/arrays' import { debugDir, debugFn } from '@socketsecurity/registry/lib/debug' import { readJsonSync } from '@socketsecurity/registry/lib/fs' @@ -22,7 +21,11 @@ import { } from './env-helpers.mts' import { getSocketFixBranchName, getSocketFixCommitMessage } from './git.mts' import { getSocketFixPrs, openSocketFixPr } from './pull-request.mts' -import { FLAG_DRY_RUN, GQL_PR_STATE_OPEN } from '../../constants.mts' +import { + DOT_SOCKET_DOT_FACTS_JSON, + FLAG_DRY_RUN, + GQL_PR_STATE_OPEN, +} from '../../constants.mts' import { handleApiCall } from '../../utils/api.mts' import { cmdFlagValueToArray } from '../../utils/cmd.mts' import { spawnCoanaDlx } from '../../utils/dlx.mts'