From 37c98bf5e8fae9af2f20807c80a8fc7d45730cad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Fri, 11 Nov 2022 10:40:36 -0500 Subject: [PATCH] Bump release to 1.1.0 --- CHANGELOG.md | 15 ++++++++++++++- cvelib/__init__.py | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f62120..9f774ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,23 @@ # Changelog +## [1.1.0](https://github.com/RedHatProductSecurity/cvelib/compare/1.0.0...1.1.0) (Nov 11, 2022) + +* The `publish` and `reject` subcommands have a new `-f/--cve-json-file` option that allows submitting CVE records from + a file (#18). +* Added CVE v5 JSON schema (5.0.0) validation when publishing a CVE record (#39). +* Full CVE v5 records can now be used when publishing a CVE; the CNA container is parsed from the CVE record + automatically (#42). +* Automatically add `providerMetadata` from the org used when authenticating against CVE Services if it is missing in + the supplied CVE record (#19). +* Added CVE v5 JSON 5.0.0 schemas under `cvelib/schemas` along with a script that extracts container-level sub-schemas. +* `cve show --show-record --raw` now outputs a valid CVE record only (#44). +* Dropped support for Python 3.6. + ## [1.0.0](https://github.com/RedHatProductSecurity/cvelib/compare/0.7.0...1.0.0) (Oct 3, 2022) * Added support for CVE Services 2.1: * New subcommands: `publish`, `reject`, `undo-reject`. - * The `show` subcommand now indluced a `--show-record` option to view a CVE's record. + * The `show` subcommand now includes a `--show-record` option to view a CVE's record. * Added several new methods in the `CveApi` interface to reflect new CVE Services API endpoints. * Fixed sorting by the reserved timestamp when using the `list` subcommand. diff --git a/cvelib/__init__.py b/cvelib/__init__.py index 5becc17..6849410 100644 --- a/cvelib/__init__.py +++ b/cvelib/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.1.0"