Skip to content

Commit 5cdca84

Browse files
authored
Merge pull request #1642 from aboutcode-org/v34.1.0
Prepare for release v34.1.0
2 parents 5193239 + ee8b6c4 commit 5cdca84

File tree

4 files changed

+45
-2
lines changed

4 files changed

+45
-2
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Release notes
44
Version (next)
55
-------------------
66

7+
Version v34.1.0
8+
-------------------
9+
10+
- Add support for Calculating Package Vulnerability Risk #1593
11+
- Migrate pysec importer to aboutcode pipeline #1628
12+
- Fix 500 error in /api/cpes endpoint #1629
13+
- Add documentation for new pipeline design #1621
14+
- Segregate PackageRelatedVulnerability model to new models #1612
15+
- Add GitHub action to publish aboutcode.hashid PyPI #1615
16+
- Fix vers range crash #1598
17+
- Use 4-tier system for storing package metadata #1609
18+
719

820
Version v34.0.2
921
-------------------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = vulnerablecode
3-
version = 34.0.2
3+
version = 34.1.0
44
license = Apache-2.0 AND CC-BY-SA-4.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Generated by Django 4.2.16 on 2024-11-08 07:38
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0075_package_risk_score"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="packagechangelog",
15+
name="software_version",
16+
field=models.CharField(
17+
default="34.1.0",
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.1.0",
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.2"
15+
__version__ = "34.1.0"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)