diff --git a/README.md b/README.md index 91a4613..e114c8a 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ republishes the advisories in the OSV format, and syncs them against the - [x] Automatic Update - [ ] Automatic Sync (to GSD) - [ ] Schema: Provide `credits` -- [ ] Schema: Provide impacted packages +- [x] Schema: Provide impacted packages +- [ ] Schema: Provide all impacted packages, with version number that fixes the issue. - [ ] Schema: Provide summary/details/severity - [ ] Schema: Provide SHA256 hashes under database_specific - ## License Licensed under the [MIT License](https://nemo.mit-license.org/). See LICENSE file for details. \ No newline at end of file diff --git a/advisories/.gitkeep b/advisories/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/generate.py b/generate.py index ffad009..2fa8e10 100644 --- a/generate.py +++ b/generate.py @@ -89,7 +89,7 @@ def merge_advisories(advisory_file, data): current['related'].extend(data['related']) # Make sure no CVE references are duplicated - current['references'] = list(set(current['references'])) + current['related'] = list(set(current['related'])) # Pick the earlier published date # and the later modified date