Skip to content

Releases: RedHatProductSecurity/cvelib

1.4.0

15 May 18:14
Compare
Choose a tag to compare

Changes:

  • Updated CVE JSON schema to version 5.1.0, which makes it compatible with CVE Services 2.3.x (#79).

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

1.3.0

26 Jan 20:15
Compare
Choose a tag to compare

Changes:

  • Fixed displaying timestamps for older records (#66).
  • Added auto-completion of sub-commands (#73).
  • Added support for ADP containers (#70):
    • A new publish-adp command is added that allows publishing of ADP containers into an existing CVE record (this is
      only possible if a CVE is in the published state).
    • The show subcommand now allows displaying a CNA container or all/subset of existing ADP containers (identified by
      the org's name that created it).
    • ADP containers can only be published and updated, so there is no functionality to remove them.
  • CVE state constants were updated to match the case used by CVE Services, e.g. rejected -> REJECTED (#75).
  • Fixed displaying CVE ID reservations for records that are missing the user attribute (#76).

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

1.2.1

16 Feb 18:06
2011356
Compare
Choose a tag to compare

Changes:

  • Improved CveRecordValidationError exception error message.

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

1.2.0

02 Dec 13:47
Compare
Choose a tag to compare

Changes:

  • The list and users commands have a new -N/--no-header option that skips printing a header in the table output. (#55).
  • The bundled CNA Published JSON schema is used by default when calling CveRecord.validate() (#57).
  • The jsonschema required dependency was relaxed to an older version (#54).

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

1.1.0

11 Nov 18:22
Compare
Choose a tag to compare

Changes:

  • 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.

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

1.0.0

03 Oct 17:29
b8a4db6
Compare
Choose a tag to compare

Changes:

  • 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.
    • 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.

Update your existing cvelib package with:

pip install --user --upgrade cvelib

or update your container image with:

podman pull quay.io/prodsecdev/cvelib
# OR
docker pull quay.io/prodsecdev/cvelib

0.7.0

06 Feb 13:20
158666d
Compare
Choose a tag to compare
  • Reverted commit c1f5ede, which is (for now) incompatible with the currently available version of CVE Services.

0.6.0

17 Dec 18:40
869d951
Compare
Choose a tag to compare
  • Added prompt for API key if not specified via env var or option (#13).
  • Updated list of environments to include "test".
  • Renamed reset_token subcommand to reset_key.

0.5.0

25 Oct 22:53
74158c8
Compare
Choose a tag to compare
  • Fixed API key not being returned when creating a new user (#8).

0.4.0

15 Jun 17:16
2269b42
Compare
Choose a tag to compare

This release adds support for CVE Services 1.1.0, the changes in which are documented at https://github.com/CVEProject/cve-services/wiki/Release-Cycle-Report-3-23-2021-v1.1.0.

  • Added cve org command.
  • Added cve user command.
  • Refactored Idr interface into a general CveApi interface.
  • Fixed error when showing a CVE that is owned by a different CNA.