diff --git a/CHANGES/404.feature b/CHANGES/404.feature new file mode 100644 index 000000000..402ff1d2e --- /dev/null +++ b/CHANGES/404.feature @@ -0,0 +1 @@ +Python package content can now be filtered by their sha256 diff --git a/pulp_python/app/viewsets.py b/pulp_python/app/viewsets.py index 737f1df68..8e148392b 100644 --- a/pulp_python/app/viewsets.py +++ b/pulp_python/app/viewsets.py @@ -99,6 +99,7 @@ class Meta: 'requires_python': ['exact', 'in', "contains"], 'filename': ['exact', 'in', 'contains'], 'keywords': ['in', 'contains'], + 'sha256': ['exact', 'in'], }