Skip to content

Commit 97546a6

Browse files
authored
release: v1.24.0 (#699)
1 parent 80f5246 commit 97546a6

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ All notable changes to CVE Lite CLI will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.24.0] - 2026-06-17
8+
9+
### Added
10+
- `--sarif` can now be combined with `--report` to write both a SARIF file and an HTML report in one scan; useful for CI pipelines that upload to GitHub Code Scanning and also attach an HTML artifact for human review (#681)
11+
12+
### Fixed
13+
- Fix commands now include `-D` flag for dev dependencies (`npm install -D`, `pnpm add -D`, `yarn add -D`, `bun add --dev`); mixed dev/prod batches split into separate commands (#689, #690)
14+
- GitHub Action now installs cve-lite-cli via `npm install --prefix` and appends the bin dir to `$GITHUB_PATH`, fixing `cve-lite: not found` errors on npm 10.x runners where npx cannot resolve a binary name different from the package name (#691, #692)
15+
16+
### Changed
17+
- Upgrade jest to 30.4.1; add `.cve-lite/baseline.json` to suppress unfixable `js-yaml@3.14.2` transitive dev dep (GHSA-h67p-54hq-rp68) (#693, #694)
18+
19+
### Docs
20+
- Socket CLI comparison expanded with structured sections and concrete examples (#655)
21+
722
## [1.23.1] - 2026-06-15
823

924
### Performance

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cve-lite-cli",
3-
"version": "1.23.1",
3+
"version": "1.24.0",
44
"description": "Developer-friendly CLI for scanning JS/TS projects for dependency vulnerabilities using local lockfiles and OSV",
55
"type": "module",
66
"bin": {

website/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {themes as prismThemes} from 'prism-react-renderer';
22
import type {Config} from '@docusaurus/types';
33
import type * as Preset from '@docusaurus/preset-classic';
44

5-
const latestVersion = 'v1.23.1';
5+
const latestVersion = 'v1.24.0';
66

77
const config: Config = {
88
title: 'CVE Lite CLI',

0 commit comments

Comments
 (0)