From 7ea3032f077772acae0656c08de5c2dfdb46b934 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Fri, 22 May 2026 16:00:00 -0400 Subject: [PATCH] release: v1.17.3 --- CHANGELOG.md | 7 ++++++- package-lock.json | 4 ++-- package.json | 2 +- website/docusaurus.config.ts | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42b5ffa..5051002 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,15 @@ All notable changes to CVE Lite CLI will be documented in this file. +## [1.17.3] - 2026-05-22 + +### Fixed +- SSL certificate errors from corporate proxy inspection now reliably show actionable `NODE_EXTRA_CA_CERTS` and `NODE_TLS_REJECT_UNAUTHORIZED=0` guidance by checking Node.js error codes and walking the error cause chain, rather than string matching on the top-level message. + ## [1.17.2] - 2026-05-22 ### Fixed -- SSL certificate errors from corporate proxy inspection now show a clear, actionable message with `NODE_EXTRA_CA_CERTS` and `NODE_TLS_REJECT_UNAUTHORIZED` workarounds instead of a raw Node.js TLS error. +- SSL certificate errors from corporate proxy inspection now show a clear, actionable message with `NODE_EXTRA_CA_CERTS` and `NODE_TLS_REJECT_UNAUTHORIZED=0` workarounds instead of a raw Node.js TLS error. ## [1.17.1] - 2026-05-22 diff --git a/package-lock.json b/package-lock.json index 8b7ab5b..de179d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cve-lite-cli", - "version": "1.17.2", + "version": "1.17.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cve-lite-cli", - "version": "1.17.2", + "version": "1.17.3", "license": "MIT", "dependencies": { "better-sqlite3": "^12.8.0", diff --git a/package.json b/package.json index beaa9a1..193584c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cve-lite-cli", - "version": "1.17.2", + "version": "1.17.3", "description": "Developer-friendly CLI for scanning JS/TS projects for dependency vulnerabilities using local lockfiles and OSV", "type": "module", "bin": { diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index 7f5d637..f054755 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -2,7 +2,7 @@ import {themes as prismThemes} from 'prism-react-renderer'; import type {Config} from '@docusaurus/types'; import type * as Preset from '@docusaurus/preset-classic'; -const latestVersion = 'v1.17.2'; +const latestVersion = 'v1.17.3'; const config: Config = { title: 'CVE Lite CLI',