-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the ability to select md5, sha1, or sha224 as the checksum type
closes #2488
- Loading branch information
Showing
4 changed files
with
50 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Removed support for publishing repos with a checksum type of md5, sha1, or sha224 |
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
43 changes: 43 additions & 0 deletions
43
pulp_rpm/app/migrations/0056_alter_package_checksum_type_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,43 @@ | ||
# Generated by Django 4.2.5 on 2023-11-06 22:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('rpm', '0055_add_repo_config_field'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='package', | ||
name='checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')]), | ||
), | ||
migrations.AlterField( | ||
model_name='repometadatafile', | ||
name='checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')]), | ||
), | ||
migrations.AlterField( | ||
model_name='rpmpublication', | ||
name='metadata_checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')]), | ||
), | ||
migrations.AlterField( | ||
model_name='rpmpublication', | ||
name='package_checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')]), | ||
), | ||
migrations.AlterField( | ||
model_name='rpmrepository', | ||
name='metadata_checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')], null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='rpmrepository', | ||
name='package_checksum_type', | ||
field=models.TextField(choices=[('sha256', 'sha256'), ('sha384', 'sha384'), ('sha512', 'sha512')], null=True), | ||
), | ||
] |
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