Skip to content

Commit 0307380

Browse files
committed
Bump version to 1.1.32
1 parent 62196d1 commit 0307380

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.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

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.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",

src/commands/fix/coana-fix.mts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { promises as fs } from 'node:fs'
22
import os from 'node:os'
33
import path from 'node:path'
44

5-
import { DOT_SOCKET_DOT_FACTS_JSON } from '../../constants.mts'
65
import { joinAnd } from '@socketsecurity/registry/lib/arrays'
76
import { debugDir, debugFn } from '@socketsecurity/registry/lib/debug'
87
import { readJsonSync } from '@socketsecurity/registry/lib/fs'
@@ -22,7 +21,11 @@ import {
2221
} from './env-helpers.mts'
2322
import { getSocketFixBranchName, getSocketFixCommitMessage } from './git.mts'
2423
import { 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'
2629
import { handleApiCall } from '../../utils/api.mts'
2730
import { cmdFlagValueToArray } from '../../utils/cmd.mts'
2831
import { spawnCoanaDlx } from '../../utils/dlx.mts'

0 commit comments

Comments
 (0)