Skip to content

Commit 6828a5b

Browse files
committed
Prepare v1.2.0 release
- Update changelog - Update version to 1.2.0 (without dev0) Signed-off-by: Benjamin Robin <benjamin.robin@bootlin.com>
1 parent 2271a06 commit 6828a5b

2 files changed

Lines changed: 43 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,51 @@
11

2-
## v1.2.0 (Unreleased)
2+
## v1.3.0 (Unreleased)
33

44
### Added or Changed
55

66
### Fixed
77

8+
## v1.2.0
9+
10+
### Added or Changed
11+
12+
- **Added** `--disable-auto-updates` flag to disable automatic updates for all
13+
Git databases. This allows running `sbom-cve-check` without network access.
14+
- **Added** `--export-process-native` flag to process only target and/or native
15+
components.
16+
- **Added** `--export-spdx-pkg-include-vex` flag. For SPDX 3 exports, this flag
17+
links VEX information directly to binary (install) package outputs. If
18+
omitted, VEX information is linked only to the common recipe generating the
19+
binary packages, provided the SPDX 3 document includes such an object
20+
(specification package).
21+
- **Added** `summary` text report exporter type ([#11](
22+
https://github.com/bootlin/sbom-cve-check/pull/11)).
23+
- Exported files can now be generated to `stdout`.
24+
- **Updated** the method for extracting packages from an SPDX 3.0 SBOM. The SBOM
25+
no longer requires a `build_Build` object, and support for specification
26+
packages has been added.
27+
- Yocto `cve-check` export files can now include the Yocto Project layer,
28+
extracted from the PURL if present.
29+
- Annotations are now only considered if the component identifier and version
30+
(from the CPE or package version) in the SBOM match the annotation
31+
information. Previously if the annotation version did not match, we would
32+
still use the annotation information to associate the CVE id to the tested
33+
component.
34+
- **Added** extraction of patches associated with a VEX "fixed" assessment
35+
relationship from SPDX 3.0 SBOMs.
36+
- **Added** support for compression for input and exported files. Files with
37+
the `.zst` extension are automatically handled.
38+
39+
### Fixed
40+
41+
- **Improved** version parsing and range checking ([#12](
42+
https://github.com/bootlin/sbom-cve-check/pull/12), [#13](
43+
https://github.com/bootlin/sbom-cve-check/issues/13)).
44+
- **Fixed** generation of the TOM file produced by `--gen-repro-config` when
45+
`auto_update_max_age=` was set to `0`.
46+
- **Fixed** handling of the `cpeApplicability` property in `cvelistV5` entries
47+
if invalid ([#15](https://github.com/bootlin/sbom-cve-check/issues/15)).
48+
849
## v1.1.0
950

1051
### Added or Changed

src/sbom_cve_check/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
# SPDX-License-Identifier: GPL-2.0-only
33

4-
__version__ = "1.2.0.dev0"
4+
__version__ = "1.2.0"

0 commit comments

Comments
 (0)