Skip to content

Commit 2de88cb

Browse files
authored
Prepare for release v34.0.0rc2 (#1390)
* Prepare for release v34.0.0rc2 Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com> --------- Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 2308450 commit 2de88cb

3 files changed

Lines changed: 47 additions & 1 deletion

File tree

CHANGELOG.rst

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

4+
Version v34.0.0rc2
5+
-------------------
6+
7+
- We updated package-url models, WARNING: in next major version of
8+
vulnerablecode i.e v35.0.0 qualifiers will be of type ``string`` and not ``dict``.
9+
- We added changelog and dates on packages and vulnerabilities.
10+
- We fixed table borders in Vulnerability details UI #1356 (#1358)
11+
- We added robots.txt in views.
12+
- We fixed import runner's process_inferences (#1360)
13+
- We fixed debian OVAL importer (#1361)
14+
- We added graph model diagrams #977(#1350)
15+
- We added endpoint for purl lookup (#1359)
16+
- We fixed swagger API docs generation (#1366)
17+
- Fix issues https://github.com/nexB/vulnerablecode/issues/1385, https://github.com/nexB/vulnerablecode/issues/1387
18+
419

520
Version v34.0.0rc1
621
-------------------
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Generated by Django 4.1.13 on 2024-01-09 17:40
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0053_alter_packagechangelog_software_version_and_more"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="packagechangelog",
15+
name="software_version",
16+
field=models.CharField(
17+
default="34.0.0rc2",
18+
help_text="Version of the software at the time of change",
19+
max_length=100,
20+
),
21+
),
22+
migrations.AlterField(
23+
model_name="vulnerabilitychangelog",
24+
name="software_version",
25+
field=models.CharField(
26+
default="34.0.0rc2",
27+
help_text="Version of the software at the time of change",
28+
max_length=100,
29+
),
30+
),
31+
]

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.0rc1"
15+
__version__ = "34.0.0rc2"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)