-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1595 from aboutcode-org/release_v34.0.1
Prepare for release v34.0.1
- Loading branch information
Showing
4 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
vulnerabilities/migrations/0063_alter_packagechangelog_software_version_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Generated by Django 4.2 on 2024-09-17 16:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("vulnerabilities", "0062_package_is_ghost"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="packagechangelog", | ||
name="software_version", | ||
field=models.CharField( | ||
default="34.0.1", | ||
help_text="Version of the software at the time of change", | ||
max_length=100, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="vulnerabilitychangelog", | ||
name="software_version", | ||
field=models.CharField( | ||
default="34.0.1", | ||
help_text="Version of the software at the time of change", | ||
max_length=100, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters