Skip to content

Commit f056460

Browse files
authored
Merge pull request #111 from RedHatProductSecurity/release-1.8.0
Bump version to 1.8.0
2 parents eeeba2a + 9e07c07 commit f056460

21 files changed

+71
-20
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [1.8.0](https://github.com/RedHatProductSecurity/cvelib/compare/1.7.1...1.8.0) (Sep 29, 2025)
4+
5+
* Add support for the /cve_count endpoint (#105).
6+
* Add new subcommand for transfering CVE IDs to other CNAs (#109)
7+
38
## [1.7.1](https://github.com/RedHatProductSecurity/cvelib/compare/1.7.0...1.7.1) (Dec 6, 2024)
49

510
* Fixed unnecessarily requiring authentication option to be specified for `validate` subcommand (#99).

cvelib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.7.1"
1+
__version__ = "1.8.0"

man/cve-count.1

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.TH "CVE COUNT" "1" "2025-09-29" "1.8.0" "cve count Manual"
2+
.SH NAME
3+
cve\-count \- Display the total count of CVE records,...
4+
.SH SYNOPSIS
5+
.B cve count
6+
[OPTIONS]
7+
.SH DESCRIPTION
8+
Display the total count of CVE records, optionally filtered by state.
9+
.PP
10+
This retrieves the count of all CVE records across all organizations, and can be
11+
filtered by state (PUBLISHED, REJECTED).
12+
.PP
13+
.SH OPTIONS
14+
.TP
15+
\fB\-\-state\fP [published|rejected]
16+
Filter count by record state.
17+
.TP
18+
\fB\-\-raw\fP
19+
Print response JSON.

man/cve-list.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE LIST" "1" "2024-12-06" "1.7.1" "cve list Manual"
1+
.TH "CVE LIST" "1" "2025-09-29" "1.8.0" "cve list Manual"
22
.SH NAME
33
cve\-list \- Filter and list reserved CVE IDs owned by...
44
.SH SYNOPSIS
@@ -20,8 +20,8 @@ Sort output.
2020
\fB\-\-year\fP TEXT
2121
Filter by year.
2222
.TP
23-
\fB\-\-state\fP [RESERVED|PUBLISHED|REJECTED]
24-
Filter by reservation state.
23+
\fB\-\-state\fP [reserved|published|rejected]
24+
Filter by reservation/record state.
2525
.TP
2626
\fB\-\-reserved\-lt\fP [%Y\-%m\-%d|%Y\-%m\-%dT%H:%M:%S|%Y\-%m\-%d %H:%M:%S]
2727
Filter by reservation time before timestamp.

man/cve-org-users.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE ORG USERS" "1" "2024-12-06" "1.7.1" "cve org users Manual"
1+
.TH "CVE ORG USERS" "1" "2025-09-29" "1.8.0" "cve org users Manual"
22
.SH NAME
33
cve\-org\-users \- List all users in your organization.
44
.SH SYNOPSIS

man/cve-org.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE ORG" "1" "2024-12-06" "1.7.1" "cve org Manual"
1+
.TH "CVE ORG" "1" "2025-09-29" "1.8.0" "cve org Manual"
22
.SH NAME
33
cve\-org \- Show information about your organization.
44
.SH SYNOPSIS

man/cve-ping.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE PING" "1" "2024-12-06" "1.7.1" "cve ping Manual"
1+
.TH "CVE PING" "1" "2025-09-29" "1.8.0" "cve ping Manual"
22
.SH NAME
33
cve\-ping \- Ping the CVE Services API to see if it is up.
44
.SH SYNOPSIS

man/cve-publish-adp.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE PUBLISH-ADP" "1" "2024-12-06" "1.7.1" "cve publish-adp Manual"
1+
.TH "CVE PUBLISH-ADP" "1" "2025-09-29" "1.8.0" "cve publish-adp Manual"
22
.SH NAME
33
cve\-publish-adp \- Add or update an ADP container in a CVE...
44
.SH SYNOPSIS

man/cve-publish.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE PUBLISH" "1" "2024-12-06" "1.7.1" "cve publish Manual"
1+
.TH "CVE PUBLISH" "1" "2025-09-29" "1.8.0" "cve publish Manual"
22
.SH NAME
33
cve\-publish \- Publish a CNA container of a CVE record...
44
.SH SYNOPSIS

man/cve-quota.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "CVE QUOTA" "1" "2024-12-06" "1.7.1" "cve quota Manual"
1+
.TH "CVE QUOTA" "1" "2025-09-29" "1.8.0" "cve quota Manual"
22
.SH NAME
33
cve\-quota \- Display the available CVE ID quota for...
44
.SH SYNOPSIS

0 commit comments

Comments
 (0)