-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- we should permit .releaseNotes.cves since the docs mention them and populate-release-notes-images requires them Signed-off-by: Scott Hebert <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,6 +152,30 @@ | |
"type": "string" | ||
} | ||
}, | ||
"cves": { | ||
"type": "array", | ||
"items": { | ||
"additionalProperties": false, | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"description": "The key of the CVE e.g. CVE-3414" | ||
}, | ||
"component": { | ||
"type": "string", | ||
"description": "The name of the component" | ||
}, | ||
"packages": { | ||
"type": "array", | ||
"description": "A list of packages that fixed the CVE e.g. [ 'pkg:golang/golang.org/x/net/[email protected]' ]", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"issues": { | ||
"type": "object", | ||
"additionalProperties": false, | ||
|