pulpcore 3.28.32__tar.gz → 3.95.0__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.
- {pulpcore-3.28.32 → pulpcore-3.95.0}/CHANGES.md +9390 -1203
- {pulpcore-3.28.32 → pulpcore-3.95.0}/CODE_OF_CONDUCT.md +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/CONTRIBUTING.md +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/MANIFEST.in +4 -1
- pulpcore-3.95.0/PKG-INFO +106 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/README.md +1 -1
- pulpcore-3.95.0/functest_requirements.txt +10 -0
- pulpcore-3.95.0/pulp_certguard/__init__.py +1 -0
- pulpcore-3.95.0/pulp_certguard/app/__init__.py +11 -0
- pulpcore-3.95.0/pulp_certguard/app/migrations/0001_initial.py +38 -0
- pulpcore-3.95.0/pulp_certguard/app/migrations/0002_alter_rhsmcertguard_contentguard_ptr_and_more.py +24 -0
- pulpcore-3.95.0/pulp_certguard/app/models.py +197 -0
- pulpcore-3.95.0/pulp_certguard/app/serializers.py +55 -0
- pulpcore-3.95.0/pulp_certguard/app/viewsets.py +22 -0
- pulpcore-3.95.0/pulp_certguard/pytest_plugin.py +26 -0
- pulpcore-3.95.0/pulp_certguard/rhsm/__init__.py +4 -0
- pulpcore-3.95.0/pulp_certguard/rhsm/rhsm_check_path.py +198 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/api/__init__.py +1 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/api/test_rhsm_certguard.py +413 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/api/test_x509_certguard.py +94 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.crt +98 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.key +27 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/trusted_but_expired.pem +64 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/uber.cert +96 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert-key.pem +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert.pem +49 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713-key.pem +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713.pem +111 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840-key.pem +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840.pem +43 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985-key.pem +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985.pem +31 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172-key.pem +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172.pem +33 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/thirdparty_ca/certificates/ca.pem +17 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/thirdparty_ca/genca.sh +46 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/thirdparty_ca/keys/ca.pem +27 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/certificates/ca.pem +17 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/certificates/client.pem +17 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/certificates/server.pem +17 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/certificates/un_urlencoded_cert.txt +1 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/certificates/untrusted_client.pem +18 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/genall.sh +3 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/genca.sh +46 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/genclient.sh +51 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh +53 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/keys/ca.pem +27 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/keys/client.pem +27 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/artifacts/x509/keys/server.pem +27 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/conftest.py +24 -0
- pulpcore-3.95.0/pulp_certguard/tests/functional/constants.py +72 -0
- pulpcore-3.95.0/pulp_certguard/tests/unit/certdata.py +249 -0
- pulpcore-3.95.0/pulp_certguard/tests/unit/test_rhsm_check_path.py +213 -0
- pulpcore-3.95.0/pulp_file/__init__.py +1 -0
- pulpcore-3.95.0/pulp_file/app/__init__.py +13 -0
- pulpcore-3.95.0/pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py +175 -0
- pulpcore-3.95.0/pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py +50 -0
- pulpcore-3.95.0/pulp_file/app/migrations/0018_alter_filecontent_options.py +17 -0
- pulpcore-3.95.0/pulp_file/app/modelresource.py +37 -0
- pulpcore-3.95.0/pulp_file/app/models.py +170 -0
- pulpcore-3.95.0/pulp_file/app/replica.py +53 -0
- pulpcore-3.95.0/pulp_file/app/serializers.py +219 -0
- pulpcore-3.95.0/pulp_file/app/tasks/__init__.py +2 -0
- pulpcore-3.95.0/pulp_file/app/tasks/publishing.py +90 -0
- pulpcore-3.95.0/pulp_file/app/tasks/synchronizing.py +140 -0
- pulpcore-3.95.0/pulp_file/app/viewsets.py +721 -0
- pulpcore-3.95.0/pulp_file/manifest.py +148 -0
- pulpcore-3.95.0/pulp_file/pytest_plugin.py +300 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/__init__.py +1 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_acs.py +257 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_auto_publish.py +110 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_bad_sync.py +132 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_content_labels.py +165 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_crud_content_unit.py +369 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_crud_remotes.py +82 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_domains.py +372 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_download_policies.py +239 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_filesystem_export.py +220 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_generic_list.py +53 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_labels.py +201 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_mime_types.py +81 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_publish.py +129 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_pulp_export.py +422 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_rbac.py +321 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_remote_settings.py +344 -0
- pulpcore-3.95.0/pulp_file/tests/functional/api/test_sync.py +145 -0
- pulpcore-3.95.0/pulp_file/tests/unit/test_safe_paths.py +70 -0
- pulpcore-3.95.0/pulp_file/tests/unit/test_serializers.py +69 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/__init__.py +4 -0
- pulpcore-3.95.0/pulpcore/app/access_policy.py +161 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/apps.py +28 -7
- pulpcore-3.95.0/pulpcore/app/authentication.py +87 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/checks.py +6 -6
- pulpcore-3.95.0/pulpcore/app/contexts.py +66 -0
- pulpcore-3.95.0/pulpcore/app/entrypoint.py +158 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/files.py +15 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/global_access_conditions.py +40 -11
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/importexport.py +55 -33
- pulpcore-3.95.0/pulpcore/app/management/commands/clean-up-progress-reports.py +52 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/dump-publications-to-fs.py +1 -1
- pulpcore-3.95.0/pulpcore/app/management/commands/migrationstat.py +45 -0
- pulpcore-3.95.0/pulpcore/app/management/commands/optimizemigration.py +84 -0
- pulpcore-3.95.0/pulpcore/app/management/commands/rebasemigrations.py +81 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/remove-plugin.py +2 -5
- pulpcore-3.95.0/pulpcore/app/management/commands/repository-size.py +127 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/rotate-db-key.py +4 -3
- pulpcore-3.95.0/pulpcore/app/management/commands/shell.py +8 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py +1623 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0091_systemid.py +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0101_add_domain.py +13 -4
- pulpcore-3.95.0/pulpcore/app/migrations/0108_task_versions.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0109_contentartifact_relative_path_index.py +17 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0110_apiappstatus.py +38 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0111_task_enc_args_task_enc_kwargs.py +28 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0112_alter_upstreampulp_options.py +17 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0113_headercontentguard.py +29 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0114_remove_task_args_remove_task_kwargs.py +48 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0115_compositecontentguard.py +27 -0
- pulpcore-3.28.32/pulpcore/app/migrations/0048_fips_checksums.py → pulpcore-3.95.0/pulpcore/app/migrations/0116_alter_remoteartifact_md5_alter_remoteartifact_sha1_and_more.py +14 -9
- pulpcore-3.95.0/pulpcore/app/migrations/0117_task_unblocked_at.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0118_task_core_task_unblock_2276a4_idx_and_more.py +25 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0119_grouprole_core_groupr_object__250e22_idx_and_more.py +21 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0120_get_url_removal.py +17 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0121_add_profile_artifacts_table.py +40 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0122_record_last_replication_timestamp.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0123_upstreampulp_q_select.py +44 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0124_task_deferred_task_immediate.py +23 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0125_openpgpdistribution_openpgpkeyring_openpgppublickey_and_more.py +227 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0126_remoteartifact_failed_at.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0127_remove_upstreampulp_pulp_label_select.py +17 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0128_domain_pulp_labels.py +19 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0129_content_pulp_labels.py +19 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0130_upstreampulp_policy.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0131_distribution_checkpoint_publication_checkpoint.py +23 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0132_alter_content_options.py +20 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0132_task_profile_options.py +19 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0133_repositoryversion_content_ids.py +21 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0134_task_insert_trigger.py +81 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0135_task_pulp_task_resources_index.py +25 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0136_delete_basedistribution.py +16 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0137_appstatus.py +33 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0138_vulnerabilityreport.py +33 -0
- pulpcore-3.28.32/pulpcore/app/migrations/0025_task_parent_task.py → pulpcore-3.95.0/pulpcore/app/migrations/0139_task_app_lock.py +4 -4
- pulpcore-3.95.0/pulpcore/app/migrations/0140_require_appstatus_zdu.py +15 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0141_alter_appstatus_name.py +18 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0142_task_result.py +21 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0143_require_app_lock_zdu.py +15 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0144_delete_old_appstatus.py +28 -0
- pulpcore-3.95.0/pulpcore/app/migrations/0145_domainize_import_export.py +53 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/modelresource.py +61 -21
- pulpcore-3.95.0/pulpcore/app/models/__init__.py +173 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/access_policy.py +10 -9
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/base.py +6 -2
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/content.py +70 -46
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/domain.py +22 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/exporter.py +9 -3
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/fields.py +14 -22
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/importer.py +8 -1
- pulpcore-3.95.0/pulpcore/app/models/openpgp.py +233 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/publication.py +146 -59
- pulpcore-3.95.0/pulpcore/app/models/replica.py +59 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/repository.py +340 -79
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/role.py +8 -2
- pulpcore-3.95.0/pulpcore/app/models/status.py +133 -0
- pulpcore-3.95.0/pulpcore/app/models/task.py +462 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/upload.py +2 -2
- pulpcore-3.95.0/pulpcore/app/models/vulnerability_report.py +34 -0
- pulpcore-3.95.0/pulpcore/app/netutil.py +20 -0
- pulpcore-3.95.0/pulpcore/app/openpgp.py +529 -0
- pulpcore-3.95.0/pulpcore/app/pulpcore_gunicorn_application.py +71 -0
- pulpcore-3.95.0/pulpcore/app/replica.py +294 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/response.py +5 -10
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/__init__.py +17 -2
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/base.py +133 -45
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/content.py +128 -64
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/domain.py +174 -36
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/exporter.py +30 -22
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/fields.py +89 -20
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/importer.py +4 -3
- pulpcore-3.95.0/pulpcore/app/serializers/openpgp.py +261 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/orphans.py +6 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/progress.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/publication.py +157 -3
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/replica.py +27 -6
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/repository.py +79 -2
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/status.py +41 -8
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/task.py +75 -37
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/user.py +86 -22
- pulpcore-3.95.0/pulpcore/app/serializers/vulnerability_report.py +27 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/settings.py +215 -49
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/__init__.py +5 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/analytics.py +3 -4
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/base.py +51 -8
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/export.py +35 -75
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/importer.py +241 -227
- pulpcore-3.95.0/pulpcore/app/tasks/migrate.py +60 -0
- pulpcore-3.95.0/pulpcore/app/tasks/orphan.py +138 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/purge.py +44 -14
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/reclaim_space.py +27 -17
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/replica.py +42 -24
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/repository.py +36 -6
- pulpcore-3.95.0/pulpcore/app/tasks/telemetry.py +39 -0
- pulpcore-3.95.0/pulpcore/app/tasks/test.py +34 -0
- pulpcore-3.95.0/pulpcore/app/tasks/vulnerability_report.py +159 -0
- pulpcore-3.95.0/pulpcore/app/templates/rest_framework/api.html +9 -0
- pulpcore-3.95.0/pulpcore/app/templatetags/pulp_urls.py +23 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/urls.py +44 -16
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/util.py +252 -65
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/views/__init__.py +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/views/orphans.py +2 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/views/repair.py +4 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/views/status.py +40 -17
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/__init__.py +15 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/access_policy.py +0 -3
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/base.py +107 -36
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/content.py +59 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/custom_filters.py +86 -55
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/domain.py +52 -4
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/exporter.py +1 -8
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/importer.py +1 -6
- pulpcore-3.95.0/pulpcore/app/viewsets/openpgp.py +184 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/orphans.py +2 -4
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/publication.py +155 -24
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/reclaim.py +1 -5
- pulpcore-3.95.0/pulpcore/app/viewsets/replica.py +141 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/repository.py +36 -49
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/task.py +116 -24
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/user.py +35 -1
- pulpcore-3.95.0/pulpcore/app/viewsets/vulnerability_report.py +21 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/wsgi.py +3 -6
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/cache/cache.py +38 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/constants.py +35 -8
- pulpcore-3.95.0/pulpcore/content/__init__.py +115 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/content/authentication.py +17 -4
- pulpcore-3.95.0/pulpcore/content/entrypoint.py +65 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/content/handler.py +483 -178
- pulpcore-3.95.0/pulpcore/content/instrumentation.py +52 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/download/base.py +32 -17
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/download/factory.py +26 -18
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/download/file.py +3 -3
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/download/http.py +11 -6
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/exceptions/__init__.py +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/exceptions/base.py +14 -5
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/filters.py +163 -27
- pulpcore-3.95.0/pulpcore/metrics.py +66 -0
- pulpcore-3.95.0/pulpcore/middleware.py +191 -0
- pulpcore-3.95.0/pulpcore/migrations.py +94 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/openapi/__init__.py +86 -108
- pulpcore-3.95.0/pulpcore/openapi/hooks.py +33 -0
- {pulpcore-3.28.32/pulpcore/app → pulpcore-3.95.0/pulpcore/plugin}/access_policy.py +12 -0
- pulpcore-3.95.0/pulpcore/plugin/exceptions.py +20 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/importexport.py +1 -0
- pulpcore-3.95.0/pulpcore/plugin/migrations.py +4 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/models/__init__.py +45 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/repo_version_utils.py +11 -5
- pulpcore-3.95.0/pulpcore/plugin/serializers/__init__.py +94 -0
- pulpcore-3.95.0/pulpcore/plugin/serializers/content.py +272 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/api.py +8 -8
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/artifact_stages.py +82 -84
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/content_stages.py +25 -25
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/declarative_version.py +44 -42
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/models.py +15 -15
- pulpcore-3.95.0/pulpcore/plugin/storage.py +4 -0
- pulpcore-3.95.0/pulpcore/plugin/tasking.py +34 -0
- pulpcore-3.95.0/pulpcore/plugin/util.py +65 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/viewsets/__init__.py +46 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/viewsets/content.py +58 -19
- pulpcore-3.28.32/pulpcore/tests/functional/__init__.py → pulpcore-3.95.0/pulpcore/pytest_plugin.py +526 -396
- pulpcore-3.95.0/pulpcore/tasking/_util.py +254 -0
- pulpcore-3.95.0/pulpcore/tasking/entrypoint.py +64 -0
- pulpcore-3.95.0/pulpcore/tasking/kafka.py +108 -0
- pulpcore-3.95.0/pulpcore/tasking/tasks.py +496 -0
- pulpcore-3.95.0/pulpcore/tasking/worker.py +656 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_access_policy.py +90 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_api_docs.py +7 -9
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_api_root_rewrite.py +136 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_artifact_distribution.py +3 -4
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_auth.py +160 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_correlation_id.py +13 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_crd_artifacts.py +72 -40
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_crud_domains.py +106 -38
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_filter.py +240 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_login.py +139 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_openapi_schema.py +121 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_openpgp.py +146 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_replication.py +739 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_repos.py +141 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_role.py +9 -9
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_scoping.py +66 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_status.py +160 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_task_purge.py +203 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_tasking.py +579 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_upload.py +77 -33
- pulpcore-3.95.0/pulpcore/tests/functional/api/test_users_groups.py +75 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_workers.py +30 -22
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/__init__.py +1 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_checkpoint.py +229 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_access.py +72 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_cache.py +159 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_delivery.py +280 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_directory.py +55 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_path.py +97 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_content_promotion.py +57 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_contentguard.py +325 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_crud_repos.py +396 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_distributions.py +281 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_filesystemexport.py +169 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_labels.py +63 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_migrate.py +112 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_orphans.py +160 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_pagination.py +44 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_prn.py +119 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_proxy.py +150 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_pulpimport.py +534 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_reclaim_disk_space.py +172 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_repair.py +192 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_repo_versions.py +984 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_tasks.py +191 -0
- pulpcore-3.95.0/pulpcore/tests/functional/api/using_plugin/test_unlinking_repo.py +34 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/utils.py +75 -2
- pulpcore-3.95.0/pulpcore/tests/performance/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/performance/test_performance.py +241 -0
- pulpcore-3.95.0/pulpcore/tests/unit/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/content/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/content/test_handler.py +597 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/content/test_heartbeat.py +12 -8
- pulpcore-3.95.0/pulpcore/tests/unit/download/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/metrics/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/metrics/conftest.py +22 -0
- pulpcore-3.95.0/pulpcore/tests/unit/metrics/test_aiohttp_instrumentation.py +27 -0
- pulpcore-3.95.0/pulpcore/tests/unit/metrics/test_django_instrumentation.py +29 -0
- pulpcore-3.95.0/pulpcore/tests/unit/migration/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/models/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/models/test_base.py +14 -6
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/models/test_content.py +1 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/models/test_repository.py +84 -1
- pulpcore-3.95.0/pulpcore/tests/unit/models/test_task.py +46 -0
- pulpcore-3.95.0/pulpcore/tests/unit/roles/__init__.py +0 -0
- pulpcore-3.95.0/pulpcore/tests/unit/serializers/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/serializers/test_base.py +32 -1
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/serializers/test_domain.py +45 -6
- pulpcore-3.95.0/pulpcore/tests/unit/serializers/test_fields.py +49 -0
- pulpcore-3.95.0/pulpcore/tests/unit/serializers/test_orphans_cleanup.py +18 -0
- pulpcore-3.95.0/pulpcore/tests/unit/serializers/test_repository.py +257 -0
- pulpcore-3.95.0/pulpcore/tests/unit/serializers/test_user.py +86 -0
- pulpcore-3.95.0/pulpcore/tests/unit/stages/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/stages/test_artifactdownloader.py +2 -2
- pulpcore-3.95.0/pulpcore/tests/unit/test_chunked_file.py +150 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/test_content_guard.py +70 -1
- pulpcore-3.95.0/pulpcore/tests/unit/test_import_checks.py +53 -0
- pulpcore-3.95.0/pulpcore/tests/unit/test_pulp_urls.py +110 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/test_settings.py +11 -0
- pulpcore-3.95.0/pulpcore/tests/unit/test_viewsets.py +91 -0
- pulpcore-3.95.0/pulpcore/tests/unit/test_vulnerability_report.py +74 -0
- pulpcore-3.95.0/pulpcore/tests/unit/viewsets/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/viewsets/test_viewset_base.py +3 -3
- pulpcore-3.95.0/pulpcore.egg-info/PKG-INFO +106 -0
- pulpcore-3.95.0/pulpcore.egg-info/SOURCES.txt +470 -0
- pulpcore-3.95.0/pulpcore.egg-info/dependency_links.txt +1 -0
- pulpcore-3.95.0/pulpcore.egg-info/entry_points.txt +14 -0
- pulpcore-3.95.0/pulpcore.egg-info/requires.txt +65 -0
- pulpcore-3.95.0/pulpcore.egg-info/top_level.txt +6 -0
- pulpcore-3.95.0/pyproject.toml +265 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/unittest_requirements.txt +2 -1
- pulpcore-3.28.32/PKG-INFO +0 -51
- pulpcore-3.28.32/bin/pulp-content +0 -8
- pulpcore-3.28.32/ci_requirements.txt +0 -2
- pulpcore-3.28.32/functest_requirements.txt +0 -13
- pulpcore-3.28.32/pulpcore/app/authentication.py +0 -12
- pulpcore-3.28.32/pulpcore/app/migrations/0001_initial.py +0 -451
- pulpcore-3.28.32/pulpcore/app/migrations/0002_increase_artifact_size_field.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0003_remove_upload_completed.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0004_add_duplicated_reserved_resources.py +0 -45
- pulpcore-3.28.32/pulpcore/app/migrations/0005_progressreport_code.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0006_repository_plugin_managed.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0007_delete_progress_proxies.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0008_published_metadata_as_content.py +0 -44
- pulpcore-3.28.32/pulpcore/app/migrations/0009_remove_task_non_fatal_errors.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0010_pulp_fields.py +0 -570
- pulpcore-3.28.32/pulpcore/app/migrations/0011_relative_path.py +0 -28
- pulpcore-3.28.32/pulpcore/app/migrations/0012_auto_20191104_2000.py +0 -31
- pulpcore-3.28.32/pulpcore/app/migrations/0013_repository_pulp_type.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0014_remove_repository_plugin_managed.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0015_auto_20191112_1426.py +0 -33
- pulpcore-3.28.32/pulpcore/app/migrations/0016_charfield_to_textfield.py +0 -68
- pulpcore-3.28.32/pulpcore/app/migrations/0017_remove_task_parent.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0018_auto_20191127_2350.py +0 -20
- pulpcore-3.28.32/pulpcore/app/migrations/0019_add_signing_service_model.py +0 -27
- pulpcore-3.28.32/pulpcore/app/migrations/0020_change_publishedartifact_constraints.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0021_add_signing_service_foreign_key.py +0 -24
- pulpcore-3.28.32/pulpcore/app/migrations/0022_rename_last_version.py +0 -27
- pulpcore-3.28.32/pulpcore/app/migrations/0023_change_exporter_models.py +0 -82
- pulpcore-3.28.32/pulpcore/app/migrations/0024_use_local_storage_for_uploads.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0026_task_group.py +0 -32
- pulpcore-3.28.32/pulpcore/app/migrations/0027_export_backend.py +0 -31
- pulpcore-3.28.32/pulpcore/app/migrations/0028_import_importer_pulpimporter_pulpimporterrepository.py +0 -85
- pulpcore-3.28.32/pulpcore/app/migrations/0029_export_delete.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0030_taskgroup_all_tasks_dispatched.py +0 -24
- pulpcore-3.28.32/pulpcore/app/migrations/0031_import_export_validate_params.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0032_export_to_chunks.py +0 -27
- pulpcore-3.28.32/pulpcore/app/migrations/0033_increase_remote_artifact_size_field.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0034_groupprogressreport.py +0 -32
- pulpcore-3.28.32/pulpcore/app/migrations/0035_content_upstream_id.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0036_unprotect_last_export.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0037_pulptemporaryfile.py +0 -28
- pulpcore-3.28.32/pulpcore/app/migrations/0038_repository_remote.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0039_change_download_concurrency.py +0 -25
- pulpcore-3.28.32/pulpcore/app/migrations/0040_set_admin_is_staff.py +0 -28
- pulpcore-3.28.32/pulpcore/app/migrations/0041_accesspolicy.py +0 -29
- pulpcore-3.28.32/pulpcore/app/migrations/0042_rbac_for_tasks.py +0 -56
- pulpcore-3.28.32/pulpcore/app/migrations/0043_toc_attribute.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0044_temp_file_artifact_field.py +0 -20
- pulpcore-3.28.32/pulpcore/app/migrations/0045_accesspolicy_permissions_allow_null.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0046_task__resource_job_id.py +0 -35
- pulpcore-3.28.32/pulpcore/app/migrations/0047_improve_orphan_cleanup.py +0 -59
- pulpcore-3.28.32/pulpcore/app/migrations/0049_add_file_field_to_uploadchunk.py +0 -24
- pulpcore-3.28.32/pulpcore/app/migrations/0050_namespace_access_policies.py +0 -28
- pulpcore-3.28.32/pulpcore/app/migrations/0051_timeoutfields.py +0 -34
- pulpcore-3.28.32/pulpcore/app/migrations/0052_tasking_logging_cid.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0053_remote_headers.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0054_add_public_key.py +0 -104
- pulpcore-3.28.32/pulpcore/app/migrations/0055_label.py +0 -31
- pulpcore-3.28.32/pulpcore/app/migrations/0056_remote_rate_limit.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0057_add_label_indexes.py +0 -23
- pulpcore-3.28.32/pulpcore/app/migrations/0058_accesspolicy_customized.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0059_proxy_creds.py +0 -23
- pulpcore-3.28.32/pulpcore/app/migrations/0060_data_migration_proxy_creds.py +0 -45
- pulpcore-3.28.32/pulpcore/app/migrations/0061_call_handle_artifact_checksums_command.py +0 -87
- pulpcore-3.28.32/pulpcore/app/migrations/0062_add_new_distribution_mastermodel.py +0 -36
- pulpcore-3.28.32/pulpcore/app/migrations/0063_repository_retained_versions.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0064_add_new_style_task_columns.py +0 -109
- pulpcore-3.28.32/pulpcore/app/migrations/0064_repository_user_hidden.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0065_merge_20210615_1211.py +0 -14
- pulpcore-3.28.32/pulpcore/app/migrations/0066_download_concurrency_and_retry_changes.py +0 -24
- pulpcore-3.28.32/pulpcore/app/migrations/0067_add_protect_to_task_reservation.py +0 -19
- pulpcore-3.28.32/pulpcore/app/migrations/0068_add_timestamp_of_interest.py +0 -23
- pulpcore-3.28.32/pulpcore/app/migrations/0069_update_json_fields.py +0 -63
- pulpcore-3.28.32/pulpcore/app/migrations/0070_rename_retained_versions.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0071_filesystemexport_filesystemexporter.py +0 -35
- pulpcore-3.28.32/pulpcore/app/migrations/0072_add_method_to_filesystem_exporter.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0073_encrypt_remote_fields.py +0 -139
- pulpcore-3.28.32/pulpcore/app/migrations/0074_acs.py +0 -47
- pulpcore-3.28.32/pulpcore/app/migrations/0075_rbaccontentguard.py +0 -25
- pulpcore-3.28.32/pulpcore/app/migrations/0076_remove_reserved_resource.py +0 -39
- pulpcore-3.28.32/pulpcore/app/migrations/0077_move_remote_url_credentials.py +0 -41
- pulpcore-3.28.32/pulpcore/app/migrations/0078_grouprole_role_userrole.py +0 -70
- pulpcore-3.28.32/pulpcore/app/migrations/0079_rename_permissions_assignment_accesspolicy_creation_hooks.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0080_proxy_group_model.py +0 -37
- pulpcore-3.28.32/pulpcore/app/migrations/0081_reapplabel_group_permissions.py +0 -59
- pulpcore-3.28.32/pulpcore/app/migrations/0082_add_manage_roles_permissions.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0083_alter_group_options.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0084_alter_rbaccontentguard_options.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0085_contentredirectcontentguard.py +0 -26
- pulpcore-3.28.32/pulpcore/app/migrations/0086_task_json_fields.py +0 -77
- pulpcore-3.28.32/pulpcore/app/migrations/0087_taskschedule.py +0 -34
- pulpcore-3.28.32/pulpcore/app/migrations/0088_accesspolicy_queryset_scoping.py +0 -18
- pulpcore-3.28.32/pulpcore/app/migrations/0089_alter_contentredirectcontentguard_options.py +0 -17
- pulpcore-3.28.32/pulpcore/app/migrations/0090_char_to_text_field.py +0 -79
- pulpcore-3.28.32/pulpcore/app/models/__init__.py +0 -91
- pulpcore-3.28.32/pulpcore/app/models/replica.py +0 -32
- pulpcore-3.28.32/pulpcore/app/models/status.py +0 -88
- pulpcore-3.28.32/pulpcore/app/models/task.py +0 -426
- pulpcore-3.28.32/pulpcore/app/monkeypatch.py +0 -63
- pulpcore-3.28.32/pulpcore/app/replica.py +0 -227
- pulpcore-3.28.32/pulpcore/app/tasks/orphan.py +0 -96
- pulpcore-3.28.32/pulpcore/app/tasks/test.py +0 -14
- pulpcore-3.28.32/pulpcore/app/templates/rest_framework/api.html +0 -309
- pulpcore-3.28.32/pulpcore/app/templatetags/pulp_urls.py +0 -84
- pulpcore-3.28.32/pulpcore/app/viewsets/replica.py +0 -59
- pulpcore-3.28.32/pulpcore/content/__init__.py +0 -85
- pulpcore-3.28.32/pulpcore/middleware.py +0 -40
- pulpcore-3.28.32/pulpcore/plugin/access_policy.py +0 -1
- pulpcore-3.28.32/pulpcore/plugin/exceptions.py +0 -8
- pulpcore-3.28.32/pulpcore/plugin/serializers/__init__.py +0 -43
- pulpcore-3.28.32/pulpcore/plugin/serializers/content.py +0 -174
- pulpcore-3.28.32/pulpcore/plugin/storage.py +0 -1
- pulpcore-3.28.32/pulpcore/plugin/tasking.py +0 -15
- pulpcore-3.28.32/pulpcore/plugin/util.py +0 -28
- pulpcore-3.28.32/pulpcore/tasking/constants.py +0 -8
- pulpcore-3.28.32/pulpcore/tasking/entrypoint.py +0 -28
- pulpcore-3.28.32/pulpcore/tasking/pulpcore_worker.py +0 -477
- pulpcore-3.28.32/pulpcore/tasking/tasks.py +0 -226
- pulpcore-3.28.32/pulpcore/tasking/util.py +0 -69
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_access_policy.py +0 -90
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_auth.py +0 -57
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_correlation_id.py +0 -7
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_filter.py +0 -130
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_openapi_schema.py +0 -88
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_replication.py +0 -114
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_repos.py +0 -51
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_scoping.py +0 -61
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_status.py +0 -122
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_tasking.py +0 -361
- pulpcore-3.28.32/pulpcore/tests/functional/api/test_users_groups.py +0 -71
- pulpcore-3.28.32/pulpcore/tests/functional/api/using_plugin/test_content_directory.py +0 -14
- pulpcore-3.28.32/pulpcore/tests/functional/gpg_ascii_armor_signing_service.py +0 -176
- pulpcore-3.28.32/pulpcore/tests/unit/content/test_handler.py +0 -269
- pulpcore-3.28.32/pulpcore/tests/unit/migration/test_0077_move_remote_url_credentials.py +0 -35
- pulpcore-3.28.32/pulpcore/tests/unit/serializers/test_repository.py +0 -121
- pulpcore-3.28.32/pulpcore/tests/unit/test_import_checks.py +0 -27
- pulpcore-3.28.32/pulpcore/tests/unit/test_pulp_urls.py +0 -58
- pulpcore-3.28.32/pulpcore.egg-info/PKG-INFO +0 -51
- pulpcore-3.28.32/pulpcore.egg-info/SOURCES.txt +0 -371
- pulpcore-3.28.32/pulpcore.egg-info/entry_points.txt +0 -6
- pulpcore-3.28.32/pulpcore.egg-info/requires.txt +0 -57
- pulpcore-3.28.32/pulpcore.egg-info/top_level.txt +0 -1
- pulpcore-3.28.32/pyproject.toml +0 -92
- pulpcore-3.28.32/requirements.txt +0 -40
- pulpcore-3.28.32/setup.py +0 -48
- {pulpcore-3.28.32 → pulpcore-3.95.0}/COMMITMENT +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/COPYRIGHT +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/LICENSE +0 -0
- /pulpcore-3.28.32/pulpcore.egg-info/dependency_links.txt → /pulpcore-3.95.0/ci_requirements.txt +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/manage.py +0 -0
- {pulpcore-3.28.32/pulpcore/app → pulpcore-3.95.0/pulp_certguard/app/migrations}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/app/management → pulpcore-3.95.0/pulp_certguard/tests}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/app/management/commands → pulpcore-3.95.0/pulp_certguard/tests/functional}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/app/migrations → pulpcore-3.95.0/pulp_certguard/tests/unit}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/app/protobuf → pulpcore-3.95.0/pulp_file/app/migrations}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/app/templatetags → pulpcore-3.95.0/pulp_file/tests}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/tasking → pulpcore-3.95.0/pulp_file/tests/functional}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests → pulpcore-3.95.0/pulp_file/tests/unit}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/functional/api/using_plugin → pulpcore-3.95.0/pulpcore/app}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/loggers.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/manage.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit → pulpcore-3.95.0/pulpcore/app/management}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/content → pulpcore-3.95.0/pulpcore/app/management/commands}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/add-signing-service.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/analyze-publication.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/datarepair-2327.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/dump-permissions.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/handle-artifact-checksums.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/openapi.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/remove-signing-service.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/management/commands/reset-admin-password.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0092_alter_upload_options.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0093_add_info_field_repositoryversion.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0094_protect_repository_content.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0095_artifactdistribution.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0096_alter_task_logging_cid.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0097_remove_telemetry_task_schedule.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0098_pulp_labels.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0099_versions_field.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0100_upstreampulp.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0102_add_domain_relations.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0103_alter_export_task.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0104_delete_label.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0105_abstract_uuid_gen.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0106_alter_artifactdistribution_distribution_ptr_and_more.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/migrations/0107_distribution_hidden.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/download → pulpcore-3.95.0/pulpcore/app/migrations}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/mime_types.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/acs.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/analytics.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/generic.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/progress.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/models/storage.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/migration → pulpcore-3.95.0/pulpcore/app/protobuf}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/protobuf/analytics_pb2.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/pulp_hashlib.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/redis_connection.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/role_util.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/access_policy.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/acs.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/purge.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/reclaim.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/repair.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/serializers/upload.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/tasks/upload.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/models → pulpcore-3.95.0/pulpcore/app/templatetags}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/views/importer.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/acs.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/app/viewsets/upload.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/backends.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/cache/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/download/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/exceptions/plugin.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/exceptions/validation.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/actions.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/apps.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/authentication/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/cache/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/constants.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/content.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/download/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/files.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/modelresources.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/models/role.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/publication_utils.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/pulp_hashlib.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/replica.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/responses.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/stages/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/plugin/sync.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/responses.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/roles → pulpcore-3.95.0/pulpcore/tasking}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tasking/storage.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/serializers → pulpcore-3.95.0/pulpcore/tests}/__init__.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/stages → pulpcore-3.95.0/pulpcore/tests/functional}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_root_endpoint.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/api/test_signing_service.py +0 -0
- {pulpcore-3.28.32/pulpcore/tests/unit/viewsets → pulpcore-3.95.0/pulpcore/tests/functional/assets}/__init__.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/functional/content_with_coverage.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/conftest.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/download/test_downloader_base.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/download/test_downloader_factory.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/models/test_remote.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/roles/test_roles.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/serializers/test_pulpexport.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/stages/test_stages.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/test_cache.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/test_files.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/pulpcore/tests/unit/test_util.py +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/setup.cfg +0 -0
- {pulpcore-3.28.32 → pulpcore-3.95.0}/test_requirements.txt +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.