Skip to content

Commit cb38a58

Browse files
authored
Release v34.0.0rc5 (#1553)
* Add changelog for v34.0.0rc5 Signed-off-by: Tushar Goel <[email protected]> * Add migrations Signed-off-by: Tushar Goel <[email protected]> --------- Signed-off-by: Tushar Goel <[email protected]>
1 parent 8b6aaf5 commit cb38a58

File tree

3 files changed

+77
-1
lines changed

3 files changed

+77
-1
lines changed

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Release notes
22
=============
33

4+
Version v34.0.0rc5
5+
-------------------
6+
7+
- Add safetydb importer.
8+
- Add missing width setting for the table in the vulnerability details UI.
9+
- Add KEV support.
10+
- Add UI template for API.
11+
- Use VersionRange.normalize to compare advisory.
12+
- Use integer column to display score.
13+
- Add support for CVSSv4 & SSVC and import the data using vulnrichment.
14+
- Add support for reference_type in the API.
15+
- Add API improvements for the package endpoint.
16+
17+
418
Version v34.0.0rc4
519
-------------------
620

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Generated by Django 4.1.13 on 2024-08-14 14:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0059_vulnerabilityseverity_published_at_and_more"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="kev",
15+
name="known_ransomware_campaign_use",
16+
field=models.BooleanField(
17+
default=False,
18+
help_text="Known if this vulnerability is known to have been leveraged as part of a ransomware campaign;\n or 'Unknown' if CISA lacks confirmation that the vulnerability has been utilized for ransomware.",
19+
),
20+
),
21+
migrations.AlterField(
22+
model_name="packagechangelog",
23+
name="software_version",
24+
field=models.CharField(
25+
default="34.0.0rc5",
26+
help_text="Version of the software at the time of change",
27+
max_length=100,
28+
),
29+
),
30+
migrations.AlterField(
31+
model_name="vulnerabilitychangelog",
32+
name="software_version",
33+
field=models.CharField(
34+
default="34.0.0rc5",
35+
help_text="Version of the software at the time of change",
36+
max_length=100,
37+
),
38+
),
39+
migrations.AlterField(
40+
model_name="vulnerabilityseverity",
41+
name="scoring_system",
42+
field=models.CharField(
43+
choices=[
44+
("cvssv2", "CVSSv2 Base Score"),
45+
("cvssv3", "CVSSv3 Base Score"),
46+
("cvssv3.1", "CVSSv3.1 Base Score"),
47+
("cvssv4", "CVSSv4 Base Score"),
48+
("rhbs", "RedHat Bugzilla severity"),
49+
("rhas", "RedHat Aggregate severity"),
50+
("archlinux", "Archlinux Vulnerability Group Severity"),
51+
("cvssv3.1_qr", "CVSSv3.1 Qualitative Severity Rating"),
52+
("generic_textual", "Generic textual severity rating"),
53+
("apache_httpd", "Apache Httpd Severity"),
54+
("apache_tomcat", "Apache Tomcat Severity"),
55+
("epss", "Exploit Prediction Scoring System"),
56+
("ssvc", "Stakeholder-Specific Vulnerability Categorization"),
57+
],
58+
help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization ",
59+
max_length=50,
60+
),
61+
),
62+
]

vulnerablecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import warnings
1313
from pathlib import Path
1414

15-
__version__ = "34.0.0rc4"
15+
__version__ = "34.0.0rc5"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)