pulpcore 3.76.1__tar.gz → 3.77.1__tar.gz

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 (551) hide show
  1. {pulpcore-3.76.1 → pulpcore-3.77.1}/CHANGES.md +374 -0
  2. {pulpcore-3.76.1 → pulpcore-3.77.1}/PKG-INFO +8 -5
  3. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/__init__.py +1 -1
  4. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/__init__.py +1 -1
  5. pulpcore-3.77.1/pulp_file/tests/functional/api/test_remote_settings.py +344 -0
  6. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/apps.py +1 -1
  7. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/replica.py +4 -4
  8. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/publication.py +30 -10
  9. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/repository.py +49 -3
  10. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/settings.py +13 -1
  11. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/__init__.py +1 -1
  12. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/base.py +37 -0
  13. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/test.py +9 -6
  14. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/base.py +2 -2
  15. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/cache/cache.py +8 -3
  16. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/constants.py +2 -0
  17. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/content/handler.py +53 -37
  18. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/tasking.py +2 -2
  19. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/pytest_plugin.py +2 -0
  20. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/_util.py +46 -16
  21. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/tasks.py +44 -4
  22. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_tasking.py +151 -1
  23. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_cache.py +18 -2
  24. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/PKG-INFO +8 -5
  25. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/requires.txt +8 -4
  26. {pulpcore-3.76.1 → pulpcore-3.77.1}/pyproject.toml +7 -6
  27. pulpcore-3.76.1/pulp_file/tests/functional/api/test_remote_settings.py +0 -213
  28. {pulpcore-3.76.1 → pulpcore-3.77.1}/CODE_OF_CONDUCT.md +0 -0
  29. {pulpcore-3.76.1 → pulpcore-3.77.1}/COMMITMENT +0 -0
  30. {pulpcore-3.76.1 → pulpcore-3.77.1}/CONTRIBUTING.md +0 -0
  31. {pulpcore-3.76.1 → pulpcore-3.77.1}/COPYRIGHT +0 -0
  32. {pulpcore-3.76.1 → pulpcore-3.77.1}/LICENSE +0 -0
  33. {pulpcore-3.76.1 → pulpcore-3.77.1}/MANIFEST.in +0 -0
  34. {pulpcore-3.76.1 → pulpcore-3.77.1}/README.md +0 -0
  35. {pulpcore-3.76.1 → pulpcore-3.77.1}/ci_requirements.txt +0 -0
  36. {pulpcore-3.76.1 → pulpcore-3.77.1}/functest_requirements.txt +0 -0
  37. {pulpcore-3.76.1 → pulpcore-3.77.1}/manage.py +0 -0
  38. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/__init__.py +0 -0
  39. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/migrations/0001_initial.py +0 -0
  40. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/migrations/0002_alter_rhsmcertguard_contentguard_ptr_and_more.py +0 -0
  41. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/migrations/__init__.py +0 -0
  42. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/models.py +0 -0
  43. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/serializers.py +0 -0
  44. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/utils.py +0 -0
  45. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/app/viewsets.py +0 -0
  46. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/pytest_plugin.py +0 -0
  47. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/__init__.py +0 -0
  48. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/__init__.py +0 -0
  49. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/api/__init__.py +0 -0
  50. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/api/test_rhsm_certguard.py +0 -0
  51. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/api/test_x509_certguard.py +0 -0
  52. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.crt +0 -0
  53. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.key +0 -0
  54. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/trusted_but_expired.pem +0 -0
  55. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/uber.cert +0 -0
  56. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert-key.pem +0 -0
  57. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert.pem +0 -0
  58. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713-key.pem +0 -0
  59. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713.pem +0 -0
  60. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840-key.pem +0 -0
  61. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840.pem +0 -0
  62. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985-key.pem +0 -0
  63. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985.pem +0 -0
  64. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172-key.pem +0 -0
  65. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172.pem +0 -0
  66. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/certificates/ca.pem +0 -0
  67. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/genca.sh +0 -0
  68. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/keys/ca.pem +0 -0
  69. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/certificates/ca.pem +0 -0
  70. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/certificates/client.pem +0 -0
  71. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/certificates/server.pem +0 -0
  72. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/certificates/un_urlencoded_cert.txt +0 -0
  73. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/certificates/untrusted_client.pem +0 -0
  74. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/genall.sh +0 -0
  75. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/genca.sh +0 -0
  76. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/genclient.sh +0 -0
  77. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh +0 -0
  78. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/keys/ca.pem +0 -0
  79. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/keys/client.pem +0 -0
  80. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/artifacts/x509/keys/server.pem +0 -0
  81. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/conftest.py +0 -0
  82. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/functional/constants.py +0 -0
  83. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/unit/__init__.py +0 -0
  84. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_certguard/tests/unit/test_models.py +0 -0
  85. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/__init__.py +0 -0
  86. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0001_initial.py +0 -0
  87. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py +0 -0
  88. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0002_file_related_names.py +0 -0
  89. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0003_auto_20191014_1721.py +0 -0
  90. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0004_filefilesystemexporter.py +0 -0
  91. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0005_filerepository.py +0 -0
  92. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0006_delete_filefilesystemexporter.py +0 -0
  93. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0007_filefilesystemexporter.py +0 -0
  94. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0008_add_manifest_field.py +0 -0
  95. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0009_move_data_to_new_master_distribution_model.py +0 -0
  96. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0010_auto_publish.py +0 -0
  97. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0011_fix_auto_publish.py +0 -0
  98. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0012_delete_filefilesystemexporter.py +0 -0
  99. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0013_file_acs.py +0 -0
  100. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0014_new_rbac_permissions.py +0 -0
  101. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0015_allow_null_manifest.py +0 -0
  102. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0016_add_domain.py +0 -0
  103. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py +0 -0
  104. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/migrations/__init__.py +0 -0
  105. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/modelresource.py +0 -0
  106. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/models.py +0 -0
  107. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/replica.py +0 -0
  108. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/serializers.py +0 -0
  109. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/tasks/__init__.py +0 -0
  110. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/tasks/publishing.py +0 -0
  111. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/tasks/synchronizing.py +0 -0
  112. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/app/viewsets.py +0 -0
  113. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/manifest.py +0 -0
  114. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/pytest_plugin.py +0 -0
  115. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/__init__.py +0 -0
  116. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/__init__.py +0 -0
  117. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/__init__.py +0 -0
  118. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_acs.py +0 -0
  119. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_auto_publish.py +0 -0
  120. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_bad_sync.py +0 -0
  121. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_content_labels.py +0 -0
  122. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_crud_content_unit.py +0 -0
  123. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_crud_remotes.py +0 -0
  124. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_domains.py +0 -0
  125. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_download_policies.py +0 -0
  126. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_generic_list.py +0 -0
  127. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_labels.py +0 -0
  128. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_mime_types.py +0 -0
  129. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_publish.py +0 -0
  130. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_pulp_export.py +0 -0
  131. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_rbac.py +0 -0
  132. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/functional/api/test_sync.py +0 -0
  133. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/unit/__init__.py +0 -0
  134. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/unit/test_safe_paths.py +0 -0
  135. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulp_file/tests/unit/test_serializers.py +0 -0
  136. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/__init__.py +0 -0
  137. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/__init__.py +0 -0
  138. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/access_policy.py +0 -0
  139. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/authentication.py +0 -0
  140. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/checks.py +0 -0
  141. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/entrypoint.py +0 -0
  142. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/files.py +0 -0
  143. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/global_access_conditions.py +0 -0
  144. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/importexport.py +0 -0
  145. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/loggers.py +0 -0
  146. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/manage.py +0 -0
  147. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/__init__.py +0 -0
  148. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/__init__.py +0 -0
  149. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/add-signing-service.py +0 -0
  150. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/analyze-publication.py +0 -0
  151. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/datarepair-2327.py +0 -0
  152. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/dump-permissions.py +0 -0
  153. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/dump-publications-to-fs.py +0 -0
  154. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/handle-artifact-checksums.py +0 -0
  155. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/migrationstat.py +0 -0
  156. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/openapi.py +0 -0
  157. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/rebasemigrations.py +0 -0
  158. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/remove-plugin.py +0 -0
  159. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/remove-signing-service.py +0 -0
  160. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/repository-size.py +0 -0
  161. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/reset-admin-password.py +0 -0
  162. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/management/commands/rotate-db-key.py +0 -0
  163. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0001_initial.py +0 -0
  164. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py +0 -0
  165. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0002_increase_artifact_size_field.py +0 -0
  166. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0003_remove_upload_completed.py +0 -0
  167. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0004_add_duplicated_reserved_resources.py +0 -0
  168. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0005_progressreport_code.py +0 -0
  169. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0006_repository_plugin_managed.py +0 -0
  170. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0007_delete_progress_proxies.py +0 -0
  171. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0008_published_metadata_as_content.py +0 -0
  172. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0009_remove_task_non_fatal_errors.py +0 -0
  173. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0010_pulp_fields.py +0 -0
  174. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0011_relative_path.py +0 -0
  175. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0012_auto_20191104_2000.py +0 -0
  176. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0013_repository_pulp_type.py +0 -0
  177. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0014_remove_repository_plugin_managed.py +0 -0
  178. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0015_auto_20191112_1426.py +0 -0
  179. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0016_charfield_to_textfield.py +0 -0
  180. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0017_remove_task_parent.py +0 -0
  181. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0018_auto_20191127_2350.py +0 -0
  182. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0019_add_signing_service_model.py +0 -0
  183. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0020_change_publishedartifact_constraints.py +0 -0
  184. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0021_add_signing_service_foreign_key.py +0 -0
  185. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0022_rename_last_version.py +0 -0
  186. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0023_change_exporter_models.py +0 -0
  187. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0024_use_local_storage_for_uploads.py +0 -0
  188. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0025_task_parent_task.py +0 -0
  189. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0026_task_group.py +0 -0
  190. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0027_export_backend.py +0 -0
  191. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0028_import_importer_pulpimporter_pulpimporterrepository.py +0 -0
  192. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0029_export_delete.py +0 -0
  193. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0030_taskgroup_all_tasks_dispatched.py +0 -0
  194. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0031_import_export_validate_params.py +0 -0
  195. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0032_export_to_chunks.py +0 -0
  196. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0033_increase_remote_artifact_size_field.py +0 -0
  197. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0034_groupprogressreport.py +0 -0
  198. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0035_content_upstream_id.py +0 -0
  199. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0036_unprotect_last_export.py +0 -0
  200. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0037_pulptemporaryfile.py +0 -0
  201. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0038_repository_remote.py +0 -0
  202. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0039_change_download_concurrency.py +0 -0
  203. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0040_set_admin_is_staff.py +0 -0
  204. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0041_accesspolicy.py +0 -0
  205. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0042_rbac_for_tasks.py +0 -0
  206. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0043_toc_attribute.py +0 -0
  207. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0044_temp_file_artifact_field.py +0 -0
  208. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0045_accesspolicy_permissions_allow_null.py +0 -0
  209. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0046_task__resource_job_id.py +0 -0
  210. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0047_improve_orphan_cleanup.py +0 -0
  211. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0048_fips_checksums.py +0 -0
  212. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0049_add_file_field_to_uploadchunk.py +0 -0
  213. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0050_namespace_access_policies.py +0 -0
  214. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0051_timeoutfields.py +0 -0
  215. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0052_tasking_logging_cid.py +0 -0
  216. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0053_remote_headers.py +0 -0
  217. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0054_add_public_key.py +0 -0
  218. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0055_label.py +0 -0
  219. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0056_remote_rate_limit.py +0 -0
  220. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0057_add_label_indexes.py +0 -0
  221. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0058_accesspolicy_customized.py +0 -0
  222. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0059_proxy_creds.py +0 -0
  223. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0060_data_migration_proxy_creds.py +0 -0
  224. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0061_call_handle_artifact_checksums_command.py +0 -0
  225. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0062_add_new_distribution_mastermodel.py +0 -0
  226. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0063_repository_retained_versions.py +0 -0
  227. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0064_add_new_style_task_columns.py +0 -0
  228. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0064_repository_user_hidden.py +0 -0
  229. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0065_merge_20210615_1211.py +0 -0
  230. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0066_download_concurrency_and_retry_changes.py +0 -0
  231. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0067_add_protect_to_task_reservation.py +0 -0
  232. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0068_add_timestamp_of_interest.py +0 -0
  233. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0069_update_json_fields.py +0 -0
  234. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0070_rename_retained_versions.py +0 -0
  235. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0071_filesystemexport_filesystemexporter.py +0 -0
  236. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0072_add_method_to_filesystem_exporter.py +0 -0
  237. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0073_encrypt_remote_fields.py +0 -0
  238. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0074_acs.py +0 -0
  239. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0075_rbaccontentguard.py +0 -0
  240. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0076_remove_reserved_resource.py +0 -0
  241. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0077_move_remote_url_credentials.py +0 -0
  242. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0078_grouprole_role_userrole.py +0 -0
  243. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0079_rename_permissions_assignment_accesspolicy_creation_hooks.py +0 -0
  244. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0080_proxy_group_model.py +0 -0
  245. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0081_reapplabel_group_permissions.py +0 -0
  246. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0082_add_manage_roles_permissions.py +0 -0
  247. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0083_alter_group_options.py +0 -0
  248. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0084_alter_rbaccontentguard_options.py +0 -0
  249. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0085_contentredirectcontentguard.py +0 -0
  250. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0086_task_json_fields.py +0 -0
  251. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0087_taskschedule.py +0 -0
  252. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0088_accesspolicy_queryset_scoping.py +0 -0
  253. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0089_alter_contentredirectcontentguard_options.py +0 -0
  254. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0090_char_to_text_field.py +0 -0
  255. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0091_systemid.py +0 -0
  256. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0092_alter_upload_options.py +0 -0
  257. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0093_add_info_field_repositoryversion.py +0 -0
  258. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0094_protect_repository_content.py +0 -0
  259. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0095_artifactdistribution.py +0 -0
  260. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0096_alter_task_logging_cid.py +0 -0
  261. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0097_remove_telemetry_task_schedule.py +0 -0
  262. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0098_pulp_labels.py +0 -0
  263. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0099_versions_field.py +0 -0
  264. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0100_upstreampulp.py +0 -0
  265. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0101_add_domain.py +0 -0
  266. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0102_add_domain_relations.py +0 -0
  267. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0103_alter_export_task.py +0 -0
  268. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0104_delete_label.py +0 -0
  269. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0105_abstract_uuid_gen.py +0 -0
  270. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0106_alter_artifactdistribution_distribution_ptr_and_more.py +0 -0
  271. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0107_distribution_hidden.py +0 -0
  272. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0108_task_versions.py +0 -0
  273. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0109_contentartifact_relative_path_index.py +0 -0
  274. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0110_apiappstatus.py +0 -0
  275. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0111_task_enc_args_task_enc_kwargs.py +0 -0
  276. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0112_alter_upstreampulp_options.py +0 -0
  277. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0113_headercontentguard.py +0 -0
  278. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0114_remove_task_args_remove_task_kwargs.py +0 -0
  279. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0115_compositecontentguard.py +0 -0
  280. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0116_alter_remoteartifact_md5_alter_remoteartifact_sha1_and_more.py +0 -0
  281. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0117_task_unblocked_at.py +0 -0
  282. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0118_task_core_task_unblock_2276a4_idx_and_more.py +0 -0
  283. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0119_grouprole_core_groupr_object__250e22_idx_and_more.py +0 -0
  284. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0120_get_url_removal.py +0 -0
  285. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0121_add_profile_artifacts_table.py +0 -0
  286. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0122_record_last_replication_timestamp.py +0 -0
  287. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0123_upstreampulp_q_select.py +0 -0
  288. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0124_task_deferred_task_immediate.py +0 -0
  289. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0125_openpgpdistribution_openpgpkeyring_openpgppublickey_and_more.py +0 -0
  290. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0126_remoteartifact_failed_at.py +0 -0
  291. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0127_remove_upstreampulp_pulp_label_select.py +0 -0
  292. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0128_domain_pulp_labels.py +0 -0
  293. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0129_content_pulp_labels.py +0 -0
  294. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0130_upstreampulp_policy.py +0 -0
  295. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0131_distribution_checkpoint_publication_checkpoint.py +0 -0
  296. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/0132_alter_content_options.py +0 -0
  297. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/migrations/__init__.py +0 -0
  298. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/mime_types.py +0 -0
  299. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/modelresource.py +0 -0
  300. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/__init__.py +0 -0
  301. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/access_policy.py +0 -0
  302. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/acs.py +0 -0
  303. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/analytics.py +0 -0
  304. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/base.py +0 -0
  305. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/content.py +0 -0
  306. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/domain.py +0 -0
  307. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/exporter.py +0 -0
  308. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/fields.py +0 -0
  309. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/generic.py +0 -0
  310. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/importer.py +0 -0
  311. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/openpgp.py +0 -0
  312. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/progress.py +0 -0
  313. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/publication.py +0 -0
  314. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/replica.py +0 -0
  315. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/repository.py +0 -0
  316. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/role.py +0 -0
  317. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/status.py +0 -0
  318. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/storage.py +0 -0
  319. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/task.py +0 -0
  320. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/models/upload.py +0 -0
  321. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/openpgp.py +0 -0
  322. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/protobuf/__init__.py +0 -0
  323. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/protobuf/analytics_pb2.py +0 -0
  324. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/pulp_hashlib.py +0 -0
  325. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/pulpcore_gunicorn_application.py +0 -0
  326. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/redis_connection.py +0 -0
  327. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/response.py +0 -0
  328. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/role_util.py +0 -0
  329. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/__init__.py +0 -0
  330. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/access_policy.py +0 -0
  331. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/acs.py +0 -0
  332. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/base.py +0 -0
  333. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/content.py +0 -0
  334. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/domain.py +0 -0
  335. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/exporter.py +0 -0
  336. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/fields.py +0 -0
  337. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/importer.py +0 -0
  338. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/openpgp.py +0 -0
  339. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/orphans.py +0 -0
  340. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/progress.py +0 -0
  341. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/purge.py +0 -0
  342. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/reclaim.py +0 -0
  343. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/repair.py +0 -0
  344. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/replica.py +0 -0
  345. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/status.py +0 -0
  346. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/task.py +0 -0
  347. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/upload.py +0 -0
  348. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/serializers/user.py +0 -0
  349. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/analytics.py +0 -0
  350. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/export.py +0 -0
  351. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/importer.py +0 -0
  352. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/migrate.py +0 -0
  353. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/orphan.py +0 -0
  354. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/purge.py +0 -0
  355. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/reclaim_space.py +0 -0
  356. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/replica.py +0 -0
  357. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/repository.py +0 -0
  358. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/telemetry.py +0 -0
  359. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/tasks/upload.py +0 -0
  360. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/templates/rest_framework/api.html +0 -0
  361. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/templatetags/__init__.py +0 -0
  362. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/templatetags/pulp_urls.py +0 -0
  363. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/urls.py +0 -0
  364. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/util.py +0 -0
  365. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/views/__init__.py +0 -0
  366. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/views/importer.py +0 -0
  367. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/views/orphans.py +0 -0
  368. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/views/repair.py +0 -0
  369. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/views/status.py +0 -0
  370. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/__init__.py +0 -0
  371. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/access_policy.py +0 -0
  372. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/acs.py +0 -0
  373. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/content.py +0 -0
  374. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/custom_filters.py +0 -0
  375. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/domain.py +0 -0
  376. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/exporter.py +0 -0
  377. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/importer.py +0 -0
  378. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/openpgp.py +0 -0
  379. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/orphans.py +0 -0
  380. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/publication.py +0 -0
  381. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/reclaim.py +0 -0
  382. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/replica.py +0 -0
  383. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/repository.py +0 -0
  384. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/task.py +0 -0
  385. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/upload.py +0 -0
  386. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/viewsets/user.py +0 -0
  387. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/app/wsgi.py +0 -0
  388. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/backends.py +0 -0
  389. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/cache/__init__.py +0 -0
  390. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/content/__init__.py +0 -0
  391. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/content/authentication.py +0 -0
  392. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/content/entrypoint.py +0 -0
  393. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/content/instrumentation.py +0 -0
  394. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/download/__init__.py +0 -0
  395. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/download/base.py +0 -0
  396. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/download/factory.py +0 -0
  397. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/download/file.py +0 -0
  398. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/download/http.py +0 -0
  399. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/exceptions/__init__.py +0 -0
  400. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/exceptions/base.py +0 -0
  401. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/exceptions/plugin.py +0 -0
  402. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/exceptions/validation.py +0 -0
  403. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/filters.py +0 -0
  404. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/metrics.py +0 -0
  405. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/middleware.py +0 -0
  406. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/migrations.py +0 -0
  407. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/openapi/__init__.py +0 -0
  408. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/openapi/hooks.py +0 -0
  409. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/__init__.py +0 -0
  410. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/access_policy.py +0 -0
  411. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/actions.py +0 -0
  412. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/apps.py +0 -0
  413. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/authentication/__init__.py +0 -0
  414. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/cache/__init__.py +0 -0
  415. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/constants.py +0 -0
  416. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/content.py +0 -0
  417. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/download/__init__.py +0 -0
  418. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/exceptions.py +0 -0
  419. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/files.py +0 -0
  420. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/importexport.py +0 -0
  421. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/migrations.py +0 -0
  422. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/modelresources.py +0 -0
  423. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/models/__init__.py +0 -0
  424. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/models/role.py +0 -0
  425. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/publication_utils.py +0 -0
  426. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/pulp_hashlib.py +0 -0
  427. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/replica.py +0 -0
  428. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/repo_version_utils.py +0 -0
  429. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/responses.py +0 -0
  430. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/serializers/__init__.py +0 -0
  431. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/serializers/content.py +0 -0
  432. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/__init__.py +0 -0
  433. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/api.py +0 -0
  434. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/artifact_stages.py +0 -0
  435. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/content_stages.py +0 -0
  436. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/declarative_version.py +0 -0
  437. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/stages/models.py +0 -0
  438. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/storage.py +0 -0
  439. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/sync.py +0 -0
  440. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/util.py +0 -0
  441. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/viewsets/__init__.py +0 -0
  442. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/plugin/viewsets/content.py +0 -0
  443. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/responses.py +0 -0
  444. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/__init__.py +0 -0
  445. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/entrypoint.py +0 -0
  446. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/kafka.py +0 -0
  447. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/storage.py +0 -0
  448. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tasking/worker.py +0 -0
  449. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/__init__.py +0 -0
  450. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/__init__.py +0 -0
  451. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/__init__.py +0 -0
  452. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_access_policy.py +0 -0
  453. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_api_docs.py +0 -0
  454. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_api_root_rewrite.py +0 -0
  455. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_artifact_distribution.py +0 -0
  456. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_auth.py +0 -0
  457. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_correlation_id.py +0 -0
  458. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_crd_artifacts.py +0 -0
  459. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_crud_domains.py +0 -0
  460. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_filter.py +0 -0
  461. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_login.py +0 -0
  462. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_openapi_schema.py +0 -0
  463. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_openpgp.py +0 -0
  464. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_replication.py +0 -0
  465. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_repos.py +0 -0
  466. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_role.py +0 -0
  467. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_root_endpoint.py +0 -0
  468. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_scoping.py +0 -0
  469. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_signing_service.py +0 -0
  470. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_status.py +0 -0
  471. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_task_purge.py +0 -0
  472. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_upload.py +0 -0
  473. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_users_groups.py +0 -0
  474. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/test_workers.py +0 -0
  475. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/__init__.py +0 -0
  476. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_checkpoint.py +0 -0
  477. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_access.py +0 -0
  478. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_delivery.py +0 -0
  479. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_directory.py +0 -0
  480. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_path.py +0 -0
  481. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_content_promotion.py +0 -0
  482. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_contentguard.py +0 -0
  483. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_crud_repos.py +0 -0
  484. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_distributions.py +0 -0
  485. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_filesystemexport.py +0 -0
  486. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_labels.py +0 -0
  487. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_migrate.py +0 -0
  488. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_orphans.py +0 -0
  489. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_pagination.py +0 -0
  490. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_prn.py +0 -0
  491. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_proxy.py +0 -0
  492. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_pulpimport.py +0 -0
  493. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_reclaim_disk_space.py +0 -0
  494. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_repair.py +0 -0
  495. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_repo_versions.py +0 -0
  496. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_tasks.py +0 -0
  497. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/api/using_plugin/test_unlinking_repo.py +0 -0
  498. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/assets/__init__.py +0 -0
  499. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/content_with_coverage.py +0 -0
  500. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/functional/utils.py +0 -0
  501. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/performance/__init__.py +0 -0
  502. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/performance/test_performance.py +0 -0
  503. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/__init__.py +0 -0
  504. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/conftest.py +0 -0
  505. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/content/__init__.py +0 -0
  506. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/content/test_handler.py +0 -0
  507. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/content/test_heartbeat.py +0 -0
  508. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/download/__init__.py +0 -0
  509. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/download/test_downloader_base.py +0 -0
  510. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/download/test_downloader_factory.py +0 -0
  511. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/metrics/__init__.py +0 -0
  512. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/metrics/conftest.py +0 -0
  513. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/metrics/test_aiohttp_instrumentation.py +0 -0
  514. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/metrics/test_django_instrumentation.py +0 -0
  515. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/migration/__init__.py +0 -0
  516. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/migration/test_0077_move_remote_url_credentials.py +0 -0
  517. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/models/__init__.py +0 -0
  518. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/models/test_base.py +0 -0
  519. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/models/test_content.py +0 -0
  520. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/models/test_remote.py +0 -0
  521. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/models/test_repository.py +0 -0
  522. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/roles/__init__.py +0 -0
  523. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/roles/test_roles.py +0 -0
  524. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/__init__.py +0 -0
  525. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_base.py +0 -0
  526. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_domain.py +0 -0
  527. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_fields.py +0 -0
  528. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_orphans_cleanup.py +0 -0
  529. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_pulpexport.py +0 -0
  530. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/serializers/test_repository.py +0 -0
  531. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/stages/__init__.py +0 -0
  532. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/stages/test_artifactdownloader.py +0 -0
  533. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/stages/test_stages.py +0 -0
  534. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_cache.py +0 -0
  535. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_chunked_file.py +0 -0
  536. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_content_guard.py +0 -0
  537. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_files.py +0 -0
  538. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_import_checks.py +0 -0
  539. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_pulp_urls.py +0 -0
  540. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_settings.py +0 -0
  541. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_util.py +0 -0
  542. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/test_viewsets.py +0 -0
  543. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/viewsets/__init__.py +0 -0
  544. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore/tests/unit/viewsets/test_viewset_base.py +0 -0
  545. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/SOURCES.txt +0 -0
  546. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/dependency_links.txt +0 -0
  547. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/entry_points.txt +0 -0
  548. {pulpcore-3.76.1 → pulpcore-3.77.1}/pulpcore.egg-info/top_level.txt +0 -0
  549. {pulpcore-3.76.1 → pulpcore-3.77.1}/setup.cfg +0 -0
  550. {pulpcore-3.76.1 → pulpcore-3.77.1}/test_requirements.txt +0 -0
  551. {pulpcore-3.76.1 → pulpcore-3.77.1}/unittest_requirements.txt +0 -0
