pulpcore 3.89.0__tar.gz → 3.90.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.
Potentially problematic release.
This version of pulpcore might be problematic. Click here for more details.
- {pulpcore-3.89.0 → pulpcore-3.90.0}/CHANGES.md +123 -3
- {pulpcore-3.89.0 → pulpcore-3.90.0}/PKG-INFO +7 -7
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/__init__.py +1 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/__init__.py +1 -1
- pulpcore-3.90.0/pulp_file/tests/functional/api/test_filesystem_export.py +220 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_pulp_export.py +103 -3
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/apps.py +1 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/importexport.py +18 -2
- pulpcore-3.90.0/pulpcore/app/management/commands/shell.py +8 -0
- pulpcore-3.90.0/pulpcore/app/migrations/0144_delete_old_appstatus.py +28 -0
- pulpcore-3.90.0/pulpcore/app/migrations/0145_domainize_import_export.py +53 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/modelresource.py +61 -21
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/__init__.py +2 -5
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/exporter.py +7 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/fields.py +0 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/importer.py +8 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/repository.py +16 -0
- pulpcore-3.90.0/pulpcore/app/models/status.py +133 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/task.py +15 -25
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/domain.py +1 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/exporter.py +4 -4
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/importer.py +2 -2
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/progress.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/task.py +11 -8
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/importer.py +44 -10
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/repository.py +27 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/base.py +18 -14
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/domain.py +1 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/exporter.py +1 -8
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/importer.py +1 -6
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/task.py +0 -1
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/constants.py +3 -6
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/openapi/__init__.py +16 -2
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/tasking.py +4 -2
- pulpcore-3.90.0/pulpcore/tasking/tasks.py +464 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/worker.py +6 -17
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_crud_domains.py +7 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_tasking.py +2 -2
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_crud_repos.py +9 -2
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/content/test_handler.py +43 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/PKG-INFO +7 -7
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/SOURCES.txt +4 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/requires.txt +6 -6
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pyproject.toml +9 -9
- pulpcore-3.89.0/pulpcore/app/models/status.py +0 -263
- pulpcore-3.89.0/pulpcore/tasking/tasks.py +0 -346
- {pulpcore-3.89.0 → pulpcore-3.90.0}/CODE_OF_CONDUCT.md +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/COMMITMENT +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/CONTRIBUTING.md +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/COPYRIGHT +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/LICENSE +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/MANIFEST.in +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/README.md +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/ci_requirements.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/functest_requirements.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/manage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/migrations/0001_initial.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/migrations/0002_alter_rhsmcertguard_contentguard_ptr_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/migrations/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/models.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/serializers.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/app/viewsets.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/pytest_plugin.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/rhsm/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/rhsm/rhsm_check_path.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/api/test_rhsm_certguard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/api/test_x509_certguard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.crt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.key +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/trusted_but_expired.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/uber.cert +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert-key.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713-key.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840-key.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985-key.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172-key.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/certificates/ca.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/genca.sh +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/keys/ca.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/ca.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/client.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/server.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/un_urlencoded_cert.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/untrusted_client.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/genall.sh +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/genca.sh +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/genclient.sh +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/keys/ca.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/keys/client.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/artifacts/x509/keys/server.pem +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/conftest.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/functional/constants.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/unit/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/unit/certdata.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_certguard/tests/unit/test_rhsm_check_path.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/migrations/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/modelresource.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/models.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/serializers.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/tasks/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/tasks/publishing.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/tasks/synchronizing.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/app/viewsets.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/manifest.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/pytest_plugin.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_acs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_auto_publish.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_bad_sync.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_content_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_crud_content_unit.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_crud_remotes.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_domains.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_download_policies.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_generic_list.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_mime_types.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_publish.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_rbac.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_remote_settings.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/functional/api/test_sync.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/unit/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/unit/test_safe_paths.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulp_file/tests/unit/test_serializers.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/authentication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/checks.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/entrypoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/files.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/global_access_conditions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/loggers.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/manage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/add-signing-service.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/analyze-publication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/clean-up-progress-reports.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/datarepair-2327.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/dump-permissions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/dump-publications-to-fs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/handle-artifact-checksums.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/migrationstat.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/openapi.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/optimizemigration.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/rebasemigrations.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/remove-plugin.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/remove-signing-service.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/repository-size.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/reset-admin-password.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/management/commands/rotate-db-key.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0091_systemid.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0092_alter_upload_options.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0093_add_info_field_repositoryversion.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0094_protect_repository_content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0095_artifactdistribution.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0096_alter_task_logging_cid.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0097_remove_telemetry_task_schedule.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0098_pulp_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0099_versions_field.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0100_upstreampulp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0101_add_domain.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0102_add_domain_relations.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0103_alter_export_task.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0104_delete_label.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0105_abstract_uuid_gen.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0106_alter_artifactdistribution_distribution_ptr_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0107_distribution_hidden.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0108_task_versions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0109_contentartifact_relative_path_index.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0110_apiappstatus.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0111_task_enc_args_task_enc_kwargs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0112_alter_upstreampulp_options.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0113_headercontentguard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0114_remove_task_args_remove_task_kwargs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0115_compositecontentguard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0116_alter_remoteartifact_md5_alter_remoteartifact_sha1_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0117_task_unblocked_at.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0118_task_core_task_unblock_2276a4_idx_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0119_grouprole_core_groupr_object__250e22_idx_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0120_get_url_removal.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0121_add_profile_artifacts_table.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0122_record_last_replication_timestamp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0123_upstreampulp_q_select.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0124_task_deferred_task_immediate.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0125_openpgpdistribution_openpgpkeyring_openpgppublickey_and_more.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0126_remoteartifact_failed_at.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0127_remove_upstreampulp_pulp_label_select.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0128_domain_pulp_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0129_content_pulp_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0130_upstreampulp_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0131_distribution_checkpoint_publication_checkpoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0132_alter_content_options.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0132_task_profile_options.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0133_repositoryversion_content_ids.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0134_task_insert_trigger.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0135_task_pulp_task_resources_index.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0136_delete_basedistribution.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0137_appstatus.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0138_vulnerabilityreport.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0139_task_app_lock.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0140_require_appstatus_zdu.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0141_alter_appstatus_name.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0142_task_result.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/0143_require_app_lock_zdu.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/migrations/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/mime_types.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/acs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/analytics.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/domain.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/generic.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/openpgp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/progress.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/publication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/role.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/storage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/upload.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/models/vulnerability_report.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/netutil.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/openpgp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/protobuf/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/protobuf/analytics_pb2.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/pulp_hashlib.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/pulpcore_gunicorn_application.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/redis_connection.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/response.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/role_util.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/acs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/fields.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/openpgp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/orphans.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/publication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/purge.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/reclaim.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/repair.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/repository.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/status.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/upload.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/user.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/serializers/vulnerability_report.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/settings.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/analytics.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/export.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/migrate.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/orphan.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/purge.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/reclaim_space.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/telemetry.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/test.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/upload.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/tasks/vulnerability_report.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/templates/rest_framework/api.html +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/templatetags/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/templatetags/pulp_urls.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/urls.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/util.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/views/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/views/importer.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/views/orphans.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/views/repair.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/views/status.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/acs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/custom_filters.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/openpgp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/orphans.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/publication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/reclaim.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/repository.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/upload.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/user.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/viewsets/vulnerability_report.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/app/wsgi.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/backends.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/cache/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/cache/cache.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/content/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/content/authentication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/content/entrypoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/content/handler.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/content/instrumentation.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/download/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/download/base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/download/factory.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/download/file.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/download/http.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/exceptions/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/exceptions/base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/exceptions/plugin.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/exceptions/validation.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/filters.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/metrics.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/middleware.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/migrations.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/openapi/hooks.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/actions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/apps.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/authentication/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/cache/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/constants.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/download/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/exceptions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/files.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/importexport.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/migrations.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/modelresources.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/models/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/models/role.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/publication_utils.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/pulp_hashlib.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/replica.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/repo_version_utils.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/responses.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/serializers/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/serializers/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/api.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/artifact_stages.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/content_stages.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/declarative_version.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/stages/models.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/storage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/sync.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/util.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/viewsets/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/plugin/viewsets/content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/pytest_plugin.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/responses.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/_util.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/entrypoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/kafka.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tasking/storage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_access_policy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_api_docs.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_api_root_rewrite.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_artifact_distribution.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_auth.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_correlation_id.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_crd_artifacts.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_filter.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_login.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_openapi_schema.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_openpgp.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_replication.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_repos.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_role.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_root_endpoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_scoping.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_signing_service.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_status.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_task_purge.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_upload.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_users_groups.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/test_workers.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_checkpoint.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_access.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_cache.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_delivery.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_directory.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_path.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_content_promotion.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_contentguard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_distributions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_filesystemexport.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_labels.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_migrate.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_orphans.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_pagination.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_prn.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_proxy.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_pulpimport.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_reclaim_disk_space.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_repair.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_repo_versions.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_tasks.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/api/using_plugin/test_unlinking_repo.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/assets/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/content_with_coverage.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/functional/utils.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/performance/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/performance/test_performance.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/conftest.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/content/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/content/test_heartbeat.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/download/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/download/test_downloader_base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/download/test_downloader_factory.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/metrics/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/metrics/conftest.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/metrics/test_aiohttp_instrumentation.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/metrics/test_django_instrumentation.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/migration/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/test_base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/test_content.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/test_remote.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/test_repository.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/models/test_task.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/roles/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/roles/test_roles.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_domain.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_fields.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_orphans_cleanup.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_pulpexport.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_repository.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/serializers/test_user.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/stages/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/stages/test_artifactdownloader.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/stages/test_stages.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_cache.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_chunked_file.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_content_guard.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_files.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_import_checks.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_pulp_urls.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_settings.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_util.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_viewsets.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/test_vulnerability_report.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/viewsets/__init__.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore/tests/unit/viewsets/test_viewset_base.py +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/dependency_links.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/entry_points.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/pulpcore.egg-info/top_level.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/setup.cfg +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/test_requirements.txt +0 -0
- {pulpcore-3.89.0 → pulpcore-3.90.0}/unittest_requirements.txt +0 -0
|
@@ -8,6 +8,67 @@
|
|
|
8
8
|
|
|
9
9
|
[//]: # (towncrier release notes start)
|
|
10
10
|
|
|
11
|
+
## 3.90.0 (2025-09-23) {: #3.90.0 }
|
|
12
|
+
|
|
13
|
+
### REST API {: #3.90.0-rest-api }
|
|
14
|
+
|
|
15
|
+
#### Features {: #3.90.0-rest-api-feature }
|
|
16
|
+
|
|
17
|
+
- Modified the API so that updates do not dispatch a task if no change is needed.
|
|
18
|
+
[#6896](https://github.com/pulp/pulpcore/issues/6896),
|
|
19
|
+
[#6897](https://github.com/pulp/pulpcore/issues/6897)
|
|
20
|
+
- Taught pulp-import-export to work in a domain-enabled environment.
|
|
21
|
+
|
|
22
|
+
All combinations of domain-state between upstream and downstream are handled.
|
|
23
|
+
[#6926](https://github.com/pulp/pulpcore/issues/6926)
|
|
24
|
+
- Cleanup missing worker processes records faster.
|
|
25
|
+
|
|
26
|
+
#### Bugfixes {: #3.90.0-rest-api-bugfix }
|
|
27
|
+
|
|
28
|
+
- Fixed generation of signed URLs when using GCS as the storage backend.
|
|
29
|
+
[#6917](https://github.com/pulp/pulpcore/issues/6917)
|
|
30
|
+
|
|
31
|
+
#### Misc {: #3.90.0-rest-api-misc }
|
|
32
|
+
|
|
33
|
+
-
|
|
34
|
+
|
|
35
|
+
### Plugin API {: #3.90.0-plugin-api }
|
|
36
|
+
|
|
37
|
+
No significant changes.
|
|
38
|
+
|
|
39
|
+
### Pulp File {: #3.90.0-pulp-file }
|
|
40
|
+
|
|
41
|
+
No significant changes.
|
|
42
|
+
|
|
43
|
+
### Pulp Cert Guard {: #3.90.0-pulp-cert-guard }
|
|
44
|
+
|
|
45
|
+
No significant changes.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 3.89.1 (2025-09-18) {: #3.89.1 }
|
|
50
|
+
|
|
51
|
+
### REST API {: #3.89.1-rest-api }
|
|
52
|
+
|
|
53
|
+
#### Bugfixes {: #3.89.1-rest-api-bugfix }
|
|
54
|
+
|
|
55
|
+
- Fixed generation of signed URLs when using GCS as the storage backend.
|
|
56
|
+
[#6917](https://github.com/pulp/pulpcore/issues/6917)
|
|
57
|
+
|
|
58
|
+
### Plugin API {: #3.89.1-plugin-api }
|
|
59
|
+
|
|
60
|
+
No significant changes.
|
|
61
|
+
|
|
62
|
+
### Pulp File {: #3.89.1-pulp-file }
|
|
63
|
+
|
|
64
|
+
No significant changes.
|
|
65
|
+
|
|
66
|
+
### Pulp Cert Guard {: #3.89.1-pulp-cert-guard }
|
|
67
|
+
|
|
68
|
+
No significant changes.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
11
72
|
## 3.89.0 (2025-09-09) {: #3.89.0 }
|
|
12
73
|
|
|
13
74
|
### REST API {: #3.89.0-rest-api }
|
|
@@ -197,9 +258,8 @@ No significant changes.
|
|
|
197
258
|
|
|
198
259
|
- Bumped the minimum required python version to 3.11.
|
|
199
260
|
[#6262](https://github.com/pulp/pulpcore/issues/6262)
|
|
200
|
-
- Removed support for DEFAULT_FILE_STORAGE and it's corresponding storage options.
|
|
201
|
-
Use STORAGES instead:
|
|
202
|
-
<https://pulpproject.org/pulpcore/docs/admin/reference/settings/#storages>
|
|
261
|
+
- Removed support for `DEFAULT_FILE_STORAGE` and it's corresponding storage options.
|
|
262
|
+
[Use STORAGES instead:](https://pulpproject.org/pulpcore/docs/admin/reference/settings/#storages)
|
|
203
263
|
[#6807](https://github.com/pulp/pulpcore/issues/6807)
|
|
204
264
|
- Switch OpenAPI specification to use version 3.1.
|
|
205
265
|
|
|
@@ -927,6 +987,26 @@ No significant changes.
|
|
|
927
987
|
|
|
928
988
|
---
|
|
929
989
|
|
|
990
|
+
## 3.73.15 (2025-09-09) {: #3.73.15 }
|
|
991
|
+
|
|
992
|
+
### REST API {: #3.73.15-rest-api }
|
|
993
|
+
|
|
994
|
+
No significant changes.
|
|
995
|
+
|
|
996
|
+
### Plugin API {: #3.73.15-plugin-api }
|
|
997
|
+
|
|
998
|
+
No significant changes.
|
|
999
|
+
|
|
1000
|
+
### Pulp File {: #3.73.15-pulp-file }
|
|
1001
|
+
|
|
1002
|
+
No significant changes.
|
|
1003
|
+
|
|
1004
|
+
### Pulp Cert Guard {: #3.73.15-pulp-cert-guard }
|
|
1005
|
+
|
|
1006
|
+
No significant changes.
|
|
1007
|
+
|
|
1008
|
+
---
|
|
1009
|
+
|
|
930
1010
|
## 3.73.14 (2025-06-25) {: #3.73.14 }
|
|
931
1011
|
|
|
932
1012
|
### REST API {: #3.73.14-rest-api }
|
|
@@ -1945,6 +2025,26 @@ No significant changes.
|
|
|
1945
2025
|
|
|
1946
2026
|
---
|
|
1947
2027
|
|
|
2028
|
+
## 3.63.23 (2025-09-09) {: #3.63.23 }
|
|
2029
|
+
|
|
2030
|
+
### REST API {: #3.63.23-rest-api }
|
|
2031
|
+
|
|
2032
|
+
No significant changes.
|
|
2033
|
+
|
|
2034
|
+
### Plugin API {: #3.63.23-plugin-api }
|
|
2035
|
+
|
|
2036
|
+
No significant changes.
|
|
2037
|
+
|
|
2038
|
+
### Pulp File {: #3.63.23-pulp-file }
|
|
2039
|
+
|
|
2040
|
+
No significant changes.
|
|
2041
|
+
|
|
2042
|
+
### Pulp Cert Guard {: #3.63.23-pulp-cert-guard }
|
|
2043
|
+
|
|
2044
|
+
No significant changes.
|
|
2045
|
+
|
|
2046
|
+
---
|
|
2047
|
+
|
|
1948
2048
|
## 3.63.22 (2025-07-02) {: #3.63.22 }
|
|
1949
2049
|
|
|
1950
2050
|
### REST API {: #3.63.22-rest-api }
|
|
@@ -3296,6 +3396,26 @@ No significant changes.
|
|
|
3296
3396
|
|
|
3297
3397
|
---
|
|
3298
3398
|
|
|
3399
|
+
## 3.49.45 (2025-09-09) {: #3.49.45 }
|
|
3400
|
+
|
|
3401
|
+
### REST API {: #3.49.45-rest-api }
|
|
3402
|
+
|
|
3403
|
+
No significant changes.
|
|
3404
|
+
|
|
3405
|
+
### Plugin API {: #3.49.45-plugin-api }
|
|
3406
|
+
|
|
3407
|
+
No significant changes.
|
|
3408
|
+
|
|
3409
|
+
### Pulp File {: #3.49.45-pulp-file }
|
|
3410
|
+
|
|
3411
|
+
No significant changes.
|
|
3412
|
+
|
|
3413
|
+
### Pulp Cert Guard {: #3.49.45-pulp-cert-guard }
|
|
3414
|
+
|
|
3415
|
+
No significant changes.
|
|
3416
|
+
|
|
3417
|
+
---
|
|
3418
|
+
|
|
3299
3419
|
## 3.49.44 (2025-07-02) {: #3.49.44 }
|
|
3300
3420
|
|
|
3301
3421
|
### REST API {: #3.49.44-rest-api }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulpcore
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.90.0
|
|
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
|
|
@@ -25,7 +25,7 @@ Requires-Dist: aiohttp<3.13,>=3.8.3
|
|
|
25
25
|
Requires-Dist: asyncio-throttle<=1.0.2,>=1.0
|
|
26
26
|
Requires-Dist: backoff<2.3,>=2.1.2
|
|
27
27
|
Requires-Dist: click<8.3,>=8.1.0
|
|
28
|
-
Requires-Dist: cryptography<
|
|
28
|
+
Requires-Dist: cryptography<47.0,>=44.0.3
|
|
29
29
|
Requires-Dist: Django~=4.2.0
|
|
30
30
|
Requires-Dist: django-filter<=25.1,>=23.1
|
|
31
31
|
Requires-Dist: django-guid<3.6,>=3.3.0
|
|
@@ -34,7 +34,7 @@ Requires-Dist: django-lifecycle<=1.2.4,>=1.0
|
|
|
34
34
|
Requires-Dist: djangorestframework<=3.16.1,>=3.14.0
|
|
35
35
|
Requires-Dist: djangorestframework-queryfields<=1.1.0,>=1.0
|
|
36
36
|
Requires-Dist: drf-access-policy<1.5.1,>=1.1.2
|
|
37
|
-
Requires-Dist: drf-nested-routers<=0.
|
|
37
|
+
Requires-Dist: drf-nested-routers<=0.95.0,>=0.93.4
|
|
38
38
|
Requires-Dist: drf-spectacular==0.27.2
|
|
39
39
|
Requires-Dist: dynaconf<3.3.0,>=3.2.5
|
|
40
40
|
Requires-Dist: gunicorn<23.1.0,>=22.0
|
|
@@ -42,9 +42,9 @@ Requires-Dist: jinja2<=3.1.6,>=3.1
|
|
|
42
42
|
Requires-Dist: json_stream<2.4,>=2.3.2
|
|
43
43
|
Requires-Dist: jq<1.11.0,>=1.6.0
|
|
44
44
|
Requires-Dist: PyOpenSSL<26.0
|
|
45
|
-
Requires-Dist: opentelemetry-api<1.
|
|
46
|
-
Requires-Dist: opentelemetry-sdk<1.
|
|
47
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.
|
|
45
|
+
Requires-Dist: opentelemetry-api<1.38,>=1.27.0
|
|
46
|
+
Requires-Dist: opentelemetry-sdk<1.38,>=1.27.0
|
|
47
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.38,>=1.27.0
|
|
48
48
|
Requires-Dist: protobuf<7.0,>=4.21.1
|
|
49
49
|
Requires-Dist: pulp-glue<0.37,>=0.28.0
|
|
50
50
|
Requires-Dist: pygtrie<=2.5.0,>=2.5
|
|
@@ -56,7 +56,7 @@ Requires-Dist: redis<6.5,>=4.3.0
|
|
|
56
56
|
Requires-Dist: tablib<3.6,>=3.5.0
|
|
57
57
|
Requires-Dist: url-normalize<2.3,>=1.4.3
|
|
58
58
|
Requires-Dist: uuid6<=2025.0.1,>=2023.5.2
|
|
59
|
-
Requires-Dist: whitenoise<6.
|
|
59
|
+
Requires-Dist: whitenoise<6.12.0,>=5.0
|
|
60
60
|
Requires-Dist: yarl<1.21,>=1.9.1
|
|
61
61
|
Provides-Extra: sftp
|
|
62
62
|
Requires-Dist: django-storages[sftp]==1.14.6; extra == "sftp"
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import pytest
|
|
3
|
+
import uuid
|
|
4
|
+
|
|
5
|
+
from pulpcore.client.pulpcore.exceptions import ApiException, BadRequestException
|
|
6
|
+
from pulpcore.app import settings
|
|
7
|
+
from pulpcore.constants import TASK_STATES
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
pytestmark = [
|
|
11
|
+
pytest.mark.skipif(
|
|
12
|
+
"/tmp" not in settings.ALLOWED_EXPORT_PATHS,
|
|
13
|
+
reason="Cannot run export-tests unless /tmp is in ALLOWED_EXPORT_PATHS "
|
|
14
|
+
f"({settings.ALLOWED_EXPORT_PATHS}).",
|
|
15
|
+
),
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@pytest.fixture
|
|
20
|
+
def fs_exporter_factory(
|
|
21
|
+
tmpdir,
|
|
22
|
+
pulpcore_bindings,
|
|
23
|
+
gen_object_with_cleanup,
|
|
24
|
+
add_to_filesystem_cleanup,
|
|
25
|
+
):
|
|
26
|
+
def _fs_exporter_factory(method="write", pulp_domain=None):
|
|
27
|
+
name = str(uuid.uuid4())
|
|
28
|
+
path = "{}/{}/".format(tmpdir, name)
|
|
29
|
+
body = {
|
|
30
|
+
"name": name,
|
|
31
|
+
"path": path,
|
|
32
|
+
"method": method,
|
|
33
|
+
}
|
|
34
|
+
kwargs = {}
|
|
35
|
+
if pulp_domain:
|
|
36
|
+
kwargs["pulp_domain"] = pulp_domain
|
|
37
|
+
exporter = gen_object_with_cleanup(pulpcore_bindings.ExportersFilesystemApi, body, **kwargs)
|
|
38
|
+
add_to_filesystem_cleanup(path)
|
|
39
|
+
assert exporter.name == name
|
|
40
|
+
assert exporter.path == path
|
|
41
|
+
assert exporter.method == method
|
|
42
|
+
return exporter
|
|
43
|
+
|
|
44
|
+
return _fs_exporter_factory
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@pytest.fixture
|
|
48
|
+
def fs_export_factory(pulpcore_bindings, monitor_task):
|
|
49
|
+
def _fs_export_factory(exporter, body):
|
|
50
|
+
task = monitor_task(
|
|
51
|
+
pulpcore_bindings.ExportersFilesystemExportsApi.create(
|
|
52
|
+
exporter.pulp_href, body or {}
|
|
53
|
+
).task
|
|
54
|
+
)
|
|
55
|
+
assert len(task.created_resources) == 1
|
|
56
|
+
export = pulpcore_bindings.ExportersFilesystemExportsApi.read(task.created_resources[0])
|
|
57
|
+
for report in task.progress_reports:
|
|
58
|
+
assert report.state == TASK_STATES.COMPLETED
|
|
59
|
+
return export
|
|
60
|
+
|
|
61
|
+
return _fs_export_factory
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
@pytest.fixture
|
|
65
|
+
def pub_and_repo(
|
|
66
|
+
file_repository_factory,
|
|
67
|
+
file_bindings,
|
|
68
|
+
gen_object_with_cleanup,
|
|
69
|
+
random_artifact_factory,
|
|
70
|
+
monitor_task,
|
|
71
|
+
):
|
|
72
|
+
def _pub_and_repo(pulp_domain=None):
|
|
73
|
+
random_artifact = random_artifact_factory(pulp_domain=pulp_domain)
|
|
74
|
+
repository = file_repository_factory(pulp_domain=pulp_domain)
|
|
75
|
+
kwargs = {}
|
|
76
|
+
if pulp_domain:
|
|
77
|
+
kwargs["pulp_domain"] = pulp_domain
|
|
78
|
+
for i in range(2):
|
|
79
|
+
monitor_task(
|
|
80
|
+
file_bindings.ContentFilesApi.create(
|
|
81
|
+
artifact=random_artifact.pulp_href,
|
|
82
|
+
relative_path=f"{i}.dat",
|
|
83
|
+
repository=repository.pulp_href,
|
|
84
|
+
**kwargs,
|
|
85
|
+
).task
|
|
86
|
+
)
|
|
87
|
+
publish_data = file_bindings.FileFilePublication(repository=repository.pulp_href)
|
|
88
|
+
publication = gen_object_with_cleanup(
|
|
89
|
+
file_bindings.PublicationsFileApi, publish_data, **kwargs
|
|
90
|
+
)
|
|
91
|
+
return publication, repository
|
|
92
|
+
|
|
93
|
+
return _pub_and_repo
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
@pytest.mark.parallel
|
|
97
|
+
def test_crud_fsexporter(fs_exporter_factory, pulpcore_bindings, monitor_task):
|
|
98
|
+
# READ
|
|
99
|
+
exporter = fs_exporter_factory()
|
|
100
|
+
exporter_read = pulpcore_bindings.ExportersFilesystemApi.read(exporter.pulp_href)
|
|
101
|
+
assert exporter_read.name == exporter.name
|
|
102
|
+
assert exporter_read.path == exporter.path
|
|
103
|
+
|
|
104
|
+
# UPDATE
|
|
105
|
+
body = {"path": "/tmp/{}".format(str(uuid.uuid4()))}
|
|
106
|
+
result = pulpcore_bindings.ExportersFilesystemApi.partial_update(exporter.pulp_href, body)
|
|
107
|
+
monitor_task(result.task)
|
|
108
|
+
exporter_read = pulpcore_bindings.ExportersFilesystemApi.read(exporter.pulp_href)
|
|
109
|
+
assert exporter_read.path != exporter.path
|
|
110
|
+
assert exporter_read.path == body["path"]
|
|
111
|
+
|
|
112
|
+
# LIST
|
|
113
|
+
exporters = pulpcore_bindings.ExportersFilesystemApi.list(name=exporter.name).results
|
|
114
|
+
assert exporter.name in [e.name for e in exporters]
|
|
115
|
+
|
|
116
|
+
# DELETE
|
|
117
|
+
result = pulpcore_bindings.ExportersFilesystemApi.delete(exporter.pulp_href)
|
|
118
|
+
monitor_task(result.task)
|
|
119
|
+
with pytest.raises(ApiException):
|
|
120
|
+
pulpcore_bindings.ExportersFilesystemApi.read(exporter.pulp_href)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
@pytest.mark.parallel
|
|
124
|
+
def test_fsexport(pulpcore_bindings, fs_exporter_factory, fs_export_factory, pub_and_repo):
|
|
125
|
+
exporter = fs_exporter_factory()
|
|
126
|
+
(publication, _) = pub_and_repo()
|
|
127
|
+
# Test export
|
|
128
|
+
body = {"publication": publication.pulp_href}
|
|
129
|
+
export = fs_export_factory(exporter, body=body)
|
|
130
|
+
|
|
131
|
+
# Test list and delete
|
|
132
|
+
exports = pulpcore_bindings.ExportersPulpExportsApi.list(exporter.pulp_href).results
|
|
133
|
+
assert len(exports) == 1
|
|
134
|
+
pulpcore_bindings.ExportersPulpExportsApi.delete(export.pulp_href)
|
|
135
|
+
exports = pulpcore_bindings.ExportersPulpExportsApi.list(exporter.pulp_href).results
|
|
136
|
+
assert len(exports) == 0
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@pytest.mark.parallel
|
|
140
|
+
def test_fsexport_by_version(
|
|
141
|
+
fs_exporter_factory,
|
|
142
|
+
fs_export_factory,
|
|
143
|
+
pub_and_repo,
|
|
144
|
+
):
|
|
145
|
+
(publication, repository) = pub_and_repo()
|
|
146
|
+
latest = repository.latest_version_href
|
|
147
|
+
zeroth = latest.replace("/2/", "/0/")
|
|
148
|
+
|
|
149
|
+
# export by version
|
|
150
|
+
exporter = fs_exporter_factory()
|
|
151
|
+
body = {"repository_version": latest}
|
|
152
|
+
fs_export_factory(exporter, body=body)
|
|
153
|
+
|
|
154
|
+
# export by version with start_version
|
|
155
|
+
exporter = fs_exporter_factory()
|
|
156
|
+
body = {"repository_version": latest, "start_repository_version": zeroth}
|
|
157
|
+
fs_export_factory(exporter, body=body)
|
|
158
|
+
|
|
159
|
+
# export by publication with start_version
|
|
160
|
+
exporter = fs_exporter_factory()
|
|
161
|
+
body = {"publication": publication.pulp_href, "start_repository_version": zeroth}
|
|
162
|
+
fs_export_factory(exporter, body=body)
|
|
163
|
+
|
|
164
|
+
# negative: specify publication and version
|
|
165
|
+
with pytest.raises(BadRequestException) as e:
|
|
166
|
+
exporter = fs_exporter_factory()
|
|
167
|
+
body = {"publication": publication.pulp_href, "repository_version": zeroth}
|
|
168
|
+
fs_export_factory(exporter, body=body)
|
|
169
|
+
assert e.value.status == 400
|
|
170
|
+
assert json.loads(e.value.body) == {
|
|
171
|
+
"non_field_errors": [
|
|
172
|
+
"publication or repository_version must either be supplied but not both."
|
|
173
|
+
]
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
@pytest.mark.skipif(not settings.DOMAIN_ENABLED, reason="Domains not enabled.")
|
|
178
|
+
@pytest.mark.parallel
|
|
179
|
+
def test_fsexport_cross_domain(
|
|
180
|
+
fs_exporter_factory,
|
|
181
|
+
fs_export_factory,
|
|
182
|
+
gen_object_with_cleanup,
|
|
183
|
+
pulpcore_bindings,
|
|
184
|
+
pub_and_repo,
|
|
185
|
+
):
|
|
186
|
+
|
|
187
|
+
entities = [{}, {}]
|
|
188
|
+
for e in entities:
|
|
189
|
+
body = {
|
|
190
|
+
"name": str(uuid.uuid4()),
|
|
191
|
+
"storage_class": "pulpcore.app.models.storage.FileSystem",
|
|
192
|
+
"storage_settings": {"MEDIA_ROOT": "/var/lib/pulp/media/"},
|
|
193
|
+
}
|
|
194
|
+
e["domain"] = gen_object_with_cleanup(pulpcore_bindings.DomainsApi, body)
|
|
195
|
+
(e["publication"], e["repository"]) = pub_and_repo(pulp_domain=e["domain"].name)
|
|
196
|
+
e["exporter"] = fs_exporter_factory(pulp_domain=e["domain"].name)
|
|
197
|
+
body = {"publication": e["publication"].pulp_href}
|
|
198
|
+
e["export"] = fs_export_factory(e["exporter"], body=body)
|
|
199
|
+
|
|
200
|
+
latest = entities[0]["repository"].latest_version_href
|
|
201
|
+
zeroth = latest.replace("/2/", "/0/")
|
|
202
|
+
|
|
203
|
+
with pytest.raises(BadRequestException) as e:
|
|
204
|
+
body = {"publication": entities[0]["publication"].pulp_href}
|
|
205
|
+
fs_export_factory(entities[1]["exporter"], body=body)
|
|
206
|
+
|
|
207
|
+
with pytest.raises(BadRequestException) as e:
|
|
208
|
+
body = {"repository_version": latest}
|
|
209
|
+
fs_export_factory(entities[1]["exporter"], body=body)
|
|
210
|
+
|
|
211
|
+
with pytest.raises(BadRequestException) as e:
|
|
212
|
+
body = {"repository_version": latest, "start_repository_version": zeroth}
|
|
213
|
+
fs_export_factory(entities[1]["exporter"], body=body)
|
|
214
|
+
|
|
215
|
+
with pytest.raises(BadRequestException) as e:
|
|
216
|
+
body = {
|
|
217
|
+
"publication": entities[0]["publication"].pulp_href,
|
|
218
|
+
"start_repository_version": zeroth,
|
|
219
|
+
}
|
|
220
|
+
fs_export_factory(entities[1]["exporter"], body=body)
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import json
|
|
1
2
|
import pytest
|
|
2
3
|
import uuid
|
|
3
4
|
|
|
4
5
|
from pulpcore.client.pulpcore.exceptions import ApiException
|
|
6
|
+
from pulpcore.client.pulpcore.exceptions import BadRequestException
|
|
5
7
|
from pulpcore.app import settings
|
|
6
8
|
from pulpcore.constants import TASK_STATES
|
|
7
9
|
|
|
8
10
|
|
|
9
11
|
pytestmark = [
|
|
10
|
-
pytest.mark.skipif(settings.DOMAIN_ENABLED, reason="Domains do not support export."),
|
|
11
12
|
pytest.mark.skipif(
|
|
12
13
|
"/tmp" not in settings.ALLOWED_EXPORT_PATHS,
|
|
13
14
|
reason="Cannot run export-tests unless /tmp is in ALLOWED_EXPORT_PATHS "
|
|
@@ -23,7 +24,10 @@ def pulp_exporter_factory(
|
|
|
23
24
|
gen_object_with_cleanup,
|
|
24
25
|
add_to_filesystem_cleanup,
|
|
25
26
|
):
|
|
26
|
-
def _pulp_exporter_factory(
|
|
27
|
+
def _pulp_exporter_factory(
|
|
28
|
+
repositories=None,
|
|
29
|
+
pulp_domain=None,
|
|
30
|
+
):
|
|
27
31
|
if repositories is None:
|
|
28
32
|
repositories = []
|
|
29
33
|
name = str(uuid.uuid4())
|
|
@@ -33,7 +37,11 @@ def pulp_exporter_factory(
|
|
|
33
37
|
"path": path,
|
|
34
38
|
"repositories": [r.pulp_href for r in repositories],
|
|
35
39
|
}
|
|
36
|
-
|
|
40
|
+
kwargs = {}
|
|
41
|
+
if pulp_domain:
|
|
42
|
+
kwargs["pulp_domain"] = pulp_domain.name
|
|
43
|
+
|
|
44
|
+
exporter = gen_object_with_cleanup(pulpcore_bindings.ExportersPulpApi, body, **kwargs)
|
|
37
45
|
add_to_filesystem_cleanup(path)
|
|
38
46
|
assert exporter.name == name
|
|
39
47
|
assert exporter.path == path
|
|
@@ -291,3 +299,95 @@ def test_export_incremental(
|
|
|
291
299
|
with pytest.raises(ApiException):
|
|
292
300
|
body = {"start_versions": [file_repo.latest_version_href], "full": False}
|
|
293
301
|
pulp_export_factory(exporter, body)
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# Test that cross-domain attempts fail
|
|
305
|
+
# Exporter: repository, last-export : create, update
|
|
306
|
+
# Export: versions, start_versions
|
|
307
|
+
@pytest.mark.skipif(not settings.DOMAIN_ENABLED, reason="Domains not enabled.")
|
|
308
|
+
@pytest.mark.parallel
|
|
309
|
+
def test_cross_domain_exporter(
|
|
310
|
+
basic_manifest_path,
|
|
311
|
+
file_bindings,
|
|
312
|
+
file_remote_factory,
|
|
313
|
+
gen_object_with_cleanup,
|
|
314
|
+
pulpcore_bindings,
|
|
315
|
+
pulp_export_factory,
|
|
316
|
+
pulp_exporter_factory,
|
|
317
|
+
monitor_task,
|
|
318
|
+
):
|
|
319
|
+
# Create two domains
|
|
320
|
+
# In each, create and sync a repository, create and export an exporter
|
|
321
|
+
# Attempt to create an exporter using the *other domain's* repo
|
|
322
|
+
# Attempt to update the exporter using the *other domain's* repo and last_export
|
|
323
|
+
# Use the exporter and attempt to export the *other domain's* repo-versions
|
|
324
|
+
|
|
325
|
+
entities = [{}, {}]
|
|
326
|
+
for e in entities:
|
|
327
|
+
body = {
|
|
328
|
+
"name": str(uuid.uuid4()),
|
|
329
|
+
"storage_class": "pulpcore.app.models.storage.FileSystem",
|
|
330
|
+
"storage_settings": {"MEDIA_ROOT": "/var/lib/pulp/media/"},
|
|
331
|
+
}
|
|
332
|
+
e["domain"] = gen_object_with_cleanup(pulpcore_bindings.DomainsApi, body)
|
|
333
|
+
remote = file_remote_factory(
|
|
334
|
+
manifest_path=basic_manifest_path, policy="immediate", pulp_domain=e["domain"].name
|
|
335
|
+
)
|
|
336
|
+
|
|
337
|
+
repo_body = {"name": str(uuid.uuid4()), "remote": remote.pulp_href}
|
|
338
|
+
e["repository"] = gen_object_with_cleanup(
|
|
339
|
+
file_bindings.RepositoriesFileApi, repo_body, pulp_domain=e["domain"].name
|
|
340
|
+
)
|
|
341
|
+
task = file_bindings.RepositoriesFileApi.sync(e["repository"].pulp_href, {}).task
|
|
342
|
+
monitor_task(task)
|
|
343
|
+
e["repository"] = file_bindings.RepositoriesFileApi.read(e["repository"].pulp_href)
|
|
344
|
+
e["exporter"] = pulp_exporter_factory(
|
|
345
|
+
repositories=[e["repository"]], pulp_domain=e["domain"]
|
|
346
|
+
)
|
|
347
|
+
e["export"] = pulp_export_factory(e["exporter"])
|
|
348
|
+
|
|
349
|
+
target_domain = entities[1]["domain"]
|
|
350
|
+
# cross-create
|
|
351
|
+
with pytest.raises(BadRequestException) as e:
|
|
352
|
+
pulp_exporter_factory(repositories=[entities[0]["repository"]], pulp_domain=target_domain)
|
|
353
|
+
assert e.value.status == 400
|
|
354
|
+
assert json.loads(e.value.body) == {
|
|
355
|
+
"non_field_errors": [f"Objects must all be a part of the {target_domain.name} domain."]
|
|
356
|
+
}
|
|
357
|
+
# cross-update
|
|
358
|
+
body = {"repositories": [entities[0]["repository"].pulp_href]}
|
|
359
|
+
with pytest.raises(BadRequestException) as e:
|
|
360
|
+
pulpcore_bindings.ExportersPulpApi.partial_update(entities[1]["exporter"].pulp_href, body)
|
|
361
|
+
assert e.value.status == 400
|
|
362
|
+
assert json.loads(e.value.body) == {
|
|
363
|
+
"non_field_errors": [f"Objects must all be a part of the {target_domain.name} domain."]
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
body = {"last_export": entities[0]["export"].pulp_href}
|
|
367
|
+
with pytest.raises(BadRequestException) as e:
|
|
368
|
+
pulpcore_bindings.ExportersPulpApi.partial_update(entities[1]["exporter"].pulp_href, body)
|
|
369
|
+
assert e.value.status == 400
|
|
370
|
+
assert json.loads(e.value.body) == {
|
|
371
|
+
"non_field_errors": [f"Objects must all be a part of the {target_domain.name} domain."]
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
# cross-export
|
|
375
|
+
with pytest.raises(BadRequestException) as e:
|
|
376
|
+
latest_v = entities[0]["repository"].latest_version_href
|
|
377
|
+
zero_v = latest_v.replace("/1/", "/0/")
|
|
378
|
+
body = {
|
|
379
|
+
"start_versions": [latest_v],
|
|
380
|
+
"versions": [zero_v],
|
|
381
|
+
"full": False,
|
|
382
|
+
}
|
|
383
|
+
pulp_export_factory(entities[1]["exporter"], body)
|
|
384
|
+
assert e.value.status == 400
|
|
385
|
+
msgs = json.loads(e.value.body)
|
|
386
|
+
assert "versions" in msgs
|
|
387
|
+
assert "start_versions" in msgs
|
|
388
|
+
assert msgs["versions"] == [
|
|
389
|
+
"Requested RepositoryVersions must belong to the Repositories named by the Exporter!"
|
|
390
|
+
]
|
|
391
|
+
assert msgs["start_versions"] == [
|
|
392
|
+
"Requested RepositoryVersions must belong to the Repositories named by the Exporter!"
|
|
393
|
+
]
|
|
@@ -130,14 +130,30 @@ def export_artifacts(export, artifact_pks):
|
|
|
130
130
|
temp_file.write(artifact.file.read())
|
|
131
131
|
temp_file.flush()
|
|
132
132
|
artifact.file.close()
|
|
133
|
-
|
|
133
|
+
# If we're domain-enabled, replace our domain-pk with "DOMAIN" in
|
|
134
|
+
# the tarfile
|
|
135
|
+
if settings.DOMAIN_ENABLED:
|
|
136
|
+
tarfile_loc = artifact.file.name.replace(
|
|
137
|
+
str(artifact.pulp_domain_id), "DOMAIN"
|
|
138
|
+
)
|
|
139
|
+
else:
|
|
140
|
+
tarfile_loc = artifact.file.name
|
|
141
|
+
export.tarfile.add(temp_file.name, tarfile_loc)
|
|
134
142
|
else:
|
|
135
143
|
for offset in range(0, len(artifact_pks), EXPORT_BATCH_SIZE):
|
|
136
144
|
batch = artifact_pks[offset : offset + EXPORT_BATCH_SIZE]
|
|
137
145
|
batch_qs = Artifact.objects.filter(pk__in=batch).only("file")
|
|
138
146
|
|
|
139
147
|
for artifact in pb.iter(batch_qs.iterator()):
|
|
140
|
-
|
|
148
|
+
# If we're domain-enabled, replace our domain-pk with "DOMAIN" in
|
|
149
|
+
# the tarfile
|
|
150
|
+
if settings.DOMAIN_ENABLED:
|
|
151
|
+
tarfile_loc = artifact.file.name.replace(
|
|
152
|
+
str(artifact.pulp_domain_id), "DOMAIN"
|
|
153
|
+
)
|
|
154
|
+
else:
|
|
155
|
+
tarfile_loc = artifact.file.name
|
|
156
|
+
export.tarfile.add(artifact.file.path, tarfile_loc)
|
|
141
157
|
|
|
142
158
|
resource = ArtifactResource()
|
|
143
159
|
resource.queryset = Artifact.objects.filter(pk__in=artifact_pks)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Generated by Django 4.2.23 on 2025-09-09 08:24
|
|
2
|
+
|
|
3
|
+
from django.db import migrations
|
|
4
|
+
from pulpcore.migrations import RequireVersion
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Migration(migrations.Migration):
|
|
8
|
+
|
|
9
|
+
dependencies = [
|
|
10
|
+
('core', '0143_require_app_lock_zdu'),
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
operations = [
|
|
14
|
+
RequireVersion("core", "3.87"),
|
|
15
|
+
migrations.DeleteModel(
|
|
16
|
+
name='ApiAppStatus',
|
|
17
|
+
),
|
|
18
|
+
migrations.DeleteModel(
|
|
19
|
+
name='ContentAppStatus',
|
|
20
|
+
),
|
|
21
|
+
migrations.RemoveField(
|
|
22
|
+
model_name='task',
|
|
23
|
+
name='worker',
|
|
24
|
+
),
|
|
25
|
+
migrations.DeleteModel(
|
|
26
|
+
name='Worker',
|
|
27
|
+
),
|
|
28
|
+
]
|