pulpcore 3.83.2__py3-none-any.whl → 3.85.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulpcore might be problematic. Click here for more details.

Files changed (169) hide show
  1. pulp_certguard/app/__init__.py +1 -1
  2. pulp_certguard/app/models.py +7 -26
  3. pulp_certguard/app/serializers.py +0 -2
  4. pulp_certguard/rhsm/__init__.py +4 -0
  5. pulp_certguard/rhsm/rhsm_check_path.py +198 -0
  6. pulp_certguard/tests/unit/certdata.py +249 -0
  7. pulp_certguard/tests/unit/test_rhsm_check_path.py +213 -0
  8. pulp_file/app/__init__.py +1 -1
  9. pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py +0 -20
  10. pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py +1 -1
  11. pulpcore/app/apps.py +2 -12
  12. pulpcore/app/entrypoint.py +22 -22
  13. pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py +0 -95
  14. pulpcore/app/migrations/0091_systemid.py +1 -1
  15. pulpcore/app/migrations/0134_task_insert_trigger.py +81 -0
  16. pulpcore/app/migrations/0135_task_pulp_task_resources_index.py +25 -0
  17. pulp_file/app/migrations/0006_delete_filefilesystemexporter.py → pulpcore/app/migrations/0136_delete_basedistribution.py +3 -3
  18. pulpcore/app/migrations/0137_appstatus.py +33 -0
  19. pulpcore/app/migrations/0138_vulnerabilityreport.py +33 -0
  20. pulpcore/app/models/__init__.py +4 -1
  21. pulpcore/app/models/publication.py +0 -41
  22. pulpcore/app/models/status.py +145 -0
  23. pulpcore/app/models/task.py +8 -0
  24. pulpcore/app/models/vulnerability_report.py +34 -0
  25. pulpcore/app/serializers/__init__.py +1 -0
  26. pulpcore/app/serializers/content.py +13 -1
  27. pulpcore/app/serializers/repository.py +8 -1
  28. pulpcore/app/serializers/vulnerability_report.py +27 -0
  29. pulpcore/app/settings.py +13 -38
  30. pulpcore/app/tasks/__init__.py +2 -0
  31. pulpcore/app/tasks/purge.py +8 -5
  32. pulpcore/app/tasks/vulnerability_report.py +159 -0
  33. pulpcore/app/viewsets/__init__.py +1 -0
  34. pulpcore/app/viewsets/vulnerability_report.py +20 -0
  35. pulpcore/constants.py +8 -0
  36. pulpcore/content/__init__.py +23 -22
  37. pulpcore/content/handler.py +5 -2
  38. pulpcore/migrations.py +38 -11
  39. pulpcore/openapi/__init__.py +8 -0
  40. pulpcore/plugin/models/__init__.py +2 -0
  41. pulpcore/plugin/serializers/__init__.py +2 -0
  42. pulpcore/plugin/tasking.py +2 -0
  43. pulpcore/plugin/viewsets/__init__.py +2 -0
  44. pulpcore/pytest_plugin.py +21 -21
  45. pulpcore/tasking/entrypoint.py +12 -2
  46. pulpcore/tasking/tasks.py +5 -30
  47. pulpcore/tasking/worker.py +115 -74
  48. pulpcore/tests/functional/api/test_auth.py +18 -3
  49. pulpcore/tests/functional/api/test_login.py +62 -32
  50. pulpcore/tests/functional/api/test_openapi_schema.py +32 -15
  51. pulpcore/tests/functional/api/using_plugin/test_checkpoint.py +23 -1
  52. pulpcore/tests/functional/api/using_plugin/test_proxy.py +1 -1
  53. pulpcore/tests/unit/content/test_heartbeat.py +11 -8
  54. pulpcore/tests/unit/test_vulnerability_report.py +74 -0
  55. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/METADATA +13 -18
  56. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/RECORD +60 -156
  57. pulp_certguard/app/utils.py +0 -28
  58. pulp_certguard/tests/unit/test_models.py +0 -9
  59. pulp_file/app/migrations/0001_initial.py +0 -59
  60. pulp_file/app/migrations/0002_file_related_names.py +0 -55
  61. pulp_file/app/migrations/0003_auto_20191014_1721.py +0 -18
  62. pulp_file/app/migrations/0004_filefilesystemexporter.py +0 -21
  63. pulp_file/app/migrations/0005_filerepository.py +0 -24
  64. pulp_file/app/migrations/0007_filefilesystemexporter.py +0 -25
  65. pulp_file/app/migrations/0008_add_manifest_field.py +0 -19
  66. pulp_file/app/migrations/0009_move_data_to_new_master_distribution_model.py +0 -77
  67. pulp_file/app/migrations/0010_auto_publish.py +0 -23
  68. pulp_file/app/migrations/0011_fix_auto_publish.py +0 -36
  69. pulp_file/app/migrations/0012_delete_filefilesystemexporter.py +0 -28
  70. pulp_file/app/migrations/0013_file_acs.py +0 -24
  71. pulp_file/app/migrations/0014_new_rbac_permissions.py +0 -33
  72. pulp_file/app/migrations/0015_allow_null_manifest.py +0 -23
  73. pulp_file/app/migrations/0016_add_domain.py +0 -25
  74. pulpcore/app/migrations/0001_initial.py +0 -451
  75. pulpcore/app/migrations/0002_increase_artifact_size_field.py +0 -18
  76. pulpcore/app/migrations/0003_remove_upload_completed.py +0 -17
  77. pulpcore/app/migrations/0004_add_duplicated_reserved_resources.py +0 -45
  78. pulpcore/app/migrations/0005_progressreport_code.py +0 -19
  79. pulpcore/app/migrations/0006_repository_plugin_managed.py +0 -18
  80. pulpcore/app/migrations/0007_delete_progress_proxies.py +0 -19
  81. pulpcore/app/migrations/0008_published_metadata_as_content.py +0 -44
  82. pulpcore/app/migrations/0009_remove_task_non_fatal_errors.py +0 -17
  83. pulpcore/app/migrations/0010_pulp_fields.py +0 -570
  84. pulpcore/app/migrations/0011_relative_path.py +0 -28
  85. pulpcore/app/migrations/0012_auto_20191104_2000.py +0 -31
  86. pulpcore/app/migrations/0013_repository_pulp_type.py +0 -18
  87. pulpcore/app/migrations/0014_remove_repository_plugin_managed.py +0 -17
  88. pulpcore/app/migrations/0015_auto_20191112_1426.py +0 -33
  89. pulpcore/app/migrations/0016_charfield_to_textfield.py +0 -68
  90. pulpcore/app/migrations/0017_remove_task_parent.py +0 -17
  91. pulpcore/app/migrations/0018_auto_20191127_2350.py +0 -20
  92. pulpcore/app/migrations/0019_add_signing_service_model.py +0 -27
  93. pulpcore/app/migrations/0020_change_publishedartifact_constraints.py +0 -17
  94. pulpcore/app/migrations/0021_add_signing_service_foreign_key.py +0 -24
  95. pulpcore/app/migrations/0022_rename_last_version.py +0 -27
  96. pulpcore/app/migrations/0023_change_exporter_models.py +0 -82
  97. pulpcore/app/migrations/0024_use_local_storage_for_uploads.py +0 -19
  98. pulpcore/app/migrations/0025_task_parent_task.py +0 -19
  99. pulpcore/app/migrations/0026_task_group.py +0 -32
  100. pulpcore/app/migrations/0027_export_backend.py +0 -31
  101. pulpcore/app/migrations/0028_import_importer_pulpimporter_pulpimporterrepository.py +0 -85
  102. pulpcore/app/migrations/0029_export_delete.py +0 -19
  103. pulpcore/app/migrations/0030_taskgroup_all_tasks_dispatched.py +0 -24
  104. pulpcore/app/migrations/0031_import_export_validate_params.py +0 -19
  105. pulpcore/app/migrations/0032_export_to_chunks.py +0 -27
  106. pulpcore/app/migrations/0033_increase_remote_artifact_size_field.py +0 -18
  107. pulpcore/app/migrations/0034_groupprogressreport.py +0 -32
  108. pulpcore/app/migrations/0035_content_upstream_id.py +0 -18
  109. pulpcore/app/migrations/0036_unprotect_last_export.py +0 -19
  110. pulpcore/app/migrations/0037_pulptemporaryfile.py +0 -28
  111. pulpcore/app/migrations/0038_repository_remote.py +0 -19
  112. pulpcore/app/migrations/0039_change_download_concurrency.py +0 -25
  113. pulpcore/app/migrations/0040_set_admin_is_staff.py +0 -28
  114. pulpcore/app/migrations/0041_accesspolicy.py +0 -29
  115. pulpcore/app/migrations/0042_rbac_for_tasks.py +0 -56
  116. pulpcore/app/migrations/0043_toc_attribute.py +0 -19
  117. pulpcore/app/migrations/0044_temp_file_artifact_field.py +0 -20
  118. pulpcore/app/migrations/0045_accesspolicy_permissions_allow_null.py +0 -19
  119. pulpcore/app/migrations/0046_task__resource_job_id.py +0 -35
  120. pulpcore/app/migrations/0047_improve_orphan_cleanup.py +0 -59
  121. pulpcore/app/migrations/0048_fips_checksums.py +0 -38
  122. pulpcore/app/migrations/0049_add_file_field_to_uploadchunk.py +0 -24
  123. pulpcore/app/migrations/0050_namespace_access_policies.py +0 -28
  124. pulpcore/app/migrations/0051_timeoutfields.py +0 -34
  125. pulpcore/app/migrations/0052_tasking_logging_cid.py +0 -18
  126. pulpcore/app/migrations/0053_remote_headers.py +0 -19
  127. pulpcore/app/migrations/0054_add_public_key.py +0 -104
  128. pulpcore/app/migrations/0055_label.py +0 -31
  129. pulpcore/app/migrations/0056_remote_rate_limit.py +0 -18
  130. pulpcore/app/migrations/0057_add_label_indexes.py +0 -23
  131. pulpcore/app/migrations/0058_accesspolicy_customized.py +0 -18
  132. pulpcore/app/migrations/0059_proxy_creds.py +0 -23
  133. pulpcore/app/migrations/0060_data_migration_proxy_creds.py +0 -45
  134. pulpcore/app/migrations/0061_call_handle_artifact_checksums_command.py +0 -87
  135. pulpcore/app/migrations/0062_add_new_distribution_mastermodel.py +0 -36
  136. pulpcore/app/migrations/0063_repository_retained_versions.py +0 -18
  137. pulpcore/app/migrations/0064_add_new_style_task_columns.py +0 -109
  138. pulpcore/app/migrations/0064_repository_user_hidden.py +0 -18
  139. pulpcore/app/migrations/0065_merge_20210615_1211.py +0 -14
  140. pulpcore/app/migrations/0066_download_concurrency_and_retry_changes.py +0 -24
  141. pulpcore/app/migrations/0067_add_protect_to_task_reservation.py +0 -19
  142. pulpcore/app/migrations/0068_add_timestamp_of_interest.py +0 -23
  143. pulpcore/app/migrations/0069_update_json_fields.py +0 -63
  144. pulpcore/app/migrations/0070_rename_retained_versions.py +0 -18
  145. pulpcore/app/migrations/0071_filesystemexport_filesystemexporter.py +0 -35
  146. pulpcore/app/migrations/0072_add_method_to_filesystem_exporter.py +0 -18
  147. pulpcore/app/migrations/0073_encrypt_remote_fields.py +0 -139
  148. pulpcore/app/migrations/0074_acs.py +0 -47
  149. pulpcore/app/migrations/0075_rbaccontentguard.py +0 -25
  150. pulpcore/app/migrations/0076_remove_reserved_resource.py +0 -39
  151. pulpcore/app/migrations/0077_move_remote_url_credentials.py +0 -41
  152. pulpcore/app/migrations/0078_grouprole_role_userrole.py +0 -70
  153. pulpcore/app/migrations/0079_rename_permissions_assignment_accesspolicy_creation_hooks.py +0 -18
  154. pulpcore/app/migrations/0080_proxy_group_model.py +0 -37
  155. pulpcore/app/migrations/0081_reapplabel_group_permissions.py +0 -59
  156. pulpcore/app/migrations/0082_add_manage_roles_permissions.py +0 -17
  157. pulpcore/app/migrations/0083_alter_group_options.py +0 -17
  158. pulpcore/app/migrations/0084_alter_rbaccontentguard_options.py +0 -17
  159. pulpcore/app/migrations/0085_contentredirectcontentguard.py +0 -26
  160. pulpcore/app/migrations/0086_task_json_fields.py +0 -77
  161. pulpcore/app/migrations/0087_taskschedule.py +0 -34
  162. pulpcore/app/migrations/0088_accesspolicy_queryset_scoping.py +0 -18
  163. pulpcore/app/migrations/0089_alter_contentredirectcontentguard_options.py +0 -17
  164. pulpcore/app/migrations/0090_char_to_text_field.py +0 -79
  165. pulpcore/tests/unit/migration/test_0077_move_remote_url_credentials.py +0 -35
  166. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/WHEEL +0 -0
  167. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/entry_points.txt +0 -0
  168. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/licenses/LICENSE +0 -0
  169. {pulpcore-3.83.2.dist-info → pulpcore-3.85.0.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,14 @@
1
1
  pulp_certguard/__init__.py,sha256=llnEd00PrsAretsgAOHiNKFbmvIdXe3iDVPmSaKz7gU,71
2
2
  pulp_certguard/pytest_plugin.py,sha256=qhRbChzqN2PROtD-65KuoTfKr5k9T3GPsz9daFgpqpM,852
3
- pulp_certguard/app/__init__.py,sha256=q9BSOu9bxBFz2EoNH9L_oph1rcPNOYSNvwAouUImbWY,297
4
- pulp_certguard/app/models.py,sha256=xy5IWxf0LQxayIDmQw25Y2YhB_NrlTGvuvdY-YW7QBU,8119
5
- pulp_certguard/app/serializers.py,sha256=3jxWu82vU3xA578Qbyz-G4Q9Zlh3MFLGRHzX62M0RF8,1826
6
- pulp_certguard/app/utils.py,sha256=O6T1Npdb8fu3XqIkDJd8PQdEFJWPUeQ-i_aHXBl7MEc,816
3
+ pulp_certguard/app/__init__.py,sha256=sq_IHKvm_1QG57NCpQmXmvtS0RZemDa4W3wwMAxQE3c,297
4
+ pulp_certguard/app/models.py,sha256=YLEhBtZM4hetekVZ_GTnbLlWD6CkIQw2B3ILwXRcq-s,7483
5
+ pulp_certguard/app/serializers.py,sha256=9IxlQiy783RdKF9oI1mrYS4haG5Boy2DOjfP_eJtMLY,1726
7
6
  pulp_certguard/app/viewsets.py,sha256=1_gNmsWyOT8kcOiGVkn4-wrtAjZO4wC8q0-aoEsCpjI,697
8
7
  pulp_certguard/app/migrations/0001_initial.py,sha256=Rd5Wn9vi5wUrVYlJ11edGNUIREBH3x63sclYrUTlG5k,1396
9
8
  pulp_certguard/app/migrations/0002_alter_rhsmcertguard_contentguard_ptr_and_more.py,sha256=tD8tPOkYv55Fjl5O3XeRux9S9QavlvXdHlFT1skzpU0,857
10
9
  pulp_certguard/app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ pulp_certguard/rhsm/__init__.py,sha256=e85bjhpo2Ul5oGdNFDeIjAxs6sTmi9k6WnftWx6x32Y,67
11
+ pulp_certguard/rhsm/rhsm_check_path.py,sha256=Q-tmH5b-o8xj7IuHS8m2DH3UDHe3BWEmEWBL6v0vQ_Y,6378
11
12
  pulp_certguard/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
13
  pulp_certguard/tests/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
14
  pulp_certguard/tests/functional/conftest.py,sha256=3MBf8tmw4TNUQCyQHkHG2slKuDYfaVF_2-nTlAKCRng,717
@@ -45,34 +46,19 @@ pulp_certguard/tests/functional/artifacts/x509/keys/ca.pem,sha256=q9e1nTaC2W0KzJ
45
46
  pulp_certguard/tests/functional/artifacts/x509/keys/client.pem,sha256=L6nXoz2q56YYIo3vjZJ-5SXdOPY6fjyn0yrOfbgvE7M,1679
46
47
  pulp_certguard/tests/functional/artifacts/x509/keys/server.pem,sha256=DwL_25Y28UbJw9fQL9svsE3vhRaHCKqw4uNkh128ew8,1675
47
48
  pulp_certguard/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- pulp_certguard/tests/unit/test_models.py,sha256=TBI0yKsrdbnJSPeBFfxSqhXK7zaNvR6qg5JehGH3Pds,229
49
+ pulp_certguard/tests/unit/certdata.py,sha256=G8xgiHlpqA9CARUGqZsaA0eJiBSis5eo1y_emo0c5MI,13692
50
+ pulp_certguard/tests/unit/test_rhsm_check_path.py,sha256=Q1CsXnUgD7ELvtolPeumyNrPHKbJn7LLgCw6sRwbsoE,7968
49
51
  pulp_file/__init__.py,sha256=0vOCXofR6Eyxkg4y66esnOGPeESCe23C1cNBHj56w44,61
50
52
  pulp_file/manifest.py,sha256=1WwIOJrPSkFcmkRm7CkWifVOCoZvo_nnANgce6uuG7U,3796
51
53
  pulp_file/pytest_plugin.py,sha256=l1PvTxUi5D3uJy4SnHWNhr-otWEYNcm-kc5nSqVJg0Y,10646
52
- pulp_file/app/__init__.py,sha256=nv2sVGVXrrjtJVhGD7V6U-BMZdHADYNAgnjYQqY5xmE,292
54
+ pulp_file/app/__init__.py,sha256=fjJXrnoCfb1hSE8wEiuh-FbATftUGo6Rie-1rt7SfwA,292
53
55
  pulp_file/app/modelresource.py,sha256=v-m-_bBEsfr8wG0TI5ffx1TuKUy2-PsirhuQz4XXF-0,1063
54
56
  pulp_file/app/models.py,sha256=QsrVg_2uKqnR89sLN2Y7Zy260_nLIcUfa94uZowlmFw,4571
55
57
  pulp_file/app/replica.py,sha256=OtNWVmdFUgNTYhPttftVNQnSrnvx2_hnrJgtW_G0Vrg,1894
56
58
  pulp_file/app/serializers.py,sha256=_vTI1y8_ZovqJV54ioDM698p0rvP244ux84_WUzi7FM,4580
57
59
  pulp_file/app/viewsets.py,sha256=SwSMxR8M6OR0piRmYklNJ3r6_N6kGSM3YwUOfbkhKOc,25617
58
- pulp_file/app/migrations/0001_initial.py,sha256=BIQ7OPlQBsCc8R0POkFa2vbwU4mCCyIPHEFBU3xHBvw,2255
59
- pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py,sha256=g11mfmOcVk5-aqraBuMqmlSiL6hkPkBuiXr86SMuTUA,7463
60
- pulp_file/app/migrations/0002_file_related_names.py,sha256=oUe510JiUYLNsCvpL72C2Df95J0qOoZtgAWZpReXMz4,2492
61
- pulp_file/app/migrations/0003_auto_20191014_1721.py,sha256=2RKjtizIA14i2lWgpXemzRFoxcJL0vIdYTZwGVZslS8,382
62
- pulp_file/app/migrations/0004_filefilesystemexporter.py,sha256=2TlwfokIvpNHarUzoBnBpeN5I2CVkPH3Fua4pjl7lgE,505
63
- pulp_file/app/migrations/0005_filerepository.py,sha256=mkf1trLNm2hX5Kh9LZ0jGo4rYA9JKLE5ZP2bHBZAnn8,764
64
- pulp_file/app/migrations/0006_delete_filefilesystemexporter.py,sha256=6Fr0M7C2eT-aDA4eVSWj0axf9SWz5pif5jdQyjAxPGk,304
65
- pulp_file/app/migrations/0007_filefilesystemexporter.py,sha256=_Ayy1hDePqlg8SLL3bQh_2wyYFsgEZglUCuVNY1J7MU,827
66
- pulp_file/app/migrations/0008_add_manifest_field.py,sha256=RhB0312zAhqErBk47GLeI-zKiZo6A1RyBRxCZpU3jEc,443
67
- pulp_file/app/migrations/0009_move_data_to_new_master_distribution_model.py,sha256=IDAfDeLqmQ3h0nl1oPPICso-WMo0o3pKVdVba6yyI1M,3183
68
- pulp_file/app/migrations/0010_auto_publish.py,sha256=t9i3TD9CfqpKWExRNpACXNYCX9RQWXbx_67vo1L2-2U,593
69
- pulp_file/app/migrations/0011_fix_auto_publish.py,sha256=6BCghMGp-VvfWSXMFCzZL1RNMU6yEcrh0LMdS7acLc8,1441
70
- pulp_file/app/migrations/0012_delete_filefilesystemexporter.py,sha256=PkmXFGt4F_cCnHWT41AZILOBd068IevwK9gsgAhlTW4,734
71
- pulp_file/app/migrations/0013_file_acs.py,sha256=zzVHVMqhhoGjPWiX8GLWWzBHdG8-fHYwFR1xYy8WCCM,831
72
- pulp_file/app/migrations/0014_new_rbac_permissions.py,sha256=XNkApmEQRFOcGgn4sxDFl3j5crqiT1v0Q4jvlhbIlDk,1733
73
- pulp_file/app/migrations/0015_allow_null_manifest.py,sha256=bGdndILkQ8l5Fkl5z5A6BHRXoQe_gtkFOwRXe5OHx48,577
74
- pulp_file/app/migrations/0016_add_domain.py,sha256=XPX8JX12jlsjKnwUhPrBhGxk0Me2NhzwPqTgiLsauAg,780
75
- pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py,sha256=hVCXt08W944ZCCL-qvkE1xtej3erGIXPFtBZ3Qk1TQ4,2340
60
+ pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py,sha256=ukPbncW9PkTF03EGoQAiv2qb-B8S3mxkbywJwUM-ImY,6668
61
+ pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py,sha256=XyF9FYLUHCxNc4tq6PLv-rrVExrOC4TccGsegPz6Rdc,2362
76
62
  pulp_file/app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
63
  pulp_file/app/tasks/__init__.py,sha256=jrdxJbgZZj-sX_bevAco5soNRxttNYUChvv3mTs2uRg,87
78
64
  pulp_file/app/tasks/publishing.py,sha256=cHO-QChEUQU6qboloGni5xeIYtZ2mEItyHlmopa2dJw,2667
@@ -101,19 +87,19 @@ pulp_file/tests/unit/test_safe_paths.py,sha256=CRJX3-MdIZF_4-hVK-7brH9LSK2i97GdI
101
87
  pulp_file/tests/unit/test_serializers.py,sha256=reDGIZrAaPHITwiv-LSCJ85JK-aCcNh5cavmAaba8vw,2143
102
88
  pulpcore/__init__.py,sha256=9L859gHcVX5TxrTP0Ef7GWv8oa7tsvIs_8XDkyZIu2g,107
103
89
  pulpcore/backends.py,sha256=Ax_MJpbvtNDg_rhkHaiQRm39DBSS2dH8UpMRJN2T0oE,4482
104
- pulpcore/constants.py,sha256=06lih8sVRzHCrBXGmoT3Q-9ZkKZUEEYZ8EoeFfxEq04,4673
90
+ pulpcore/constants.py,sha256=ym3LV5TqFtUE_klh6yEogUb4fg4NZACF213VztnZ6jw,4882
105
91
  pulpcore/filters.py,sha256=dD5oRRkWg65s3LoObr-ipRvRsxZK_3Zr0lKMNr9Sg5o,16682
106
92
  pulpcore/metrics.py,sha256=Mfq-nnRjRf3vBHFO-ux-4d1I3yE7TgeptwgiSgGz4rA,2230
107
93
  pulpcore/middleware.py,sha256=10Jxc4Iq03gZD3n39t63OmBCpdftcke8bxEd-LioJlA,5973
108
- pulpcore/migrations.py,sha256=gzUTxcXnbYkM0_vN8Rfr_XWuwsGWedVZAwNy9JqJ8sQ,2476
109
- pulpcore/pytest_plugin.py,sha256=skubiEUIevVURr4LnmmVMt_ZeH5vT9mI0yiPUYerMnQ,38090
94
+ pulpcore/migrations.py,sha256=htl5Vsq8tferLUrTj13cMiV7eLBsAQpSBnvKzkLjysI,3485
95
+ pulpcore/pytest_plugin.py,sha256=cWqLZ_JIQGFRvfKJQSP0o-rX3e_J6Kes8KKFD8rIpOw,38039
110
96
  pulpcore/responses.py,sha256=mIGKmdCfTSoZxbFu4yIH1xbdLx1u5gqt3D99LTamcJg,6125
111
97
  pulpcore/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
98
  pulpcore/app/access_policy.py,sha256=5vCKy6WoHtIt1_-eS5vMaZ7CmR4G-CIpsrB8yT-d88Q,6079
113
- pulpcore/app/apps.py,sha256=CqrQ8sW9sFLntd8_iPC7g0rBVWDnUa2aHc-zSdBRXrs,17860
99
+ pulpcore/app/apps.py,sha256=iozDl1w6EYZQAWQEj8csGdjjxBDFMFLk2KCF_CHpygw,17412
114
100
  pulpcore/app/authentication.py,sha256=1LIJW6HIQQlZrliHy__jdzkDEh6Oj7xKgd0V-vRcDus,2855
115
101
  pulpcore/app/checks.py,sha256=jbfTF7nmftBbky4AQXHigpyCaGydKasvRUXsd72JZVg,1946
116
- pulpcore/app/entrypoint.py,sha256=YIfQpM5UxybBTasiEY5ptq--UmqPqjdIGnwmqVsDC7E,4972
102
+ pulpcore/app/entrypoint.py,sha256=GYEq4GjglQZhFlU3865AT_H0nPypDKJAsf8qdyR4tPY,4985
117
103
  pulpcore/app/files.py,sha256=BHq2T6cizPXfepQuEw_RfPXBqzcDRRVK3sedGDrgSJ4,6315
118
104
  pulpcore/app/global_access_conditions.py,sha256=Jezc1Hf0bQFaZvZFEDPpBrJmK0EvIa6zHRHHZYkez2Y,30398
119
105
  pulpcore/app/importexport.py,sha256=x1gGrHgirfMLsv92GEwBIQe12aItJJW9JH8TPij-rms,8795
@@ -129,7 +115,7 @@ pulpcore/app/redis_connection.py,sha256=VTdG0ulXuyESjYV6SJdG_jLzkLZH-MlLcD6pielw
129
115
  pulpcore/app/replica.py,sha256=rGE14OBaR_FKxmHL7NMxf_OizMyS-90IPsMRo_j9YRI,11474
130
116
  pulpcore/app/response.py,sha256=hYH_jSBrxmRsBr2bknmXE1qfs2g8JjDTXYcQ5ZWlF_c,1950
131
117
  pulpcore/app/role_util.py,sha256=84HSt8_9fxB--dtfSyg_TumVgOdyBbyP6rBaiAfTpOU,22393
132
- pulpcore/app/settings.py,sha256=HxZj3R15UG_AhwhNIs1VFXZqPuBHW3shjHkPwqvZMqo,22548
118
+ pulpcore/app/settings.py,sha256=LXwuQguRSqiLS8kwVLaRW3Qs96Jc8R8W13wy9QQlwto,21475
133
119
  pulpcore/app/urls.py,sha256=0gdI74CAdycJStXSw1gknviDGe3J3k0UhS4J8RYa5dg,8120
134
120
  pulpcore/app/util.py,sha256=nYF6nZXgqVk4U1QeZEpWYX-wqitGSGAJip6W78IfXUk,24432
135
121
  pulpcore/app/wsgi.py,sha256=7rpZ_1NHEN_UfeNZCj8206bas1WeqRkHnGdxpd7rdDI,492
@@ -150,99 +136,8 @@ pulpcore/app/management/commands/remove-signing-service.py,sha256=OF0IeGoldEhFAK
150
136
  pulpcore/app/management/commands/repository-size.py,sha256=jSbYUIvLY-lxsNtzcN9TE_ZGvha4mzewu3cPdFkrMbM,4999
151
137
  pulpcore/app/management/commands/reset-admin-password.py,sha256=vCELRG9KiiDzsmqNUfOpbI-Ii98MOpQkZJWNPe4mdSw,2255
152
138
  pulpcore/app/management/commands/rotate-db-key.py,sha256=B-qsWVir9bqgc6y-C0AvqiU7UYg1L85XwcpIjweUR_M,2781
153
- pulpcore/app/migrations/0001_initial.py,sha256=cgr6qkLcqykfn_8r24Q1j_zDDUQ5e52ADJYF-kAxTJk,24170
154
- pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py,sha256=hR9PNEe5q0pkOqz2TVGTht8oau6ZUW4o7q7gt9llJY0,68684
155
- pulpcore/app/migrations/0002_increase_artifact_size_field.py,sha256=cKN4a54PQLnb1ZG6fjSysd-gyCAgq2wJfoihAl9OTzU,365
156
- pulpcore/app/migrations/0003_remove_upload_completed.py,sha256=B-uAk_0AxIZ4J91sjdPbRs4ojSqKDrHvjoAi53TD_MA,338
157
- pulpcore/app/migrations/0004_add_duplicated_reserved_resources.py,sha256=CToDgixGRiWSnCMa5wH05TykKdXJf3-nvg_uHxcC3fw,1777
158
- pulpcore/app/migrations/0005_progressreport_code.py,sha256=DCr1_Y5X8SK1EwCcVcfh9DvUAtmJtmkWDZJJa0Txoek,457
159
- pulpcore/app/migrations/0006_repository_plugin_managed.py,sha256=IYly_Bb2zJ3c1XP4ypg61cHdsNBcvFFAbkS59Rmgih0,397
160
- pulpcore/app/migrations/0007_delete_progress_proxies.py,sha256=ct0txQVtGKbq1shbdxf9TbCAe8wjhtDF3qjoZJxyGzA,383
161
- pulpcore/app/migrations/0008_published_metadata_as_content.py,sha256=JEV8jMaSF8YQh0tiWcCNo2Uto3okb7_CmEVZMB0NzO4,1411
162
- pulpcore/app/migrations/0009_remove_task_non_fatal_errors.py,sha256=HBLkj2VZQ8GooLXO9Yse3MqBzDjuKAkX4es3XuKHq6g,344
163
- pulpcore/app/migrations/0010_pulp_fields.py,sha256=AWhVUsILZueRPWwZsaIPZD4m7K9DXku3Tv0ndNmz7bw,20439
164
- pulpcore/app/migrations/0011_relative_path.py,sha256=ME3-6eNxFC5MjoWQibmC7yEIVVTB7x5lvADLcrsae0U,695
165
- pulpcore/app/migrations/0012_auto_20191104_2000.py,sha256=yWle2-qSaUHQySoX9EAg7UDg6V8Kbd-OE-CnRYxWlEQ,976
166
- pulpcore/app/migrations/0013_repository_pulp_type.py,sha256=LwUTXs6UTdOwUYf225l5cqb83B-mBMYqunXyRkY1XGI,387
167
- pulpcore/app/migrations/0014_remove_repository_plugin_managed.py,sha256=9wnq8YqFi9FTOgpY7bCCdCtdjgiVj9Th66xnVED75Kg,339
168
- pulpcore/app/migrations/0015_auto_20191112_1426.py,sha256=R8Vmxiovqliz6IgmrqL2sLaxyGE1FmsxzrqO7-6yF_s,850
169
- pulpcore/app/migrations/0016_charfield_to_textfield.py,sha256=7BnWyZO5YFcDBJOlBzSW-NZzLOoNKitwrLAcrO5Dgx0,2052
170
- pulpcore/app/migrations/0017_remove_task_parent.py,sha256=7vuE73Id6Hm3s9JIlxd49DQxVb0Y0t89C8lcIMuclNQ,327
171
- pulpcore/app/migrations/0018_auto_20191127_2350.py,sha256=qX6_o-98VjwpCwwUJBSzEhdVBu0gmMlmUehyvihCz24,406
172
- pulpcore/app/migrations/0019_add_signing_service_model.py,sha256=lEia3rOEttf1F1GYB9FyGNdC-wxikXRuSA3XtNPSoi8,828
173
- pulpcore/app/migrations/0020_change_publishedartifact_constraints.py,sha256=3CEo8TfGBfJ5_2xrNJrUGA-5Xex7KAx4XrTicDKAKQs,382
174
- pulpcore/app/migrations/0021_add_signing_service_foreign_key.py,sha256=zwBFuOfk6wPu4hES2FLB1KJSCLtdnwKldEBABGqs9TI,736
175
- pulpcore/app/migrations/0022_rename_last_version.py,sha256=eFbM2Y1zVxCyorTGURt8mAz5zmzSV2Bg0CLwJ6AD6c8,719
176
- pulpcore/app/migrations/0023_change_exporter_models.py,sha256=egal35Oh8bSRn7q-6jCxj5HRMsn3DAVBxW5Sm3Q3Su0,3602
177
- pulpcore/app/migrations/0024_use_local_storage_for_uploads.py,sha256=mGUXNjfU1GEwfncy4EqzvtYcmQSK26q6ZQSJChxeK_Y,521
178
- pulpcore/app/migrations/0025_task_parent_task.py,sha256=UFGqB_hQ0uka7Kl83izkPOdG5oqDNGlizKdhC52ObJs,516
179
- pulpcore/app/migrations/0026_task_group.py,sha256=0viWnNpcPQdQPgoGD5P0loPCTkGaajG-m3c_RRbR4KU,1027
180
- pulpcore/app/migrations/0027_export_backend.py,sha256=hEYaS4asHRDTcQ4G_NhsRDAphhJKvaSSN8qrxYsjg6o,1134
181
- pulpcore/app/migrations/0028_import_importer_pulpimporter_pulpimporterrepository.py,sha256=67SoMLHdWZknrWUH6N4j_zaFB0rv_2w-fxLTI1uGF-U,3609
182
- pulpcore/app/migrations/0029_export_delete.py,sha256=W-PZpmdkJ7GWlAZ-a3onrj4HtXRv80ues4X6PF4Wg_g,495
183
- pulpcore/app/migrations/0030_taskgroup_all_tasks_dispatched.py,sha256=rMe6ITbFWvHEZ_qMN6T9AHU0cY7B8U24Iws0UJyzJAo,693
184
- pulpcore/app/migrations/0031_import_export_validate_params.py,sha256=4DoFIF50IDBQFDt__xqcdAN0rmwelvxmhZxoioIHCFs,485
185
- pulpcore/app/migrations/0032_export_to_chunks.py,sha256=6Vn5lYLl_v_nfxWFeILcv-uMNaJwHuvgL_FbdPE9y3k,685
186
- pulpcore/app/migrations/0033_increase_remote_artifact_size_field.py,sha256=9Pt3Gk-9xjWHNFJohsTTJepU0u6XCqc7zkJTzPpoQFQ,390
187
- pulpcore/app/migrations/0034_groupprogressreport.py,sha256=DnoM9XLpwIU9jUN8Su_UEYr3lDLfkQ-rVlCuvhV4XhE,1228
188
- pulpcore/app/migrations/0035_content_upstream_id.py,sha256=3XJK0ziyzq2thpbDOv0uH9m0Gv34MRCO2DiYj05rFzY,385
189
- pulpcore/app/migrations/0036_unprotect_last_export.py,sha256=LFtNMX3uNXFnHfb-054iwZaou_h4YYvvGp92nsFge4Y,522
190
- pulpcore/app/migrations/0037_pulptemporaryfile.py,sha256=tLCSa3Uq3Y83fkn7NpaCYtQvhfBiJTlEim15K18dj04,964
191
- pulpcore/app/migrations/0038_repository_remote.py,sha256=coBUNqH0rCmEe8_GcWNNuNVhQkRkqsN9te3AQnfskZo,479
192
- pulpcore/app/migrations/0039_change_download_concurrency.py,sha256=A27e6FM4zbxpAlQZWloNDJhyqj8OIqEdj2d2lpZw9YE,756
193
- pulpcore/app/migrations/0040_set_admin_is_staff.py,sha256=IOqoo59WozrznRNuSxmZX_QSBDf-6Lm8Irl1QO37Bqc,760
194
- pulpcore/app/migrations/0041_accesspolicy.py,sha256=q-soCkQWD6Hk6Z8UV1aBAg4MfzO8f0_XOyPq7rw0bsU,1008
195
- pulpcore/app/migrations/0042_rbac_for_tasks.py,sha256=gPJGj3bo3eFLo7lYir8NP005JYsAIaw6R6UwLskGLSU,1457
196
- pulpcore/app/migrations/0043_toc_attribute.py,sha256=kwknGtEOzwuP73VokzvN-HeHPnIVLsTeOK7as7gugt8,446
197
- pulpcore/app/migrations/0044_temp_file_artifact_field.py,sha256=Sktd2ue4x9EN9_fzWx_Ys28hKU6gkGBnuHmP14dADpc,548
198
- pulpcore/app/migrations/0045_accesspolicy_permissions_allow_null.py,sha256=agRaqI4pQEHpLs4hbBOvHReKCI7lT3fJniHWmDQDQk4,474
199
- pulpcore/app/migrations/0046_task__resource_job_id.py,sha256=1W4u2MoUr0MVf0eBOC4qjV3mlM3CY0ePvFR1EpmqwHk,970
200
- pulpcore/app/migrations/0047_improve_orphan_cleanup.py,sha256=wrxLE2LhzrFqI3tHl9-Y47Uq8XYw9iKapU4i621KWGE,1919
201
- pulpcore/app/migrations/0048_fips_checksums.py,sha256=XfJH7W2253q2EstiH8t19LSUQ3jr0jZqsQ84qmSfu64,1162
202
- pulpcore/app/migrations/0049_add_file_field_to_uploadchunk.py,sha256=N7t5ss_9Y8qsaCqHeL7vZJ3iFLwNodSqVTuugqfHcsE,630
203
- pulpcore/app/migrations/0050_namespace_access_policies.py,sha256=hjxU9qyXXZV7qo3yXUIgXC95kOFCX47AD8Z3G8XLS5o,852
204
- pulpcore/app/migrations/0051_timeoutfields.py,sha256=TOi6ZrmsnkLvKYCb8C1dyEzhbJ9mvnu6eC-oMJyzJmk,1237
205
- pulpcore/app/migrations/0052_tasking_logging_cid.py,sha256=8GCxBdPJrXA5Zep9XDkHWVXGa9Jj8ZWAfC5k4hRp4f4,408
206
- pulpcore/app/migrations/0053_remote_headers.py,sha256=QFGyE9DOTod3yg9hCK8CEWbElKzPvnt5Kt_0lNRTljQ,458
207
- pulpcore/app/migrations/0054_add_public_key.py,sha256=oUdrwZK2JBiGFIIvRPsILGyxQkdTEHCrZa477yrJUGs,2927
208
- pulpcore/app/migrations/0055_label.py,sha256=XkQZyktpoJ95sDn3x6e-ibs0vykp8Rgt0jNPIlSLzA0,1071
209
- pulpcore/app/migrations/0056_remote_rate_limit.py,sha256=5zRk21ukMAO3gJqeJXhN0IUDWmFbTenOPor9jAy6yn4,372
210
- pulpcore/app/migrations/0057_add_label_indexes.py,sha256=VPXxwymOFClPpwvBQ6-fX_dA3mjJYDMHx9MJctAVuN4,557
211
- pulpcore/app/migrations/0058_accesspolicy_customized.py,sha256=rUhWybEO9hcJ-PYrAGqgzPba8S-4SfuCXau27PscDn8,394
212
- pulpcore/app/migrations/0059_proxy_creds.py,sha256=aMm2lpElCbzhADpC1eJV29yYZCiip6ND4cpvQhDXNxw,546
213
- pulpcore/app/migrations/0060_data_migration_proxy_creds.py,sha256=XO8X5hv-r2h0nPwTUHUgmQOzpRByA8GGP7MC9YWGpUE,1635
214
- pulpcore/app/migrations/0061_call_handle_artifact_checksums_command.py,sha256=D4IkINlYp59En6LxUBLlxf41WSlX8jiMoPN-ZAPwR7c,2847
215
- pulpcore/app/migrations/0062_add_new_distribution_mastermodel.py,sha256=-B9oGEts-a8L_2ZgE6eiaFI-1vj_25bs7FpQ--NvWp0,1776
216
- pulpcore/app/migrations/0063_repository_retained_versions.py,sha256=ppIfQK5D51bcKUwP0mDaAUmbI2-K0Y8VEEygn2QbFAc,432
217
- pulpcore/app/migrations/0064_add_new_style_task_columns.py,sha256=jn4NxkYDpS23xlM82dhbikhY_qzhr-EwRbfgDc2usU0,4023
218
- pulpcore/app/migrations/0064_repository_user_hidden.py,sha256=5PBPR5Z0_gSNgcsBVnrSjsp6_GCEVSzVqjJjDQRXIfQ,404
219
- pulpcore/app/migrations/0065_merge_20210615_1211.py,sha256=ENPkj_mEpm8MAerwThLQm6oyUsNb6L-1hBtrxpeqe-8,280
220
- pulpcore/app/migrations/0066_download_concurrency_and_retry_changes.py,sha256=CgyWgbWQsIE2fJbZ4SlrHrPG5ysBaE0L6fhpcIUk_eM,700
221
- pulpcore/app/migrations/0067_add_protect_to_task_reservation.py,sha256=DMGiqNWwc2bHJcvZ2C2UTsHYL8cadCyWV4cPS0C9EQc,512
222
- pulpcore/app/migrations/0068_add_timestamp_of_interest.py,sha256=BBEqWwlsSvVb-lLRQer7TUXCWlnTPSRJeleHbqtmSwc,587
223
- pulpcore/app/migrations/0069_update_json_fields.py,sha256=yjj9dgRBVTTT5MajvVICtLjRfoEqQQZ5ArW49C0ObqY,1774
224
- pulpcore/app/migrations/0070_rename_retained_versions.py,sha256=dd5MKPtTd3A1GcwNmjbIMzaJcIt9f-KYmwwJrJW-Oow,390
225
- pulpcore/app/migrations/0071_filesystemexport_filesystemexporter.py,sha256=McW3OQJ5J0lDRgCgGutxmsnN2XOAZFbzkuPkPclJhaM,1217
226
- pulpcore/app/migrations/0072_add_method_to_filesystem_exporter.py,sha256=O4b7Sq1dGa-O4K5rN4Bze2JYUN-M497dhpciyFujOGU,546
227
- pulpcore/app/migrations/0073_encrypt_remote_fields.py,sha256=Jw9nh524vGRJw4UkRrbkJq2evYmRgBT0aCC9lxXt434,4905
228
- pulpcore/app/migrations/0074_acs.py,sha256=kwBTxMK73_O5gk1eK-xrnH7yIdUPeY0Qw1ndTjYz5eE,2174
229
- pulpcore/app/migrations/0075_rbaccontentguard.py,sha256=vTMUlqS3O7sTWy0uOJWKL5Huo9gJiPxXWp5bH0g7ZNk,843
230
- pulpcore/app/migrations/0076_remove_reserved_resource.py,sha256=jzrJE8nu63HybJhFKlFRb4X5HQOK6cdDem9zm5NOSxQ,951
231
- pulpcore/app/migrations/0077_move_remote_url_credentials.py,sha256=QQGQ5-QwAimTVJIoYosBZ_fldegpLtkxaUbQ5HHLi0c,1119
232
- pulpcore/app/migrations/0078_grouprole_role_userrole.py,sha256=ohqv1VyynGG6qzYzrfqHnTRZVN9XDzpMLoI_lB24U94,3767
233
- pulpcore/app/migrations/0079_rename_permissions_assignment_accesspolicy_creation_hooks.py,sha256=IA8TXoLcCWdtSNbAWT97rXGlvax3vEHQuZ2sI6SNiqc,395
234
- pulpcore/app/migrations/0080_proxy_group_model.py,sha256=5C1gjdHG648cXpEO3uRVz6CmzT4_8rHUzBYgfvfpigk,1183
235
- pulpcore/app/migrations/0081_reapplabel_group_permissions.py,sha256=FQvdPfPDIrcQG0tlbb3spT6RLWBCgJWSHm2mnTjeQ7c,2468
236
- pulpcore/app/migrations/0082_add_manage_roles_permissions.py,sha256=YKR_CRvcTiLpYVattrYPaDGtX8dWNE7HPv7uRliOmXs,407
237
- pulpcore/app/migrations/0083_alter_group_options.py,sha256=e4L0RzLgp578i-s4cjdyM76WTBhhriXpZ3V7gLGvOkg,410
238
- pulpcore/app/migrations/0084_alter_rbaccontentguard_options.py,sha256=Htu9zYaLw-fyXDNevNWpp-DIvW1hfz6_Ucoh8P4089Q,547
239
- pulpcore/app/migrations/0085_contentredirectcontentguard.py,sha256=xLZmCmQ043QOgaYORGVTEqKoUNrw6OcNA2Mr0-LEmX0,966
240
- pulpcore/app/migrations/0086_task_json_fields.py,sha256=8ZbJy55VKlOPMTLGO-9mZlVzO8rLDEYj_wHH6z6ui2M,2818
241
- pulpcore/app/migrations/0087_taskschedule.py,sha256=ibp53j1s0xXlrb2tic_CmUXTG3FAUSSDpkoqgN0kmwc,1397
242
- pulpcore/app/migrations/0088_accesspolicy_queryset_scoping.py,sha256=rIK0YgJ8_MDgeeBL8nQpZLxevmMjmLN19tgld6jpSBQ,388
243
- pulpcore/app/migrations/0089_alter_contentredirectcontentguard_options.py,sha256=0Gbekotw2ENMaa9xnMrUQADn7f_-BZq3Fs-cFdh3vDc,530
244
- pulpcore/app/migrations/0090_char_to_text_field.py,sha256=7UtVU-y2xxdjKgpNaIkIyQLTb4SVk05Vbljee0P3P_U,2591
245
- pulpcore/app/migrations/0091_systemid.py,sha256=mPcjYsUWXJZhOd1e6OAi1TffJGizgslmGk-Iy38gkiU,658
139
+ pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py,sha256=8edzYHRAFNAogHTc4lQqt2faA3dNsh5JthGRSPIpO9w,64100
140
+ pulpcore/app/migrations/0091_systemid.py,sha256=OF3vDsdpm5FFd2BDlDwd0IH2l7Ibqx4XMWvpUk7uYew,672
246
141
  pulpcore/app/migrations/0092_alter_upload_options.py,sha256=9LvysGb0QSh7r4eGjN91swvYyG-Yu6rIXxUtHo1K4b8,394
247
142
  pulpcore/app/migrations/0093_add_info_field_repositoryversion.py,sha256=Z07y0YItJGwKOiGtXi7OoBpV_e5_z76zvvlT63AAr7Y,392
248
143
  pulpcore/app/migrations/0094_protect_repository_content.py,sha256=Ui-ah1NN1ceFZ_UOB1Nz0_83EmAnO8eidZyOKaA3f3U,1076
@@ -286,8 +181,13 @@ pulpcore/app/migrations/0131_distribution_checkpoint_publication_checkpoint.py,s
286
181
  pulpcore/app/migrations/0132_alter_content_options.py,sha256=hrhUTsRqQJgwC6wU9Ys5AvyVz2YCzklj2OuVf6hyBfs,477
287
182
  pulpcore/app/migrations/0132_task_profile_options.py,sha256=ljdIm5-NXl_8s87HzkthvUxr7eHhLaETrr5qNtAVKDE,518
288
183
  pulpcore/app/migrations/0133_repositoryversion_content_ids.py,sha256=P8H16p6-EWtnyoenomC4R8CvAivfPqUkkRAsoizgm2M,545
184
+ pulpcore/app/migrations/0134_task_insert_trigger.py,sha256=6kBoMWSwljS5RERsRu42xXXUOJS0_Z2w-Lv9FixPHf4,2310
185
+ pulpcore/app/migrations/0135_task_pulp_task_resources_index.py,sha256=X2cJRbuuKxv31psqDaLx8bQxb2Kcv5_zMuGHwwloSCg,714
186
+ pulpcore/app/migrations/0136_delete_basedistribution.py,sha256=4oKidAU27jLLWRkboPstNF75kq3mTZ-QUxrKbMIczKo,315
187
+ pulpcore/app/migrations/0137_appstatus.py,sha256=WMjQ8Tb-jsaCtyYBVZAmFemGyIzNDABVPfTKsEYvxjI,1332
188
+ pulpcore/app/migrations/0138_vulnerabilityreport.py,sha256=rYmdIXfTCSZeH5sHLCCFMc2wrKhSuVE334A4kmFkJ6w,1372
289
189
  pulpcore/app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
- pulpcore/app/models/__init__.py,sha256=9JKMGKbEV6nJPep_K36rnWnS1QWMKBFSty-Hkr65JVk,3459
190
+ pulpcore/app/models/__init__.py,sha256=P_2UnLmtQYbASWrm8elO2Zm_od-LXVqQKnjCwYFlZW0,3552
291
191
  pulpcore/app/models/access_policy.py,sha256=o4L41RGoZ5UMmh5UeeenmadD5MJgShguphgd4eAVxQA,6071
292
192
  pulpcore/app/models/acs.py,sha256=CZK61L41_K-fmb-qDEuRxLMNF06mm5sMlqdEWZ6eb74,1749
293
193
  pulpcore/app/models/analytics.py,sha256=OJr_Zn5ixde6IQJwEGOgKo7hDaOMQ0QCae_4HdjZK-4,607
@@ -300,21 +200,22 @@ pulpcore/app/models/generic.py,sha256=PWeVttDRysgy9aReSkJ0TUORwyTf1-lE68fp8wMGhi
300
200
  pulpcore/app/models/importer.py,sha256=HECnV3oAPSAgFugYE72RNvh5l1wUs_S69NL80BMp0uc,3082
301
201
  pulpcore/app/models/openpgp.py,sha256=3R5p8ZBPq63NzaE2_EwCXEMYPUQu7QUWanMcKCOoWkM,7874
302
202
  pulpcore/app/models/progress.py,sha256=osD0cqPWC5oaebKgjpaOLY6tgv1bpjA66ty7nr8TaLU,13499
303
- pulpcore/app/models/publication.py,sha256=Ltiwylew7OOrobQRjdy1p6NbppBMXD2uX_IC2Ybgl7E,28869
203
+ pulpcore/app/models/publication.py,sha256=75uUnm_sU5V_QraD6kPvEXVKxYyA1ikIsoFD517-1aE,27146
304
204
  pulpcore/app/models/replica.py,sha256=i_wPxyPaVWpEVTJNVjJsBarxFauqeagtuwLadsmVz-g,2067
305
205
  pulpcore/app/models/repository.py,sha256=SIc21Gex6okxI7OCfHEGIpXpGlypG3z9IgMt5-mkNy0,58056
306
206
  pulpcore/app/models/role.py,sha256=dZklNd2VeAw4cT6dyJ7SyTBt9sZvdqakY86wXGAY3vU,3287
307
- pulpcore/app/models/status.py,sha256=72oUOJ7BnCAw3uDbc-XuI72oAyP2llCoBic4zb2JP78,3683
207
+ pulpcore/app/models/status.py,sha256=4HbuuTCbug7CY8e_8fCaYiDp2T1UidozCKucm5rFVHk,8621
308
208
  pulpcore/app/models/storage.py,sha256=2b-DQWaO31NqjV6FiISALegND-sQZAU7BVAsduUvm3o,6780
309
- pulpcore/app/models/task.py,sha256=2w0fXHeErSrVssCfP8LeUuYjKgupAbhfR_IkWG8wmus,14950
209
+ pulpcore/app/models/task.py,sha256=5T7PwJNNZOJI5opIGdLoUghCAlcAHfSarTxVed_oH0w,15321
310
210
  pulpcore/app/models/upload.py,sha256=3njXT2rrVJwBjEDegvqcLD9_7cPnnl974lhbAhikEp8,3004
211
+ pulpcore/app/models/vulnerability_report.py,sha256=DDAUjDaW3Kn9KPBkBl94u4EuQy8UIu5wKbmE5kMkhWE,1238
311
212
  pulpcore/app/protobuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
213
  pulpcore/app/protobuf/analytics_pb2.py,sha256=-4CkbSW8JUAEIjZJBTPAJ5QezFJOdCPiDhx8_KA1bMU,2168
313
- pulpcore/app/serializers/__init__.py,sha256=M1g5Si6hRi1flhQ-F1n6G-uFEzIZ7BUqHZ8iUE-bRuM,3466
214
+ pulpcore/app/serializers/__init__.py,sha256=GVOD1RwTgzcvLmWWT1gRYavRiYpo2_4zpJgFMhe-RKw,3530
314
215
  pulpcore/app/serializers/access_policy.py,sha256=NNtuzDW5H4RGfy5LbRFEHWDTDzXdL-Kihe9uquXnxBU,2818
315
216
  pulpcore/app/serializers/acs.py,sha256=wBbGE5YHR7dJWuicbDtiPQUJ7xEgz1zKHGkJEaMfpDU,5834
316
217
  pulpcore/app/serializers/base.py,sha256=ojWmsr2U2Mx8qpSFxqHLNQyfU2Z9q7hY1NUwVs9s3HE,21418
317
- pulpcore/app/serializers/content.py,sha256=TKEh774Q-0l1AfUeMmVxPM5lk5UiYZxgkt9NU1RjZ9M,11966
218
+ pulpcore/app/serializers/content.py,sha256=SWa9_PlrTtWhXU4axIvZwvRvevfkbetL7jOkycPG87c,12177
318
219
  pulpcore/app/serializers/domain.py,sha256=y2qXdf2gSvWH5UtYULhX390u6wWmegg-GD9g5QwqZJA,22758
319
220
  pulpcore/app/serializers/exporter.py,sha256=TxAgHDt34YUGPusawn7B8HL3bBymp46__6CnfhXSgGs,11179
320
221
  pulpcore/app/serializers/fields.py,sha256=Ql-DXvOFWrJ98ISB-6GGR19K2FD2WNkvV2dJDeTPURM,16502
@@ -327,25 +228,27 @@ pulpcore/app/serializers/purge.py,sha256=CnjKWUvkuI207QMbqwmNs7FqMdOMUh1cujagby3
327
228
  pulpcore/app/serializers/reclaim.py,sha256=-ewdNqu-Ck1B_IUWJHG0pvN5zCMMEK9RiWI45g7D0ro,1710
328
229
  pulpcore/app/serializers/repair.py,sha256=uKrxTnhoarxyyGCixPRn9pmG19gRRVUTM7nPwCVp6_8,554
329
230
  pulpcore/app/serializers/replica.py,sha256=E3jwn1vfBqT4Y4s9pWsTrUEJKPO9pO0q2ZmwcpIDVh4,4044
330
- pulpcore/app/serializers/repository.py,sha256=fSM92qJTjQIGXgnmA4xr62jRG9atYj6tkI_ZM6VFaM0,20224
231
+ pulpcore/app/serializers/repository.py,sha256=BNv0yX1JJs57VcMdzjU5rthRMcm1KB93Seqp6jve2i8,20468
331
232
  pulpcore/app/serializers/status.py,sha256=nIrQl-MlOzUIvV2DrkgC19gqGmRVNKvWVN4pIBELgcQ,3815
332
233
  pulpcore/app/serializers/task.py,sha256=IGJGoSEC_wKS8t77JGnZWRqK-Mk5-4rXSj8j0Ha6nRA,10026
333
234
  pulpcore/app/serializers/upload.py,sha256=4r6iBegbYHmgFYjBYPcqB8J7eSxXgY4ukayMxJZNh_M,2402
334
235
  pulpcore/app/serializers/user.py,sha256=QBEnUCfq2my3Lq_pohj7hphDE8wqU6g6fnYuEXl8VtI,18413
335
- pulpcore/app/tasks/__init__.py,sha256=6fhLD0Z9LMluzqyBwQkatId71qI_2U7-o2-ZI1JH1Ls,576
236
+ pulpcore/app/serializers/vulnerability_report.py,sha256=N7geQkTDZ7_SCipo6Q4LGBInwuGy8-tGIpwGIPWimm4,787
237
+ pulpcore/app/tasks/__init__.py,sha256=J8S3QDCIc8ONYPLVmp7tSLEfQZbHjouvpYBhZHYYV0o,625
336
238
  pulpcore/app/tasks/analytics.py,sha256=eB3p-sdocH5yyNoe0OG5rUzwiVOfayOfHNzkohAfx-U,4722
337
239
  pulpcore/app/tasks/base.py,sha256=4I88Bn5SttqEvvVlNJmIwkPv2IWe7OhpM-kbQiQ9T_U,5929
338
240
  pulpcore/app/tasks/export.py,sha256=dRg-KcnM7HumXUx8mjgJ-EVMcz2RbzSOPmMkzVtJEnI,19320
339
241
  pulpcore/app/tasks/importer.py,sha256=5T14JynWJjBijAE-d_YstTRYOtY0WTHMqkF7GFJaj5o,23222
340
242
  pulpcore/app/tasks/migrate.py,sha256=wCjGskoF-XWzbINEyC_crgcigFZlC8EHqZTbjkLQykg,2452
341
243
  pulpcore/app/tasks/orphan.py,sha256=4rTZLZ549niJ7mGMh_7suy-czIcj06oCTxPYnsPN8mU,4685
342
- pulpcore/app/tasks/purge.py,sha256=yrnlvQKtg2usjK-75JoDvg4RvvEKipMpI8p4fh69A3o,7472
244
+ pulpcore/app/tasks/purge.py,sha256=IpdKTj9AvlNNuMNbkxa63xuaf3eK6dUvHZeMMWr_MjQ,7532
343
245
  pulpcore/app/tasks/reclaim_space.py,sha256=FZ7KFasbScPAU7A6lzK98pdylmqgThssgnNMecG5bEw,3803
344
246
  pulpcore/app/tasks/replica.py,sha256=T0Mky1FjrJH0j6ag61fE-vQmdQ0Otoe8_nOREXYHVXg,4485
345
247
  pulpcore/app/tasks/repository.py,sha256=v-CDXp03YV6S6Lf-rKklPw7PwpfeoQe_Gw3ZyMH6SFQ,9640
346
248
  pulpcore/app/tasks/telemetry.py,sha256=QXOcYi7VIx_TBPCfs2BfcaiiVzRCiTFPZCN8MlC-hw8,1338
347
249
  pulpcore/app/tasks/test.py,sha256=sRGdELmjRDFTldso1gT6BEFXLwxNGzjFgpe0wzBqfy0,888
348
250
  pulpcore/app/tasks/upload.py,sha256=3YJa32XYUFgqkEEWoERRPB9Q6ph9a6ashMtMi24R15k,1413
251
+ pulpcore/app/tasks/vulnerability_report.py,sha256=P19bdh63CKIWGsKf65qYAnqvNIvzuX1VI2g15wyxzwU,6939
349
252
  pulpcore/app/templates/rest_framework/api.html,sha256=n2ymhyLN7tQ5dYc5uceRSqS5L8fsPnSHIfCBsFMshnM,246
350
253
  pulpcore/app/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
254
  pulpcore/app/templatetags/pulp_urls.py,sha256=aoQIdHjeM0fi73qmP-LK_yLui47afSS_D0JO63LyIC8,882
@@ -354,7 +257,7 @@ pulpcore/app/views/importer.py,sha256=Ws_XFEqXe3b77IDfUz9UROBoOGBco2ffGzq5An7VOa
354
257
  pulpcore/app/views/orphans.py,sha256=e32kDdfn13fK94eNRvdKSAGQ09tyC-VLwGvszfaDOLU,1008
355
258
  pulpcore/app/views/repair.py,sha256=DTEd9FlEzpBjjuXLb42LbqJPA5EUN2FrFDFcJnkYxxo,1228
356
259
  pulpcore/app/views/status.py,sha256=snoAyU7KCfaxe04Tc9UF9Go8A8-zCxpKoZ6nxFfmaVU,4890
357
- pulpcore/app/viewsets/__init__.py,sha256=iaDmZbjJalbU5BQ8q9sTKRX-64ToAnnyuHiLiFoyE-Y,2225
260
+ pulpcore/app/viewsets/__init__.py,sha256=Dh0vT4xnPPnxxES6V6uUB-dXJ_Z99s57p0lb8i9K8ts,2286
358
261
  pulpcore/app/viewsets/access_policy.py,sha256=Tjo443gpPfR9gRAgfQfTuV15eMWylZa7lPLucTAIKhQ,2447
359
262
  pulpcore/app/viewsets/acs.py,sha256=JabJntgGAMELbarKlTXDWrgMSYdMPgv6evJxoRdj66Y,2078
360
263
  pulpcore/app/viewsets/base.py,sha256=7FgUMLl3ZOIflnzCEcrXr6spKRLNXyfffAHnuE3gQA8,27137
@@ -372,12 +275,13 @@ pulpcore/app/viewsets/repository.py,sha256=kRk1Ww61bvTiKVTz_o9Gr4sSJcM2s5CXvcYCF
372
275
  pulpcore/app/viewsets/task.py,sha256=pMoOQnhjA91dUgNNAnL3OaCHcVOrQcB-CD3D5Px96YE,16753
373
276
  pulpcore/app/viewsets/upload.py,sha256=Mfy9Vcm5KcqARooH4iExzoXVkL6boDddEqAnGWDWzFg,5452
374
277
  pulpcore/app/viewsets/user.py,sha256=86eMawpaVrvp6ilQmb1C4j7SKpesPB5HgMovYL9rY3Q,13813
278
+ pulpcore/app/viewsets/vulnerability_report.py,sha256=XCvhbkzxC6qJ5JvTrHbRwuS_R3y5T1lSASf0HGg6p3A,689
375
279
  pulpcore/cache/__init__.py,sha256=GkYD4PgIMaVL83ywfAsLBC9JNNDUpmTtbitW9zZSslk,131
376
280
  pulpcore/cache/cache.py,sha256=d8GMlvjeGG9MOMdi5_9029WpGCKH8Y5q9b2lt3wSREo,17371
377
- pulpcore/content/__init__.py,sha256=lJDgxeIHXI__7LOQciRQSTItebgsxpoEGbd19Q7jNdI,4015
281
+ pulpcore/content/__init__.py,sha256=mHYi85Hy-IhG50AR-jICk9pIiMUatHJx5wO1dFJkn9k,4000
378
282
  pulpcore/content/authentication.py,sha256=lEZBkXBBBkIdtFMCSpHDD7583M0bO-zsZNYXTmpr4k8,3235
379
283
  pulpcore/content/entrypoint.py,sha256=DiQTQzfcUiuyl37uvy6Wpa_7kr8t79ekpMHr31MDL2s,2132
380
- pulpcore/content/handler.py,sha256=B0G2MwOtCedMfwFA5qcHsvg884GhsG_xw4ybYAmLthY,56781
284
+ pulpcore/content/handler.py,sha256=0Qeppuy5Jl4C6L-UF5WQQm3oQJgeiA8asiOj42KIcik,56908
381
285
  pulpcore/content/instrumentation.py,sha256=H0N0GWzvOPGGjFi6eIbGW3mcvagfnAfazccTh-BZVmE,1426
382
286
  pulpcore/download/__init__.py,sha256=s3Wh2GKdsmbUooVIR6wSvhYVIhpaTbtfR3Ar1OJhC7s,154
383
287
  pulpcore/download/base.py,sha256=4KCAYnV8jSOX078ETwlfwNZGY3xCBF9yy866tyGKAzE,13095
@@ -388,7 +292,7 @@ pulpcore/exceptions/__init__.py,sha256=ZgqOLvuNEAEPkC8lUVEJIFyUJZJOy94whdzXYoMP2
388
292
  pulpcore/exceptions/base.py,sha256=3iNTD8BsAfe7vpUaOzXl2f_WJPd4wfqEuf2GkFheBhs,2863
389
293
  pulpcore/exceptions/plugin.py,sha256=CrfzjCP1YZk_W6p1yRFrUfqTv0Iptzu2aBxzlebXeLU,613
390
294
  pulpcore/exceptions/validation.py,sha256=4iyDMxKzejHIzEuebDRXkvA_GNCdaommW9Ycsaa1v3Y,2481
391
- pulpcore/openapi/__init__.py,sha256=8R96t7rvAFgIU_-Bv79X_cW0NV10Au9vHzUmp5jaFpw,18443
295
+ pulpcore/openapi/__init__.py,sha256=o32R5pngZvHZWi0lByGOafz7-7xC1zmz66qiR5Yx6i8,18748
392
296
  pulpcore/openapi/hooks.py,sha256=uRFFW6khHNrntK6R99SUEDfP4LzmYJfsX7i8XGO4iaI,1426
393
297
  pulpcore/plugin/__init__.py,sha256=q0qu_15BTEY_EqPB9DSDk8rdnZMvld3cZsFXEnOVjuo,131
394
298
  pulpcore/plugin/access_policy.py,sha256=KHbWBXEOP59V8J_R52Pw2Q_Amodg-1bJYh6tyt5vDgk,4968
@@ -408,14 +312,14 @@ pulpcore/plugin/repo_version_utils.py,sha256=nuo55r5rQgDoFfdaobuyvqINW1B8k5xM618
408
312
  pulpcore/plugin/responses.py,sha256=VcgJtVaTzCPjdIGz_AS4nQwO4ooh4O5T9KBEa1FGA1w,62
409
313
  pulpcore/plugin/storage.py,sha256=CMoWFPfZG82-SOmuuaf8aPDYerK7mvxlER_cgWdJzQA,82
410
314
  pulpcore/plugin/sync.py,sha256=IwAUZ_7vVYuba2Uhm0ndMyEnNZTkOhX0kOVWtb8SgxE,1002
411
- pulpcore/plugin/tasking.py,sha256=Ij9Zqamzn566Qf-8uvcm2q1AD4nZ6Mqi7FZnJow8Q2Y,677
315
+ pulpcore/plugin/tasking.py,sha256=bMbiD5Z8NmifRzgoCqvhvEM1PfVZXVVelGMK8UP254o,764
412
316
  pulpcore/plugin/util.py,sha256=Az0DDhdC6fEIPApC5ffdvM4oMwbqteISJ-b1yEcFRBE,1470
413
317
  pulpcore/plugin/authentication/__init__.py,sha256=0qx9U7Poy96Ql3zu7DZwmzsA8Cx_yd1zHeeGKLeLXHg,69
414
318
  pulpcore/plugin/cache/__init__.py,sha256=0P1OqLmYxJdAaxhND6flNZzYa-korgIrzS1eOiTT_kc,74
415
319
  pulpcore/plugin/download/__init__.py,sha256=XRrHVz5_QfxSixHr15b4Cni0Z-D3xiRITqiSeGnkwo8,137
416
- pulpcore/plugin/models/__init__.py,sha256=oX31g3hWIXIxAKg-BiqpRmB0SM9xqOXqOKpk0kWNj_A,1896
320
+ pulpcore/plugin/models/__init__.py,sha256=jY0kg1KB15WdD_nzX_8Nz9Gms-HLwIdwzMTjToa7IbQ,1948
417
321
  pulpcore/plugin/models/role.py,sha256=ZwWt9eQOfjjk2rcGKuXuENoOPldTjqLI9LLXKSBXsEQ,244
418
- pulpcore/plugin/serializers/__init__.py,sha256=TSGHag4b_fUIlINCD9dq6pLToHiQz41ps0i0-NQhbik,2558
322
+ pulpcore/plugin/serializers/__init__.py,sha256=YsfNZ1CqgbZZZrhTDI_GxMB72d3LQUVSJ-Aj5Mx3EP4,2630
419
323
  pulpcore/plugin/serializers/content.py,sha256=l2VKp5qLstI8InuisjxISTo_YimbxSorDfWncx5VY0U,9072
420
324
  pulpcore/plugin/stages/__init__.py,sha256=ZSMmgOKoPjEfg1VhNpldJf2bUvqezCG4gj_FBkJ4CpU,466
421
325
  pulpcore/plugin/stages/api.py,sha256=6iet7K6H5c9vk5lS9oE3gCyLlqdDKoqPMfF-lNIA-GQ,8435
@@ -423,15 +327,15 @@ pulpcore/plugin/stages/artifact_stages.py,sha256=yKJQc06YevDiWGDsQDuWXzL0juj49UZ
423
327
  pulpcore/plugin/stages/content_stages.py,sha256=kyoJfZY3K8QncmbuVMOCyG9PcLYp8athFvz6E7weL-Q,16082
424
328
  pulpcore/plugin/stages/declarative_version.py,sha256=Ml0baZHY4om4Ai12azUIuIR6xdINuJSoxHqlGlKXh14,7503
425
329
  pulpcore/plugin/stages/models.py,sha256=0b7xs9d64WTG2yHog1Zo_Z_-pomFAe-gC4u9wksY7H0,7490
426
- pulpcore/plugin/viewsets/__init__.py,sha256=G2zE-NRWz6PFYp8OMZrv01RYBQELFWfW702bRvxXs3k,2281
330
+ pulpcore/plugin/viewsets/__init__.py,sha256=QHiOyh-_8OVLI_PK9tOyqWgW4440pIXFvxulHCSVOOI,2347
427
331
  pulpcore/plugin/viewsets/content.py,sha256=MHvmLOxsKSQfk6y5t1s9CVxkce9YNeU-dYb1Ldyf83I,6432
428
332
  pulpcore/tasking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
333
  pulpcore/tasking/_util.py,sha256=fPW4k1nUa_NZ0ywy_A15Fuiejo5stY58abPbZTXw5t8,9904
430
- pulpcore/tasking/entrypoint.py,sha256=Npnn41e39soGvJ7CTaZXT5MjIhOO7UtQmpmNaZtfKYg,1120
334
+ pulpcore/tasking/entrypoint.py,sha256=eAypZD4ORoNOrmBeMdbwO9p6GSQ59bMvZ3TrbnE0czw,1305
431
335
  pulpcore/tasking/kafka.py,sha256=76z4DzeXM1WL5uu1HlKnduWeLO3-b-czvGBXdWR6054,3845
432
336
  pulpcore/tasking/storage.py,sha256=zQkwlpC_FDQtmZGZ8vKwHqxvD6CLO_gAS4Q7wijZE-k,3106
433
- pulpcore/tasking/tasks.py,sha256=0WLv16FOCPOsrGAxEOYOkmzFP7MRYCczXWB94ajIkzY,14537
434
- pulpcore/tasking/worker.py,sha256=c9RgSYg4J_Jn_q70MVF_2egDeASFgXlLrP00lqWKtnQ,23822
337
+ pulpcore/tasking/tasks.py,sha256=bYYAFwJGGyl3mgS7Iw3JZ-vDl1nXbHiAbt3LBSq-nqQ,12946
338
+ pulpcore/tasking/worker.py,sha256=N7aiZve1nZs7LRfOEq4HiXH4jjV0m1sFufXfVD81lc8,26073
435
339
  pulpcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
436
340
  pulpcore/tests/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
341
  pulpcore/tests/functional/content_with_coverage.py,sha256=gQK8himy32s9O9vpXdgoM6-_z2KySaXm5rTga9z0jGI,260
@@ -441,13 +345,13 @@ pulpcore/tests/functional/api/test_access_policy.py,sha256=R2vPadltPVpOL61LiarfO
441
345
  pulpcore/tests/functional/api/test_api_docs.py,sha256=72CB6jRB1Inubj0ZdkV9FsFBbu4YQDqn1ITNvemnAxg,1133
442
346
  pulpcore/tests/functional/api/test_api_root_rewrite.py,sha256=QAyv3AzrVm8LSA74y8wSzxVbrhL36grt-0aRG63aI1c,6101
443
347
  pulpcore/tests/functional/api/test_artifact_distribution.py,sha256=EWBsFWW_A-Wi3NeQDGeUSzPd2-NKNdlhvxGCLqd-oxA,1271
444
- pulpcore/tests/functional/api/test_auth.py,sha256=MukWHLBdC-Bz4Ut9qMM7U1clx7MUutKGPDgY1vQ4KAI,5529
348
+ pulpcore/tests/functional/api/test_auth.py,sha256=IemwGQW1YDe_TAvdBTpStkc1_yI9uIzZRxN1HvCMp70,6174
445
349
  pulpcore/tests/functional/api/test_correlation_id.py,sha256=4iCKrI8exUPuwOr6tO1nqo8nTZ_8-n3tXChKRIqJHF4,519
446
350
  pulpcore/tests/functional/api/test_crd_artifacts.py,sha256=NNr7Bd9Uy7gSaeqQS8vs03znSv8KunM-EVWn9ab_Ycg,7873
447
351
  pulpcore/tests/functional/api/test_crud_domains.py,sha256=vgPuj-J4-KxBegH5rFYWU6mWjU9OXq1OdN4FtRb0Aa0,13063
448
352
  pulpcore/tests/functional/api/test_filter.py,sha256=2tPd85CJRxMNPDZYPkHnrcVyRq9pa1R06uWiYBbpGeA,9296
449
- pulpcore/tests/functional/api/test_login.py,sha256=oGRHv6H74PcRjS-VMtN9A2L22JDtfM_V9C6ISd9Ciqc,3922
450
- pulpcore/tests/functional/api/test_openapi_schema.py,sha256=pDm4xSp40sr69WgUM8MzHDaE8ouCgPRMKGC6cKTVkEs,3825
353
+ pulpcore/tests/functional/api/test_login.py,sha256=BcOgch17WZ7jD7LGNN5s0i0KOdJt_uF25APbNYdYltI,5548
354
+ pulpcore/tests/functional/api/test_openapi_schema.py,sha256=L2auDfBMYOTUpKQKmPy1q-bBUd3fk7fEsMMvn7kY2ZY,4803
451
355
  pulpcore/tests/functional/api/test_openpgp.py,sha256=6iKUhAs4mSeIDg1xVA6sP1SF0RgqwRzS9ioGfU6Ahlk,6272
452
356
  pulpcore/tests/functional/api/test_replication.py,sha256=46DHyvbR1QevT_IzMtmR8wNsmUNp6U-vm3OI_oUQRRc,28730
453
357
  pulpcore/tests/functional/api/test_repos.py,sha256=auGxjb_xD6dNAF889H1qH-0sCAe9cV8SdfV1JztecVw,5205
@@ -462,7 +366,7 @@ pulpcore/tests/functional/api/test_upload.py,sha256=oLP1ZmQgPzgK5jAQwGeXS8uLFHgA
462
366
  pulpcore/tests/functional/api/test_users_groups.py,sha256=YFG0xtyJuIRraczR7ERl_UNS7dlJfKd2eUmXgD1lLBU,2926
463
367
  pulpcore/tests/functional/api/test_workers.py,sha256=u3oQnErjf6qPCg08XMRZzecGetLLDWmvHvoZIk-AUAA,4659
464
368
  pulpcore/tests/functional/api/using_plugin/__init__.py,sha256=QyyfzgjLOi4n32G3o9aGH5eQDNjjD_qUpHLOZpPPZa4,80
465
- pulpcore/tests/functional/api/using_plugin/test_checkpoint.py,sha256=gx1oiHOVUH5QZfF33k_DXSw-AVbYQp39uKii1D96BoI,7965
369
+ pulpcore/tests/functional/api/using_plugin/test_checkpoint.py,sha256=l1dE-CieRU_9wheQu-8Y7aAnGSKUztOJ6gaa4a0yoA8,8562
466
370
  pulpcore/tests/functional/api/using_plugin/test_content_access.py,sha256=Ym800bU-M48RCDfQMkVa1UQt_sfgy5ciU0FxorCk9Ds,2551
467
371
  pulpcore/tests/functional/api/using_plugin/test_content_cache.py,sha256=OB3gDbPDptQBjyYnr_jHyU9bcI_-ANAoUp9EDiskwug,7312
468
372
  pulpcore/tests/functional/api/using_plugin/test_content_delivery.py,sha256=oatcqaiOv7o_BqsgQ3uXCWnY1RWa5cmzUvPBHzJuI8o,11384
@@ -478,7 +382,7 @@ pulpcore/tests/functional/api/using_plugin/test_migrate.py,sha256=DiCAessLO4B9jn
478
382
  pulpcore/tests/functional/api/using_plugin/test_orphans.py,sha256=5bAtDNBHUwAh7Id8zl1E9POenzwUjl7mtxkWrzuZzCk,6540
479
383
  pulpcore/tests/functional/api/using_plugin/test_pagination.py,sha256=6qsJbDEPQ4AeJKtHM3EijUNXofmDZP7dzgVFmQoAmo0,1481
480
384
  pulpcore/tests/functional/api/using_plugin/test_prn.py,sha256=Z-HHqD7ZVIAKlhuPV0XG0UUxvJASGwgfJyzGmOJblW4,4792
481
- pulpcore/tests/functional/api/using_plugin/test_proxy.py,sha256=8V0RnsP1c7f0u_3488m4bcFROmW299AVjuvzgEx7xp4,4326
385
+ pulpcore/tests/functional/api/using_plugin/test_proxy.py,sha256=M1UJuOITmAMu5whlQHg7Sws-cXaEqnCu1OK_ttKw2N0,4324
482
386
  pulpcore/tests/functional/api/using_plugin/test_pulpimport.py,sha256=M3BWuF1HtyxOkfkvLVsVU4xlEWfawc1zTH1k3k17D64,18375
483
387
  pulpcore/tests/functional/api/using_plugin/test_reclaim_disk_space.py,sha256=eclRP_vWIbJl2pWyAlx_na-T5sUhlP4iQ2Ots1V1lwI,5879
484
388
  pulpcore/tests/functional/api/using_plugin/test_repair.py,sha256=SxfEC4cEm3HUgrwUV_DIXaaYsGKmO2APUAEWHQqurQ8,6849
@@ -499,9 +403,10 @@ pulpcore/tests/unit/test_pulp_urls.py,sha256=sMRZowo7ej4HIrGEOY_OsDfXI1J4I8k_VXB
499
403
  pulpcore/tests/unit/test_settings.py,sha256=-yRXxmK-OdgC6mHqS83XgkD-PkZYvY1wZ37gRrGEoYc,2067
500
404
  pulpcore/tests/unit/test_util.py,sha256=hgioXXC5-tufFpk6zrmMEHtWPG7UbmMHqeF5CiXOLqQ,884
501
405
  pulpcore/tests/unit/test_viewsets.py,sha256=6rek28Rr0kEuYjQZ0_kTSnKsTvmMmD3l-WV_GVb48YQ,3208
406
+ pulpcore/tests/unit/test_vulnerability_report.py,sha256=KFehXFns2gIkGQ-zWsXyK--d8CqVfHgijlWbMI8QmF0,2986
502
407
  pulpcore/tests/unit/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
503
408
  pulpcore/tests/unit/content/test_handler.py,sha256=f4F9RAqCP60PUanYdeLW_A955UjRt8eCTrRuh0mChDU,19774
504
- pulpcore/tests/unit/content/test_heartbeat.py,sha256=pHmSNy7KjlU9LpRcejBr8lttaJXrE4k9XQ5e2rDZmT0,1036
409
+ pulpcore/tests/unit/content/test_heartbeat.py,sha256=2hkl4CZQgQ3h6czusb4M_xCLMxFZ4knuss3KhEzCc1U,1173
505
410
  pulpcore/tests/unit/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
411
  pulpcore/tests/unit/download/test_downloader_base.py,sha256=TYG_OPuyj-_N5L-zLTW1qJD_29nKFMA_PC-fPfLKLOo,1281
507
412
  pulpcore/tests/unit/download/test_downloader_factory.py,sha256=mumtIAtRg_dS2uQvOH3J5NXb9XuvQ53iWlBP5koZ_nM,1177
@@ -510,7 +415,6 @@ pulpcore/tests/unit/metrics/conftest.py,sha256=pyA8wwLO-TsyERvYnwnF2_Ura0rvZbAmj
510
415
  pulpcore/tests/unit/metrics/test_aiohttp_instrumentation.py,sha256=yPTiVv_9oOqL1Y6I66tX0XQomxu0Efw-Q0-LxzvQBT4,568
511
416
  pulpcore/tests/unit/metrics/test_django_instrumentation.py,sha256=vkUGm_Q0WCph6x-fWOX8bkpY7XFaNjqVKnJ2zWqu08Q,676
512
417
  pulpcore/tests/unit/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
513
- pulpcore/tests/unit/migration/test_0077_move_remote_url_credentials.py,sha256=_QnGI6ylP0JKHXipGpA4QJEXeu0ZAO5hxDu5872V6Bc,1223
514
418
  pulpcore/tests/unit/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
515
419
  pulpcore/tests/unit/models/test_base.py,sha256=77hnxOFBJYMNbI1YGEaR5yj8VCapNGmEgoD0m8Kr3GY,2618
516
420
  pulpcore/tests/unit/models/test_content.py,sha256=heU0vJKucPIp6py2Ww-eXLvhFopvmK8QjFgzt1jGnYQ,5599
@@ -532,9 +436,9 @@ pulpcore/tests/unit/stages/test_artifactdownloader.py,sha256=qB1ANdFmNtUnljg8fCd
532
436
  pulpcore/tests/unit/stages/test_stages.py,sha256=H1a2BQLjdZlZvcb_qULp62huZ1xy6ItTcthktVyGU0w,4735
533
437
  pulpcore/tests/unit/viewsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
534
438
  pulpcore/tests/unit/viewsets/test_viewset_base.py,sha256=W9o3V6758bZctR6krMPPQytb0xJuF-jb4uBWTNDoD_U,4837
535
- pulpcore-3.83.2.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
536
- pulpcore-3.83.2.dist-info/METADATA,sha256=H7p6-06DVRkFtXi_V7p_I7e5rxAxhQ8ABdy6o4IF3Hg,4380
537
- pulpcore-3.83.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
538
- pulpcore-3.83.2.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
539
- pulpcore-3.83.2.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
540
- pulpcore-3.83.2.dist-info/RECORD,,
439
+ pulpcore-3.85.0.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
440
+ pulpcore-3.85.0.dist-info/METADATA,sha256=PNKQaTbkMDoCTBwBMxnf3lrWozzEwA3xCMHfIi_ep9M,4105
441
+ pulpcore-3.85.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
442
+ pulpcore-3.85.0.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
443
+ pulpcore-3.85.0.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
444
+ pulpcore-3.85.0.dist-info/RECORD,,
@@ -1,28 +0,0 @@
1
- from gettext import gettext as _
2
-
3
- from django.core.exceptions import ImproperlyConfigured
4
-
5
- try:
6
- import rhsm # rhsm is an optional dependency
7
- except ImportError as e:
8
- rhsm = None
9
- rhsm_import_error = str(e)
10
-
11
-
12
- def get_rhsm():
13
- """
14
- Returns the `rhsm` module or raises an exception if `rhsm` is not installed.
15
-
16
- `rhsm` is an optional dependency so you can call this function to get `rhsm` or have an
17
- `ImproperlyConfigured` error for the user.
18
-
19
- Returns:
20
- The `rhsm` Python module.
21
-
22
- Raises:
23
- `ImproperlyConfigured` exception explaining `rhsm` is not installed.
24
- """
25
- if rhsm is None:
26
- error_msg = _("RHSMCertGuard requires the Python package 'rhsm' to be installed ({}).")
27
- raise ImproperlyConfigured(error_msg.format(rhsm_import_error))
28
- return rhsm
@@ -1,9 +0,0 @@
1
- from django.test import TestCase
2
-
3
-
4
- class TestNothing(TestCase):
5
- """Test Nothing (placeholder)."""
6
-
7
- def test_nothing_at_all(self):
8
- """Test that the tests are running and that's it."""
9
- self.assertTrue(True)
@@ -1,59 +0,0 @@
1
- # Generated by Django 4.2.15 on 2024-10-22 12:40
2
-
3
- from django.db import migrations, models
4
- import django.db.models.deletion
5
-
6
-
7
- class Migration(migrations.Migration):
8
-
9
- initial = True
10
-
11
- dependencies = [
12
- ('core', '0091_systemid'),
13
- ]
14
-
15
- operations = [
16
- migrations.CreateModel(
17
- name='FilePublication',
18
- fields=[
19
- ('publication_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.publication')),
20
- ],
21
- options={
22
- 'abstract': False,
23
- },
24
- bases=('core.publication',),
25
- ),
26
- migrations.CreateModel(
27
- name='FileRemote',
28
- fields=[
29
- ('remote_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.remote')),
30
- ],
31
- options={
32
- 'abstract': False,
33
- },
34
- bases=('core.remote',),
35
- ),
36
- migrations.CreateModel(
37
- name='FileDistribution',
38
- fields=[
39
- ('basedistribution_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.basedistribution')),
40
- ('publication', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='core.publication')),
41
- ],
42
- options={
43
- 'abstract': False,
44
- },
45
- bases=('core.basedistribution',),
46
- ),
47
- migrations.CreateModel(
48
- name='FileContent',
49
- fields=[
50
- ('content_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.content')),
51
- ('relative_path', models.CharField(max_length=255)),
52
- ('digest', models.CharField(max_length=64)),
53
- ],
54
- options={
55
- 'unique_together': {('relative_path', 'digest')},
56
- },
57
- bases=('core.content',),
58
- ),
59
- ]
@@ -1,55 +0,0 @@
1
- # Generated by Django 2.2.4 on 2019-08-09 17:03
2
-
3
- from django.db import migrations, models
4
- import django.db.models.deletion
5
-
6
-
7
- class Migration(migrations.Migration):
8
-
9
- dependencies = [
10
- ('file', '0001_initial'),
11
- ]
12
-
13
- operations = [
14
- migrations.AlterModelOptions(
15
- name='filecontent',
16
- options={'default_related_name': '%(app_label)s_%(model_name)s'},
17
- ),
18
- migrations.AlterModelOptions(
19
- name='filedistribution',
20
- options={'default_related_name': '%(app_label)s_%(model_name)s'},
21
- ),
22
- migrations.AlterModelOptions(
23
- name='filepublication',
24
- options={'default_related_name': '%(app_label)s_%(model_name)s'},
25
- ),
26
- migrations.AlterModelOptions(
27
- name='fileremote',
28
- options={'default_related_name': '%(app_label)s_%(model_name)s'},
29
- ),
30
- migrations.AlterField(
31
- model_name='filecontent',
32
- name='content_ptr',
33
- field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='file_filecontent', serialize=False, to='core.Content'),
34
- ),
35
- migrations.AlterField(
36
- model_name='filedistribution',
37
- name='basedistribution_ptr',
38
- field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='file_filedistribution', serialize=False, to='core.BaseDistribution'),
39
- ),
40
- migrations.AlterField(
41
- model_name='filedistribution',
42
- name='publication',
43
- field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='file_filedistribution', to='core.Publication'),
44
- ),
45
- migrations.AlterField(
46
- model_name='filepublication',
47
- name='publication_ptr',
48
- field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='file_filepublication', serialize=False, to='core.Publication'),
49
- ),
50
- migrations.AlterField(
51
- model_name='fileremote',
52
- name='remote_ptr',
53
- field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='file_fileremote', serialize=False, to='core.Remote'),
54
- ),
55
- ]
@@ -1,18 +0,0 @@
1
- # Generated by Django 2.2.6 on 2019-10-14 17:21
2
-
3
- from django.db import migrations, models
4
-
5
-
6
- class Migration(migrations.Migration):
7
-
8
- dependencies = [
9
- ('file', '0002_file_related_names'),
10
- ]
11
-
12
- operations = [
13
- migrations.AlterField(
14
- model_name='filecontent',
15
- name='relative_path',
16
- field=models.TextField(),
17
- ),
18
- ]
@@ -1,21 +0,0 @@
1
- # Generated by Django 4.2.15 on 2024-10-22 12:40
2
-
3
- from django.db import migrations
4
-
5
- # Note: This migration was throwing exceptions so all of the fields/etc were removed.
6
- # The table gets deleted later in 0006_delete_filefilesystemexporter.py.
7
-
8
-
9
- class Migration(migrations.Migration):
10
-
11
- dependencies = [
12
- ('file', '0003_auto_20191014_1721'),
13
- ]
14
-
15
- operations = [
16
- migrations.CreateModel(
17
- name='FileFileSystemExporter',
18
- fields=[
19
- ],
20
- ),
21
- ]