@@ -8,6 +8,78 @@
8
8
 
9
9
  [//]: # (towncrier release notes start)
10
10
 
11
+ ## 3.77.1 (2025-05-08) {: #3.77.1 }
12
+
13
+ ### REST API {: #3.77.1-rest-api }
14
+
15
+ #### Bugfixes {: #3.77.1-rest-api-bugfix }
16
+
17
+ - On-demand or pull-through content is now immediately cached upon first request.
18
+ [#6540](https://github.com/pulp/pulpcore/issues/6540)
19
+
20
+ ### Plugin API {: #3.77.1-plugin-api }
21
+
22
+ No significant changes.
23
+
24
+ ### Pulp File {: #3.77.1-pulp-file }
25
+
26
+ No significant changes.
27
+
28
+ ### Pulp Cert Guard {: #3.77.1-pulp-cert-guard }
29
+
30
+ No significant changes.
31
+
32
+ ---
33
+
34
+ ## 3.77.0 (2025-05-06) {: #3.77.0 }
35
+
36
+ ### REST API {: #3.77.0-rest-api }
37
+
38
+ #### Features {: #3.77.0-rest-api-feature }
39
+
40
+ - The `TASK_DIAGNOSTICS` option now permits individual diagnostics to be enabled or disabled by listing them.
41
+ [#4548](https://github.com/pulp/pulpcore/issues/4548)
42
+ - If enabled using `TASK_DIAGNOSTICS` and the appropriate package is installed, tasks can now output a profile of what functions / lines allocated the most memory at the time of peak RSS.
43
+
44
+ #### Bugfixes {: #3.77.0-rest-api-bugfix }
45
+
46
+ - Fixed a memory consumption issue that was triggered by the use of the Alternate Content Source feature.
47
+ [#6500](https://github.com/pulp/pulpcore/issues/6500)
48
+ - Fixed incorrect use of f-strings in gettext.
49
+ [#6521](https://github.com/pulp/pulpcore/issues/6521)
50
+
51
+ #### Improved Documentation {: #3.77.0-rest-api-doc }
52
+
53
+ - Fixed the TASK_DIAGNOSTICS documentation, which was out of date.
54
+ [#6481](https://github.com/pulp/pulpcore/issues/6481)
55
+
56
+ #### Misc {: #3.77.0-rest-api-misc }
57
+
58
+ -
59
+
60
+ ### Plugin API {: #3.77.0-plugin-api }
61
+
62
+ #### Bugfixes {: #3.77.0-plugin-api-bugfix }
63
+
64
+ - Re-added* timeout to tasks dispatched as immediate for both deferred and non-deferred runs.
65
+
66
+ Also, immediate tasks must be coroutines from now on.
67
+ This is to enable immediate tasks to run on the workers foreground without completely blocking heartbeats.
68
+ Support for legacy non-coroutines immediate task will be dropped in pulpcore 3.85.
69
+
70
+ \* This was added in pulpcore 3.75.0, reverted in 3.75.1 due to a regression and re-applied here with the regression fix.
71
+ [#6429](https://github.com/pulp/pulpcore/issues/6429)
72
+
73
+ ### Pulp File {: #3.77.0-pulp-file }
74
+
75
+ No significant changes.
76
+
77
+ ### Pulp Cert Guard {: #3.77.0-pulp-cert-guard }
78
+
79
+ No significant changes.
80
+
81
+ ---
82
+
11
83
  ## 3.76.1 (2025-04-24) {: #3.76.1 }
12
84
 
13
85
  ### REST API {: #3.76.1-rest-api }
@@ -76,6 +148,28 @@ No significant changes.
76
148
 
77
149
  ---
78
150
 
151
+ ## 3.75.3 (2025-04-22) {: #3.75.3 }
152
+
153
+ ### REST API {: #3.75.3-rest-api }
154
+
155
+ No significant changes.
156
+
157
+ ### Plugin API {: #3.75.3-plugin-api }
158
+
159
+ #### Bugfixes {: #3.75.3-plugin-api-bugfix }
160
+
161
+ - Fixed `add_roles_for_object_creator` not handling anonymous users.
162
+
163
+ ### Pulp File {: #3.75.3-pulp-file }
164
+
165
+ No significant changes.
166
+
167
+ ### Pulp Cert Guard {: #3.75.3-pulp-cert-guard }
168
+
169
+ No significant changes.
170
+
171
+ ---
172
+
79
173
  ## 3.75.2 (2025-04-09) {: #3.75.2 }
80
174
 
81
175
  ### REST API {: #3.75.2-rest-api }
@@ -276,6 +370,98 @@ No significant changes.
276
370
 
277
371
  ---
278
372
 
373
+ ## 3.73.8 (2025-04-24) {: #3.73.8 }
374
+
375
+ ### REST API {: #3.73.8-rest-api }
376
+
377
+ #### Bugfixes {: #3.73.8-rest-api-bugfix }
378
+
379
+ - Reverted fix for #6491, it broke certificate-chains.
380
+ [#6510](https://github.com/pulp/pulpcore/issues/6510)
381
+
382
+ ### Plugin API {: #3.73.8-plugin-api }
383
+
384
+ No significant changes.
385
+
386
+ ### Pulp File {: #3.73.8-pulp-file }
387
+
388
+ No significant changes.
389
+
390
+ ### Pulp Cert Guard {: #3.73.8-pulp-cert-guard }
391
+
392
+ No significant changes.
393
+
394
+ ---
395
+
396
+ ## 3.73.7 (2025-04-23) {: #3.73.7 }
397
+
398
+ ### REST API {: #3.73.7-rest-api }
399
+
400
+ #### Bugfixes {: #3.73.7-rest-api-bugfix }
401
+
402
+ - Fixed a memory consumption issue that was triggered by the use of the Alternate Content Source feature.
403
+ [#6500](https://github.com/pulp/pulpcore/issues/6500)
404
+
405
+ ### Plugin API {: #3.73.7-plugin-api }
406
+
407
+ No significant changes.
408
+
409
+ ### Pulp File {: #3.73.7-pulp-file }
410
+
411
+ No significant changes.
412
+
413
+ ### Pulp Cert Guard {: #3.73.7-pulp-cert-guard }
414
+
415
+ No significant changes.
416
+
417
+ ---
418
+
419
+ ## 3.73.6 (2025-04-23) {: #3.73.6 }
420
+
421
+ ### REST API {: #3.73.6-rest-api }
422
+
423
+ No significant changes.
424
+
425
+ ### Plugin API {: #3.73.6-plugin-api }
426
+
427
+ No significant changes.
428
+
429
+ ### Pulp File {: #3.73.6-pulp-file }
430
+
431
+ No significant changes.
432
+
433
+ ### Pulp Cert Guard {: #3.73.6-pulp-cert-guard }
434
+
435
+ No significant changes.
436
+
437
+ ---
438
+
439
+ ## 3.73.5 (2025-04-22) {: #3.73.5 }
440
+
441
+ ### REST API {: #3.73.5-rest-api }
442
+
443
+ #### Bugfixes {: #3.73.5-rest-api-bugfix }
444
+
445
+ - Client- and CA-certificates used in Remotes are now validated and any comments stripped
446
+ before being applied to the Remote.
447
+ [#6491](https://github.com/pulp/pulpcore/issues/6491)
448
+
449
+ ### Plugin API {: #3.73.5-plugin-api }
450
+
451
+ #### Bugfixes {: #3.73.5-plugin-api-bugfix }
452
+
453
+ - Fixed `add_roles_for_object_creator` not handling anonymous users.
454
+
455
+ ### Pulp File {: #3.73.5-pulp-file }
456
+
457
+ No significant changes.
458
+
459
+ ### Pulp Cert Guard {: #3.73.5-pulp-cert-guard }
460
+
461
+ No significant changes.
462
+
463
+ ---
464
+
279
465
  ## 3.73.4 (2025-04-08) {: #3.73.4 }
280
466
 
281
467
  ### REST API {: #3.73.4-rest-api }
@@ -1075,6 +1261,78 @@ No significant changes.
1075
1261
 
1076
1262
  ---
1077
1263
 
1264
+ ## 3.63.17 (2025-04-24) {: #3.63.17 }
1265
+
1266
+ ### REST API {: #3.63.17-rest-api }
1267
+
1268
+ #### Bugfixes {: #3.63.17-rest-api-bugfix }
1269
+
1270
+ - Reverted fix for #6491, it broke certificate-chains.
1271
+ [#6510](https://github.com/pulp/pulpcore/issues/6510)
1272
+
1273
+ ### Plugin API {: #3.63.17-plugin-api }
1274
+
1275
+ No significant changes.
1276
+
1277
+ ### Pulp File {: #3.63.17-pulp-file }
1278
+
1279
+ No significant changes.
1280
+
1281
+ ### Pulp Cert Guard {: #3.63.17-pulp-cert-guard }
1282
+
1283
+ No significant changes.
1284
+
1285
+ ---
1286
+
1287
+ ## 3.63.16 (2025-04-23) {: #3.63.16 }
1288
+
1289
+ ### REST API {: #3.63.16-rest-api }
1290
+
1291
+ #### Bugfixes {: #3.63.16-rest-api-bugfix }
1292
+
1293
+ - Fixed a memory consumption issue that was triggered by the use of the Alternate Content Source feature.
1294
+ [#6500](https://github.com/pulp/pulpcore/issues/6500)
1295
+
1296
+ ### Plugin API {: #3.63.16-plugin-api }
1297
+
1298
+ No significant changes.
1299
+
1300
+ ### Pulp File {: #3.63.16-pulp-file }
1301
+
1302
+ No significant changes.
1303
+
1304
+ ### Pulp Cert Guard {: #3.63.16-pulp-cert-guard }
1305
+
1306
+ No significant changes.
1307
+
1308
+ ---
1309
+
1310
+ ## 3.63.15 (2025-04-22) {: #3.63.15 }
1311
+
1312
+ ### REST API {: #3.63.15-rest-api }
1313
+
1314
+ #### Bugfixes {: #3.63.15-rest-api-bugfix }
1315
+
1316
+ - Client- and CA-certificates used in Remotes are now validated and any comments stripped
1317
+ before being applied to the Remote.
1318
+ [#6491](https://github.com/pulp/pulpcore/issues/6491)
1319
+
1320
+ ### Plugin API {: #3.63.15-plugin-api }
1321
+
1322
+ #### Bugfixes {: #3.63.15-plugin-api-bugfix }
1323
+
1324
+ - Fixed `add_roles_for_object_creator` not handling anonymous users.
1325
+
1326
+ ### Pulp File {: #3.63.15-pulp-file }
1327
+
1328
+ No significant changes.
1329
+
1330
+ ### Pulp Cert Guard {: #3.63.15-pulp-cert-guard }
1331
+
1332
+ No significant changes.
1333
+
1334
+ ---
1335
+
1078
1336
  ## 3.63.14 (2025-04-08) {: #3.63.14 }
1079
1337
 
1080
1338
  ### REST API {: #3.63.14-rest-api }
@@ -2243,6 +2501,76 @@ No significant changes.
2243
2501
 
2244
2502
  ---
2245
2503
 
2504
+ ## 3.49.39 (2025-04-24) {: #3.49.39 }
2505
+
2506
+ ### REST API {: #3.49.39-rest-api }
2507
+
2508
+ #### Bugfixes {: #3.49.39-rest-api-bugfix }
2509
+
2510
+ - Reverted fix for #6491, it broke certificate-chains.
2511
+ [#6510](https://github.com/pulp/pulpcore/issues/6510)
2512
+
2513
+ ### Plugin API {: #3.49.39-plugin-api }
2514
+
2515
+ No significant changes.
2516
+
2517
+ ### Pulp File {: #3.49.39-pulp-file }
2518
+
2519
+ No significant changes.
2520
+
2521
+ ### Pulp Cert Guard {: #3.49.39-pulp-cert-guard }
2522
+
2523
+ No significant changes.
2524
+
2525
+ ---
2526
+
2527
+ ## 3.49.38 (2025-04-23) {: #3.49.38 }
2528
+
2529
+ ### REST API {: #3.49.38-rest-api }
2530
+
2531
+ #### Bugfixes {: #3.49.38-rest-api-bugfix }
2532
+
2533
+ - Fixed a memory consumption issue that was triggered by the use of the Alternate Content Source feature.
2534
+ [#6500](https://github.com/pulp/pulpcore/issues/6500)
2535
+
2536
+ ### Plugin API {: #3.49.38-plugin-api }
2537
+
2538
+ No significant changes.
2539
+
2540
+ ### Pulp File {: #3.49.38-pulp-file }
2541
+
2542
+ No significant changes.
2543
+
2544
+ ### Pulp Cert Guard {: #3.49.38-pulp-cert-guard }
2545
+
2546
+ No significant changes.
2547
+
2548
+ ---
2549
+
2550
+ ## 3.49.37 (2025-04-22) {: #3.49.37 }
2551
+
2552
+ ### REST API {: #3.49.37-rest-api }
2553
+
2554
+ #### Bugfixes {: #3.49.37-rest-api-bugfix }
2555
+
2556
+ - Client- and CA-certificates used in Remotes are now validated and any comments stripped
2557
+ before being applied to the Remote.
2558
+ [#6491](https://github.com/pulp/pulpcore/issues/6491)
2559
+
2560
+ ### Plugin API {: #3.49.37-plugin-api }
2561
+
2562
+ No significant changes.
2563
+
2564
+ ### Pulp File {: #3.49.37-pulp-file }
2565
+
2566
+ No significant changes.
2567
+
2568
+ ### Pulp Cert Guard {: #3.49.37-pulp-cert-guard }
2569
+
2570
+ No significant changes.
2571
+
2572
+ ---
2573
+
2246
2574
  ## 3.49.36 (2025-04-08) {: #3.49.36 }
2247
2575
 
2248
2576
  ### REST API {: #3.49.36-rest-api }
@@ -3678,6 +4006,52 @@ No significant changes.
3678
4006
  - Starting from this release pulp_file will be shipped as part of the pulpcore package.
3679
4007
  [#4550](https://github.com/pulp/pulpcore/issues/4550)
3680
4008
 
4009
+ ## 3.39.30 (2025-04-24) {: #3.39.30 }
4010
+
4011
+ ### REST API {: #3.39.30-rest-api }
4012
+
4013
+ #### Bugfixes {: #3.39.30-rest-api-bugfix }
4014
+
4015
+ - Reverted fix for #6491, it broke certificate-chains.
4016
+ [#6510](https://github.com/pulp/pulpcore/issues/6510)
4017
+
4018
+ ### Plugin API {: #3.39.30-plugin-api }
4019
+
4020
+ No significant changes.
4021
+
4022
+ ---
4023
+
4024
+ ## 3.39.29 (2025-04-23) {: #3.39.29 }
4025
+
4026
+ ### REST API {: #3.39.29-rest-api }
4027
+
4028
+ #### Bugfixes {: #3.39.29-rest-api-bugfix }
4029
+
4030
+ - Fixed a memory consumption issue that was triggered by the use of the Alternate Content Source feature.
4031
+ [#6500](https://github.com/pulp/pulpcore/issues/6500)
4032
+
4033
+ ### Plugin API {: #3.39.29-plugin-api }
4034
+
4035
+ No significant changes.
4036
+
4037
+ ---
4038
+
4039
+ ## 3.39.28 (2025-04-22) {: #3.39.28 }
4040
+
4041
+ ### REST API {: #3.39.28-rest-api }
4042
+
4043
+ #### Bugfixes {: #3.39.28-rest-api-bugfix }
4044
+
4045
+ - Client- and CA-certificates used in Remotes are now validated and any comments stripped
4046
+ before being applied to the Remote.
4047
+ [#6491](https://github.com/pulp/pulpcore/issues/6491)
4048
+
4049
+ ### Plugin API {: #3.39.28-plugin-api }
4050
+
4051
+ No significant changes.
4052
+
4053
+ ---
4054
+
3681
4055
  ## 3.39.27 (2025-04-02) {: #3.39.27 }
3682
4056
 
3683
4057
  ### REST API {: #3.39.27-rest-api }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulpcore
3
- Version: 3.76.1
3
+ Version: 3.77.1
4
4
  Summary: Pulp Django Application and Related Modules
5
5
  Author-email: Pulp Team <pulp-list@redhat.com>
6
6
  Project-URL: Homepage, https://pulpproject.org
@@ -21,14 +21,14 @@ Classifier: Programming Language :: Python :: 3.12
21
21
  Requires-Python: >=3.9
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
- Requires-Dist: aiodns<=3.2.0,>=3.0
24
+ Requires-Dist: aiodns<=3.3.0,>=3.0
25
25
  Requires-Dist: aiofiles<24.2.0,>=22.1
26
26
  Requires-Dist: aiohttp<3.12,>=3.8.1
27
27
  Requires-Dist: asyncio-throttle<=1.0.2,>=1.0
28
28
  Requires-Dist: async-timeout<4.0.4,>=4.0.3; python_version < "3.11"
29
29
  Requires-Dist: backoff<2.2.2,>=2.1.2
30
30
  Requires-Dist: click<=8.1.8,>=8.1.0
31
- Requires-Dist: cryptography<44.0.3,>=38.0.1
31
+ Requires-Dist: cryptography<44.0.4,>=38.0.1
32
32
  Requires-Dist: Django~=4.2.0
33
33
  Requires-Dist: django-filter<=25.1,>=23.1
34
34
  Requires-Dist: django-guid<=3.5.1,>=3.3
@@ -52,13 +52,13 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.33,>=1.27.0
52
52
  Requires-Dist: protobuf<6.0,>=4.21.1
53
53
  Requires-Dist: pulp-glue<0.33,>=0.18.0
54
54
  Requires-Dist: pygtrie<=2.5.0,>=2.5
55
- Requires-Dist: psycopg[binary]<=3.2.6,>=3.1.8
55
+ Requires-Dist: psycopg[binary]<=3.2.7,>=3.1.8
56
56
  Requires-Dist: pyparsing<=3.2.3,>=3.1.0
57
57
  Requires-Dist: python-gnupg<=0.5.4,>=0.5
58
58
  Requires-Dist: PyYAML<=6.0.2,>=5.1.1
59
59
  Requires-Dist: redis<5.2.2,>=4.3
60
60
  Requires-Dist: tablib<3.6.0
61
- Requires-Dist: url-normalize<=2.2.0,>=1.4.3
61
+ Requires-Dist: url-normalize<=2.2.1,>=1.4.3
62
62
  Requires-Dist: uuid6<=2024.7.10,>=2023.5.2
63
63
  Requires-Dist: whitenoise<6.10.0,>=5.0
64
64
  Requires-Dist: yarl<1.20.1,>=1.8
@@ -75,6 +75,9 @@ Requires-Dist: django-prometheus; extra == "prometheus"
75
75
  Provides-Extra: kafka
76
76
  Requires-Dist: cloudevents==1.11.0; extra == "kafka"
77
77
  Requires-Dist: confluent-kafka<2.10.0,>=2.4.0; extra == "kafka"
78
+ Provides-Extra: diagnostics
79
+ Requires-Dist: pyinstrument~=5.0; extra == "diagnostics"
80
+ Requires-Dist: memray~=1.17; extra == "diagnostics"
78
81
  Dynamic: license-file
79
82
 
80
83
 
@@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):
6
6
 
7
7
  name = "pulp_certguard.app"
8
8
  label = "certguard"
9
- version = "3.76.1"
9
+ version = "3.77.1"
10
10
  python_package_name = "pulpcore"
11
11
  domain_compatible = True
@@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):
8
8
 
9
9
  name = "pulp_file.app"
10
10
  label = "file"
11
- version = "3.76.1"
11
+ version = "3.77.1"
12
12
  python_package_name = "pulpcore"
13
13
  domain_compatible = True