Skip to content

Commit f0e0092

Browse files
authored
release: v1.23.0 (#647)
1 parent e8b8299 commit f0e0092

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [1.23.0] - 2026-06-13
8+
9+
### Added
10+
- Graded output for MAL- advisories from git sources: terminal shows `⚠ Git source (SHA-pinned)` or `⚠ Git source (floating ref)` with resolved URL; HTML report shows orange badge; `isGitSource()` and `hasCommitShaPinning()` detection functions (#618)
11+
- `multiple-versions-same-pkg` and `git-source-mal` example fixtures
12+
13+
### Fixed
14+
- Error handling and cleanup for SARIF, CycloneDX, and HTML report file writes; pre-existing directories preserved on write failure (#628)
15+
- Duplicate `db.close()` call removed from osv-sync catch block that could mask original error (#629)
16+
17+
### Performance
18+
- CVE detail fetches now run concurrently via `runWithConcurrency` instead of serially — 2.2x faster on cold cache for large lockfiles (#645)
19+
- Packument cache pre-warmed before transitive remediation loop to eliminate serial npm registry round-trips (#645)
20+
721
## [1.22.0] - 2026-06-11
822

923
### Added

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.22.0",
3+
"version": "1.23.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.22.0';
5+
const latestVersion = 'v1.23.0';
66

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

0 commit comments

Comments
 (0)