Skip to content

Commit 071e575

Browse files
committed
Bump to v1.1.27
1 parent 9132a5f commit 071e575

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.27](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.27) - 2025-11-12
8+
9+
### Added
10+
- Backported `--exclude` and `--include` flags for `socket fix` command from v2
11+
712
## [1.1.26](https://github.com/SocketDev/socket-cli/releases/tag/v1.1.26) - 2025-11-08
813

914
### Added

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.26",
3+
"version": "1.1.27",
44
"description": "CLI for Socket.dev",
55
"homepage": "https://github.com/SocketDev/socket-cli",
66
"license": "MIT AND OFL-1.1",

src/commands/fix/cmd-fix.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import path from 'node:path'
2+
23
import terminalLink from 'terminal-link'
34

45
import { arrayUnique, joinOr } from '@socketsecurity/registry/lib/arrays'
56
import { logger } from '@socketsecurity/registry/lib/logger'
67

8+
import { handleFix } from './handle-fix.mts'
79
import constants, {
810
ERROR_UNABLE_RESOLVE_ORG,
911
FLAG_ID,
@@ -19,7 +21,6 @@ import {
1921
} from '../../utils/output-formatting.mts'
2022
import { RangeStyles } from '../../utils/semver.mts'
2123
import { getDefaultOrgSlug } from '../ci/fetch-default-org-slug.mts'
22-
import { handleFix } from './handle-fix.mts'
2324

2425
import type { MeowFlag, MeowFlags } from '../../flags.mts'
2526
import type {

src/commands/fix/cmd-fix.test.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import path from 'node:path'
2+
23
import { afterAll, afterEach, beforeAll, describe, expect } from 'vitest'
34

45
import { logger } from '@socketsecurity/registry/lib/logger'

0 commit comments

Comments
 (0)