Skip to content

Commit b4a6913

Browse files
authored
release: v1.23.1 (#675)
1 parent 8b06888 commit b4a6913

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.23.1] - 2026-06-15
8+
9+
### Performance
10+
- npm lockfile graph construction reduced from O(E*V) to O(E) using Set accumulators for edge lists (#652)
11+
- npm lockfile graph nodes and arrays pre-frozen at construction time; redundant uniquePathArrays removed (#654)
12+
- Remediation package lookup replaced with Map for O(1) access (#653)
13+
14+
### Docs
15+
- Four new case studies: Strapi (Yarn Berry, 2,887 packages), Twenty (Yarn Berry, 5,451 packages), Presenton (dual npm lockfiles), Payload CMS (pnpm, 2,602 packages) (#593, #594, #595, #638)
16+
- OWASP Lab Project status reflected across all project docs: README, CONTRIBUTING, comparison page, case studies index, and press page (#673)
17+
18+
### Changed
19+
- SARIF, CycloneDX, and HTML reporter file-write cleanup refactored for clarity; test spy coverage refined (#637)
20+
- Case study contribution scope clarified in CONTRIBUTING: contributors submit case-study files only, shared index files maintained by maintainer (#649)
21+
722
## [1.23.0] - 2026-06-13
823

924
### 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.23.0",
3+
"version": "1.23.1",
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.0';
5+
const latestVersion = 'v1.23.1';
66

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

0 commit comments

Comments
 (0)