Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: renovatebot/renovate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 39.215.0
Choose a base ref
...
head repository: renovatebot/renovate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2180cd330c22b911753ef4f4a0e0b55f04a7d53c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 25, 2025

  1. fix: CVSS4.0 vector parse exception - vulnerability severity fallback (

    …#35003)
    
    Signed-off-by: Adam Setch <adam.setch@outlook.com>
    setchy authored Mar 25, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    2180cd3 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/workers/repository/process/vulnerabilities.ts
2 changes: 1 addition & 1 deletion lib/workers/repository/process/vulnerabilities.ts
Original file line number Diff line number Diff line change
@@ -598,7 +598,7 @@ export class Vulnerabilities {

if (cvssVector) {
const [baseScore, severity] = this.evaluateCvssVector(cvssVector);
severityLevel = severity.toUpperCase();
severityLevel = severity ? severity.toUpperCase() : 'UNKNOWN';
score = baseScore
? `${baseScore} / 10 (${titleCase(severityLevel)})`
: 'Unknown';