Skip to content

Commit 766cb3e

Browse files
authored
Prepare for release v34.0.0rc3 (#1426)
* Prepare for release v34.0.0rc3 Signed-off-by: Tushar Goel <[email protected]> * Fix Changelog Signed-off-by: Tushar Goel <[email protected]> --------- Signed-off-by: Tushar Goel <[email protected]>
1 parent 0341451 commit 766cb3e

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

CHANGELOG.rst

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

4+
Version v34.0.0rc3
5+
-------------------
6+
7+
- Add resource URL to the vulnerability and package details view in the API serializers (#1423)
8+
- Add support for all osv ecosystems (#926)
9+
- Add RubyImporter to git_importer test_git_importer_clone (#799)
10+
- Remove duplicated changelogs (#1400)
11+
- Fix Encoding Type in Fireeye Importer (#1404)
12+
- Add license_url for GitHub Importer (#1392)
13+
- Add support for CVSS vectors display (#1312)
14+
15+
416
Version v34.0.0rc2
517
-------------------
618

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-02-26 13:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0056_alter_packagechangelog_unique_together_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.0rc3",
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.0rc3",
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.0rc2"
15+
__version__ = "34.0.0rc3"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)