pulpcore 3.84.0__tar.gz → 3.85.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.84.0 → pulpcore-3.85.0}/CHANGES.md +77 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/MANIFEST.in +1 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/PKG-INFO +12 -17
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/__init__.py +1 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/models.py +7 -26
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/serializers.py +0 -2
- pulpcore-3.85.0/pulp_certguard/rhsm/__init__.py +4 -0
- pulpcore-3.85.0/pulp_certguard/rhsm/rhsm_check_path.py +198 -0
- pulpcore-3.85.0/pulp_certguard/tests/unit/certdata.py +249 -0
- pulpcore-3.85.0/pulp_certguard/tests/unit/test_rhsm_check_path.py +213 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/__init__.py +1 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/migrations/0001_initial_squashed_0016_add_domain.py +0 -20
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/migrations/0017_alter_filealternatecontentsource_alternatecontentsource_ptr_and_more.py +1 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/apps.py +2 -12
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/entrypoint.py +22 -22
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py +0 -95
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0091_systemid.py +1 -1
- pulpcore-3.84.0/pulp_file/app/migrations/0006_delete_filefilesystemexporter.py → pulpcore-3.85.0/pulpcore/app/migrations/0136_delete_basedistribution.py +3 -3
- pulpcore-3.85.0/pulpcore/app/migrations/0137_appstatus.py +33 -0
- pulpcore-3.85.0/pulpcore/app/migrations/0138_vulnerabilityreport.py +33 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/__init__.py +4 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/publication.py +0 -41
- pulpcore-3.85.0/pulpcore/app/models/status.py +268 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/task.py +1 -0
- pulpcore-3.85.0/pulpcore/app/models/vulnerability_report.py +34 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/__init__.py +1 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/content.py +13 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/repository.py +8 -1
- pulpcore-3.85.0/pulpcore/app/serializers/vulnerability_report.py +27 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/settings.py +14 -47
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/__init__.py +2 -0
- pulpcore-3.85.0/pulpcore/app/tasks/vulnerability_report.py +159 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/__init__.py +1 -0
- pulpcore-3.85.0/pulpcore/app/viewsets/vulnerability_report.py +20 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/constants.py +4 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/content/__init__.py +23 -22
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/content/handler.py +5 -2
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/migrations.py +38 -11
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/openapi/__init__.py +8 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/models/__init__.py +2 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/serializers/__init__.py +2 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/tasking.py +2 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/viewsets/__init__.py +2 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/pytest_plugin.py +21 -21
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/worker.py +38 -35
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_auth.py +18 -3
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_openapi_schema.py +32 -15
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_checkpoint.py +23 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_proxy.py +1 -1
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/content/test_heartbeat.py +11 -8
- pulpcore-3.85.0/pulpcore/tests/unit/test_vulnerability_report.py +74 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore.egg-info/PKG-INFO +12 -17
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore.egg-info/SOURCES.txt +12 -110
- pulpcore-3.85.0/pulpcore.egg-info/dependency_links.txt +1 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore.egg-info/requires.txt +10 -15
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pyproject.toml +14 -22
- pulpcore-3.84.0/ci_requirements.txt +0 -1
- pulpcore-3.84.0/pulp_certguard/app/utils.py +0 -28
- pulpcore-3.84.0/pulp_certguard/tests/unit/test_models.py +0 -9
- pulpcore-3.84.0/pulp_file/app/migrations/0001_initial.py +0 -59
- pulpcore-3.84.0/pulp_file/app/migrations/0002_file_related_names.py +0 -55
- pulpcore-3.84.0/pulp_file/app/migrations/0003_auto_20191014_1721.py +0 -18
- pulpcore-3.84.0/pulp_file/app/migrations/0004_filefilesystemexporter.py +0 -21
- pulpcore-3.84.0/pulp_file/app/migrations/0005_filerepository.py +0 -24
- pulpcore-3.84.0/pulp_file/app/migrations/0007_filefilesystemexporter.py +0 -25
- pulpcore-3.84.0/pulp_file/app/migrations/0008_add_manifest_field.py +0 -19
- pulpcore-3.84.0/pulp_file/app/migrations/0009_move_data_to_new_master_distribution_model.py +0 -77
- pulpcore-3.84.0/pulp_file/app/migrations/0010_auto_publish.py +0 -23
- pulpcore-3.84.0/pulp_file/app/migrations/0011_fix_auto_publish.py +0 -36
- pulpcore-3.84.0/pulp_file/app/migrations/0012_delete_filefilesystemexporter.py +0 -28
- pulpcore-3.84.0/pulp_file/app/migrations/0013_file_acs.py +0 -24
- pulpcore-3.84.0/pulp_file/app/migrations/0014_new_rbac_permissions.py +0 -33
- pulpcore-3.84.0/pulp_file/app/migrations/0015_allow_null_manifest.py +0 -23
- pulpcore-3.84.0/pulp_file/app/migrations/0016_add_domain.py +0 -25
- pulpcore-3.84.0/pulpcore/app/migrations/0001_initial.py +0 -451
- pulpcore-3.84.0/pulpcore/app/migrations/0002_increase_artifact_size_field.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0003_remove_upload_completed.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0004_add_duplicated_reserved_resources.py +0 -45
- pulpcore-3.84.0/pulpcore/app/migrations/0005_progressreport_code.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0006_repository_plugin_managed.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0007_delete_progress_proxies.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0008_published_metadata_as_content.py +0 -44
- pulpcore-3.84.0/pulpcore/app/migrations/0009_remove_task_non_fatal_errors.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0010_pulp_fields.py +0 -570
- pulpcore-3.84.0/pulpcore/app/migrations/0011_relative_path.py +0 -28
- pulpcore-3.84.0/pulpcore/app/migrations/0012_auto_20191104_2000.py +0 -31
- pulpcore-3.84.0/pulpcore/app/migrations/0013_repository_pulp_type.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0014_remove_repository_plugin_managed.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0015_auto_20191112_1426.py +0 -33
- pulpcore-3.84.0/pulpcore/app/migrations/0016_charfield_to_textfield.py +0 -68
- pulpcore-3.84.0/pulpcore/app/migrations/0017_remove_task_parent.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0018_auto_20191127_2350.py +0 -20
- pulpcore-3.84.0/pulpcore/app/migrations/0019_add_signing_service_model.py +0 -27
- pulpcore-3.84.0/pulpcore/app/migrations/0020_change_publishedartifact_constraints.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0021_add_signing_service_foreign_key.py +0 -24
- pulpcore-3.84.0/pulpcore/app/migrations/0022_rename_last_version.py +0 -27
- pulpcore-3.84.0/pulpcore/app/migrations/0023_change_exporter_models.py +0 -82
- pulpcore-3.84.0/pulpcore/app/migrations/0024_use_local_storage_for_uploads.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0025_task_parent_task.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0026_task_group.py +0 -32
- pulpcore-3.84.0/pulpcore/app/migrations/0027_export_backend.py +0 -31
- pulpcore-3.84.0/pulpcore/app/migrations/0028_import_importer_pulpimporter_pulpimporterrepository.py +0 -85
- pulpcore-3.84.0/pulpcore/app/migrations/0029_export_delete.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0030_taskgroup_all_tasks_dispatched.py +0 -24
- pulpcore-3.84.0/pulpcore/app/migrations/0031_import_export_validate_params.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0032_export_to_chunks.py +0 -27
- pulpcore-3.84.0/pulpcore/app/migrations/0033_increase_remote_artifact_size_field.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0034_groupprogressreport.py +0 -32
- pulpcore-3.84.0/pulpcore/app/migrations/0035_content_upstream_id.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0036_unprotect_last_export.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0037_pulptemporaryfile.py +0 -28
- pulpcore-3.84.0/pulpcore/app/migrations/0038_repository_remote.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0039_change_download_concurrency.py +0 -25
- pulpcore-3.84.0/pulpcore/app/migrations/0040_set_admin_is_staff.py +0 -28
- pulpcore-3.84.0/pulpcore/app/migrations/0041_accesspolicy.py +0 -29
- pulpcore-3.84.0/pulpcore/app/migrations/0042_rbac_for_tasks.py +0 -56
- pulpcore-3.84.0/pulpcore/app/migrations/0043_toc_attribute.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0044_temp_file_artifact_field.py +0 -20
- pulpcore-3.84.0/pulpcore/app/migrations/0045_accesspolicy_permissions_allow_null.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0046_task__resource_job_id.py +0 -35
- pulpcore-3.84.0/pulpcore/app/migrations/0047_improve_orphan_cleanup.py +0 -59
- pulpcore-3.84.0/pulpcore/app/migrations/0048_fips_checksums.py +0 -38
- pulpcore-3.84.0/pulpcore/app/migrations/0049_add_file_field_to_uploadchunk.py +0 -24
- pulpcore-3.84.0/pulpcore/app/migrations/0050_namespace_access_policies.py +0 -28
- pulpcore-3.84.0/pulpcore/app/migrations/0051_timeoutfields.py +0 -34
- pulpcore-3.84.0/pulpcore/app/migrations/0052_tasking_logging_cid.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0053_remote_headers.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0054_add_public_key.py +0 -104
- pulpcore-3.84.0/pulpcore/app/migrations/0055_label.py +0 -31
- pulpcore-3.84.0/pulpcore/app/migrations/0056_remote_rate_limit.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0057_add_label_indexes.py +0 -23
- pulpcore-3.84.0/pulpcore/app/migrations/0058_accesspolicy_customized.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0059_proxy_creds.py +0 -23
- pulpcore-3.84.0/pulpcore/app/migrations/0060_data_migration_proxy_creds.py +0 -45
- pulpcore-3.84.0/pulpcore/app/migrations/0061_call_handle_artifact_checksums_command.py +0 -87
- pulpcore-3.84.0/pulpcore/app/migrations/0062_add_new_distribution_mastermodel.py +0 -36
- pulpcore-3.84.0/pulpcore/app/migrations/0063_repository_retained_versions.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0064_add_new_style_task_columns.py +0 -109
- pulpcore-3.84.0/pulpcore/app/migrations/0064_repository_user_hidden.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0065_merge_20210615_1211.py +0 -14
- pulpcore-3.84.0/pulpcore/app/migrations/0066_download_concurrency_and_retry_changes.py +0 -24
- pulpcore-3.84.0/pulpcore/app/migrations/0067_add_protect_to_task_reservation.py +0 -19
- pulpcore-3.84.0/pulpcore/app/migrations/0068_add_timestamp_of_interest.py +0 -23
- pulpcore-3.84.0/pulpcore/app/migrations/0069_update_json_fields.py +0 -63
- pulpcore-3.84.0/pulpcore/app/migrations/0070_rename_retained_versions.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0071_filesystemexport_filesystemexporter.py +0 -35
- pulpcore-3.84.0/pulpcore/app/migrations/0072_add_method_to_filesystem_exporter.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0073_encrypt_remote_fields.py +0 -139
- pulpcore-3.84.0/pulpcore/app/migrations/0074_acs.py +0 -47
- pulpcore-3.84.0/pulpcore/app/migrations/0075_rbaccontentguard.py +0 -25
- pulpcore-3.84.0/pulpcore/app/migrations/0076_remove_reserved_resource.py +0 -39
- pulpcore-3.84.0/pulpcore/app/migrations/0077_move_remote_url_credentials.py +0 -41
- pulpcore-3.84.0/pulpcore/app/migrations/0078_grouprole_role_userrole.py +0 -70
- pulpcore-3.84.0/pulpcore/app/migrations/0079_rename_permissions_assignment_accesspolicy_creation_hooks.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0080_proxy_group_model.py +0 -37
- pulpcore-3.84.0/pulpcore/app/migrations/0081_reapplabel_group_permissions.py +0 -59
- pulpcore-3.84.0/pulpcore/app/migrations/0082_add_manage_roles_permissions.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0083_alter_group_options.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0084_alter_rbaccontentguard_options.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0085_contentredirectcontentguard.py +0 -26
- pulpcore-3.84.0/pulpcore/app/migrations/0086_task_json_fields.py +0 -77
- pulpcore-3.84.0/pulpcore/app/migrations/0087_taskschedule.py +0 -34
- pulpcore-3.84.0/pulpcore/app/migrations/0088_accesspolicy_queryset_scoping.py +0 -18
- pulpcore-3.84.0/pulpcore/app/migrations/0089_alter_contentredirectcontentguard_options.py +0 -17
- pulpcore-3.84.0/pulpcore/app/migrations/0090_char_to_text_field.py +0 -79
- pulpcore-3.84.0/pulpcore/app/models/status.py +0 -123
- pulpcore-3.84.0/pulpcore/tests/unit/migration/test_0077_move_remote_url_credentials.py +0 -35
- {pulpcore-3.84.0 → pulpcore-3.85.0}/CODE_OF_CONDUCT.md +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/COMMITMENT +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/CONTRIBUTING.md +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/COPYRIGHT +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/LICENSE +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/README.md +0 -0
- /pulpcore-3.84.0/pulpcore.egg-info/dependency_links.txt → /pulpcore-3.85.0/ci_requirements.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/functest_requirements.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/manage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/migrations/0001_initial.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/migrations/0002_alter_rhsmcertguard_contentguard_ptr_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/migrations/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/app/viewsets.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/pytest_plugin.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/api/test_rhsm_certguard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/api/test_x509_certguard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.crt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/katello-default-ca.key +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/trusted_but_expired.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/uber.cert +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert-key.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/untrusted_cert.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713-key.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/1514454871848760713.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840-key.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v1/159442575569388840.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985-key.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/4260035510644027985.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172-key.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/rhsm/v3/5527980418107729172.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/certificates/ca.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/genca.sh +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/thirdparty_ca/keys/ca.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/ca.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/client.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/server.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/un_urlencoded_cert.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/certificates/untrusted_client.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/genall.sh +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/genca.sh +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/genclient.sh +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/keys/ca.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/keys/client.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/artifacts/x509/keys/server.pem +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/conftest.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/functional/constants.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_certguard/tests/unit/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/migrations/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/modelresource.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/models.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/serializers.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/tasks/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/tasks/publishing.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/tasks/synchronizing.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/app/viewsets.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/manifest.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/pytest_plugin.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_acs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_auto_publish.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_bad_sync.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_content_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_crud_content_unit.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_crud_remotes.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_domains.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_download_policies.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_generic_list.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_mime_types.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_publish.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_pulp_export.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_rbac.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_remote_settings.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/functional/api/test_sync.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/unit/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/unit/test_safe_paths.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulp_file/tests/unit/test_serializers.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/authentication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/checks.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/files.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/global_access_conditions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/importexport.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/loggers.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/manage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/add-signing-service.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/analyze-publication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/clean-up-progress-reports.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/datarepair-2327.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/dump-permissions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/dump-publications-to-fs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/handle-artifact-checksums.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/migrationstat.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/openapi.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/rebasemigrations.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/remove-plugin.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/remove-signing-service.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/repository-size.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/reset-admin-password.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/management/commands/rotate-db-key.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0092_alter_upload_options.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0093_add_info_field_repositoryversion.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0094_protect_repository_content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0095_artifactdistribution.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0096_alter_task_logging_cid.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0097_remove_telemetry_task_schedule.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0098_pulp_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0099_versions_field.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0100_upstreampulp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0101_add_domain.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0102_add_domain_relations.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0103_alter_export_task.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0104_delete_label.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0105_abstract_uuid_gen.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0106_alter_artifactdistribution_distribution_ptr_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0107_distribution_hidden.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0108_task_versions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0109_contentartifact_relative_path_index.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0110_apiappstatus.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0111_task_enc_args_task_enc_kwargs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0112_alter_upstreampulp_options.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0113_headercontentguard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0114_remove_task_args_remove_task_kwargs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0115_compositecontentguard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0116_alter_remoteartifact_md5_alter_remoteartifact_sha1_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0117_task_unblocked_at.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0118_task_core_task_unblock_2276a4_idx_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0119_grouprole_core_groupr_object__250e22_idx_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0120_get_url_removal.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0121_add_profile_artifacts_table.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0122_record_last_replication_timestamp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0123_upstreampulp_q_select.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0124_task_deferred_task_immediate.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0125_openpgpdistribution_openpgpkeyring_openpgppublickey_and_more.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0126_remoteartifact_failed_at.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0127_remove_upstreampulp_pulp_label_select.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0128_domain_pulp_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0129_content_pulp_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0130_upstreampulp_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0131_distribution_checkpoint_publication_checkpoint.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0132_alter_content_options.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0132_task_profile_options.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0133_repositoryversion_content_ids.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0134_task_insert_trigger.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/0135_task_pulp_task_resources_index.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/migrations/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/mime_types.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/modelresource.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/acs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/analytics.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/domain.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/exporter.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/fields.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/generic.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/importer.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/openpgp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/progress.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/repository.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/role.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/storage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/models/upload.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/netutil.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/openpgp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/protobuf/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/protobuf/analytics_pb2.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/pulp_hashlib.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/pulpcore_gunicorn_application.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/redis_connection.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/response.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/role_util.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/acs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/domain.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/exporter.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/fields.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/importer.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/openpgp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/orphans.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/progress.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/publication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/purge.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/reclaim.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/repair.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/status.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/task.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/upload.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/serializers/user.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/analytics.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/export.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/importer.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/migrate.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/orphan.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/purge.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/reclaim_space.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/repository.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/telemetry.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/test.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/tasks/upload.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/templates/rest_framework/api.html +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/templatetags/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/templatetags/pulp_urls.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/urls.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/util.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/views/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/views/importer.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/views/orphans.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/views/repair.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/views/status.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/acs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/custom_filters.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/domain.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/exporter.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/importer.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/openpgp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/orphans.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/publication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/reclaim.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/repository.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/task.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/upload.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/viewsets/user.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/app/wsgi.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/backends.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/cache/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/cache/cache.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/content/authentication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/content/entrypoint.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/content/instrumentation.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/download/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/download/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/download/factory.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/download/file.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/download/http.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/exceptions/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/exceptions/base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/exceptions/plugin.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/exceptions/validation.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/filters.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/metrics.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/middleware.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/openapi/hooks.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/actions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/apps.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/authentication/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/cache/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/constants.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/download/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/exceptions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/files.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/importexport.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/migrations.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/modelresources.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/models/role.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/publication_utils.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/pulp_hashlib.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/replica.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/repo_version_utils.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/responses.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/serializers/content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/api.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/artifact_stages.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/content_stages.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/declarative_version.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/stages/models.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/storage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/sync.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/util.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/plugin/viewsets/content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/responses.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/_util.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/entrypoint.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/kafka.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/storage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tasking/tasks.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_access_policy.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_api_docs.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_api_root_rewrite.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_artifact_distribution.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_correlation_id.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_crd_artifacts.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_crud_domains.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_filter.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_login.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_openpgp.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_replication.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_repos.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_role.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_root_endpoint.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_scoping.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_signing_service.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_status.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_task_purge.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_tasking.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_upload.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_users_groups.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/test_workers.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_access.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_cache.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_delivery.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_directory.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_path.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_content_promotion.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_contentguard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_crud_repos.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_distributions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_filesystemexport.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_labels.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_migrate.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_orphans.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_pagination.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_prn.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_pulpimport.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_reclaim_disk_space.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_repair.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_repo_versions.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_tasks.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/api/using_plugin/test_unlinking_repo.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/assets/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/content_with_coverage.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/functional/utils.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/performance/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/performance/test_performance.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/conftest.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/content/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/content/test_handler.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/download/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/download/test_downloader_base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/download/test_downloader_factory.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/metrics/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/metrics/conftest.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/metrics/test_aiohttp_instrumentation.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/metrics/test_django_instrumentation.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/migration/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/test_base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/test_content.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/test_remote.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/test_repository.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/models/test_task.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/roles/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/roles/test_roles.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_domain.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_fields.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_orphans_cleanup.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_pulpexport.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_repository.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/serializers/test_user.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/stages/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/stages/test_artifactdownloader.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/stages/test_stages.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_cache.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_chunked_file.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_content_guard.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_files.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_import_checks.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_pulp_urls.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_settings.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_util.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/test_viewsets.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/viewsets/__init__.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore/tests/unit/viewsets/test_viewset_base.py +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore.egg-info/entry_points.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/pulpcore.egg-info/top_level.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/setup.cfg +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/test_requirements.txt +0 -0
- {pulpcore-3.84.0 → pulpcore-3.85.0}/unittest_requirements.txt +0 -0
|
@@ -8,6 +8,59 @@
|
|
|
8
8
|
|
|
9
9
|
[//]: # (towncrier release notes start)
|
|
10
10
|
|
|
11
|
+
## 3.85.0 (2025-08-12) {: #3.85.0 }
|
|
12
|
+
|
|
13
|
+
### REST API {: #3.85.0-rest-api }
|
|
14
|
+
|
|
15
|
+
#### Features {: #3.85.0-rest-api-feature }
|
|
16
|
+
|
|
17
|
+
- Added the ability to configure the openapi schema for remote user authentication via `REMOTE_USER_OPENAPI_SECURITY_SCHEME`.
|
|
18
|
+
Its type defaults to "mutualTLS" for cert based authentication.
|
|
19
|
+
[#5437](https://github.com/pulp/pulpcore/issues/5437)
|
|
20
|
+
- Added the vulnerability report data model.
|
|
21
|
+
[#6773](https://github.com/pulp/pulpcore/issues/6773)
|
|
22
|
+
- Added a new table to track all app status in a common place.
|
|
23
|
+
|
|
24
|
+
#### Bugfixes {: #3.85.0-rest-api-bugfix }
|
|
25
|
+
|
|
26
|
+
- Made a failure to update the heartbeat catastrophic, so we can actually rely on workers that claim to be "online".
|
|
27
|
+
[#heartbeat](https://github.com/pulp/pulpcore/issues/heartbeat)
|
|
28
|
+
- Redirect checkpoint URLs without a trailing slash to add the slash.
|
|
29
|
+
[#6812](https://github.com/pulp/pulpcore/issues/6812)
|
|
30
|
+
- Fixed worker emitting logs with wrong task's domain names.
|
|
31
|
+
[#6818](https://github.com/pulp/pulpcore/issues/6818)
|
|
32
|
+
|
|
33
|
+
#### Removals {: #3.85.0-rest-api-removal }
|
|
34
|
+
|
|
35
|
+
- Bumped the minimum required python version to 3.11.
|
|
36
|
+
[#6262](https://github.com/pulp/pulpcore/issues/6262)
|
|
37
|
+
- Removed support for DEFAULT_FILE_STORAGE and it's corresponding storage options.
|
|
38
|
+
Use STORAGES instead:
|
|
39
|
+
<https://pulpproject.org/pulpcore/docs/admin/reference/settings/#storages>
|
|
40
|
+
[#6807](https://github.com/pulp/pulpcore/issues/6807)
|
|
41
|
+
- Switch OpenAPI specification to use version 3.1.
|
|
42
|
+
|
|
43
|
+
### Plugin API {: #3.85.0-plugin-api }
|
|
44
|
+
|
|
45
|
+
#### Removals {: #3.85.0-plugin-api-removal }
|
|
46
|
+
|
|
47
|
+
- Purged migrations that were squashed before.
|
|
48
|
+
Plugins need to rebase their migrations onto "core:0091_systemid".
|
|
49
|
+
Removed `BaseDistribution`.
|
|
50
|
+
|
|
51
|
+
### Pulp File {: #3.85.0-pulp-file }
|
|
52
|
+
|
|
53
|
+
No significant changes.
|
|
54
|
+
|
|
55
|
+
### Pulp Cert Guard {: #3.85.0-pulp-cert-guard }
|
|
56
|
+
|
|
57
|
+
#### Features {: #3.85.0-pulp-cert-guard-feature }
|
|
58
|
+
|
|
59
|
+
- Replaced unmaintained rhsm `check_path` with local replacement. Dropped the optional dependency on `python-rhsm`.
|
|
60
|
+
[#6195](https://github.com/pulp/pulpcore/issues/6195)
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
11
64
|
## 3.84.0 (2025-07-30) {: #3.84.0 }
|
|
12
65
|
|
|
13
66
|
### REST API {: #3.84.0-rest-api }
|
|
@@ -4692,6 +4745,18 @@ No significant changes.
|
|
|
4692
4745
|
- Starting from this release pulp_file will be shipped as part of the pulpcore package.
|
|
4693
4746
|
[#4550](https://github.com/pulp/pulpcore/issues/4550)
|
|
4694
4747
|
|
|
4748
|
+
## 3.39.33 (2025-07-30) {: #3.39.33 }
|
|
4749
|
+
|
|
4750
|
+
### REST API {: #3.39.33-rest-api }
|
|
4751
|
+
|
|
4752
|
+
No significant changes.
|
|
4753
|
+
|
|
4754
|
+
### Plugin API {: #3.39.33-plugin-api }
|
|
4755
|
+
|
|
4756
|
+
No significant changes.
|
|
4757
|
+
|
|
4758
|
+
---
|
|
4759
|
+
|
|
4695
4760
|
## 3.39.32 (2025-05-27) {: #3.39.32 }
|
|
4696
4761
|
|
|
4697
4762
|
### REST API {: #3.39.32-rest-api }
|
|
@@ -5678,6 +5743,18 @@ No significant changes.
|
|
|
5678
5743
|
|
|
5679
5744
|
- [#3798](https://github.com/pulp/pulpcore/issues/3798)
|
|
5680
5745
|
|
|
5746
|
+
## 3.28.40 (2025-07-30) {: #3.28.40 }
|
|
5747
|
+
|
|
5748
|
+
### REST API {: #3.28.40-rest-api }
|
|
5749
|
+
|
|
5750
|
+
No significant changes.
|
|
5751
|
+
|
|
5752
|
+
### Plugin API {: #3.28.40-plugin-api }
|
|
5753
|
+
|
|
5754
|
+
No significant changes.
|
|
5755
|
+
|
|
5756
|
+
---
|
|
5757
|
+
|
|
5681
5758
|
## 3.28.39 (2025-05-27) {: #3.28.39 }
|
|
5682
5759
|
|
|
5683
5760
|
### REST API {: #3.28.39-rest-api }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulpcore
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.85.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
|
|
@@ -14,54 +14,50 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
14
14
|
Classifier: Framework :: Django
|
|
15
15
|
Classifier: Programming Language :: Python
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.11
|
|
22
20
|
Description-Content-Type: text/markdown
|
|
23
21
|
License-File: LICENSE
|
|
24
22
|
Requires-Dist: aiodns<3.6,>=3.3.0
|
|
25
23
|
Requires-Dist: aiofiles<=24.1.0,>=22.1
|
|
26
24
|
Requires-Dist: aiohttp<3.13,>=3.8.3
|
|
27
25
|
Requires-Dist: asyncio-throttle<=1.0.2,>=1.0
|
|
28
|
-
Requires-Dist: async-timeout<4.0.4,>=4.0.3; python_version < "3.11"
|
|
29
26
|
Requires-Dist: backoff<2.3,>=2.1.2
|
|
30
|
-
Requires-Dist: click<8.
|
|
31
|
-
Requires-Dist: cryptography<46.0,>=
|
|
27
|
+
Requires-Dist: click<8.3,>=8.1.0
|
|
28
|
+
Requires-Dist: cryptography<46.0,>=44.0.3
|
|
32
29
|
Requires-Dist: Django~=4.2.0
|
|
33
30
|
Requires-Dist: django-filter<=25.1,>=23.1
|
|
34
31
|
Requires-Dist: django-guid<3.6,>=3.3.0
|
|
35
32
|
Requires-Dist: django-import-export<3.4.0,>=2.9
|
|
36
33
|
Requires-Dist: django-lifecycle<=1.2.4,>=1.0
|
|
37
|
-
Requires-Dist: djangorestframework<=3.16.
|
|
34
|
+
Requires-Dist: djangorestframework<=3.16.1,>=3.14.0
|
|
38
35
|
Requires-Dist: djangorestframework-queryfields<=1.1.0,>=1.0
|
|
39
36
|
Requires-Dist: drf-access-policy<1.5.1,>=1.1.2
|
|
40
37
|
Requires-Dist: drf-nested-routers<=0.94.2,>=0.93.4
|
|
41
38
|
Requires-Dist: drf-spectacular==0.27.2
|
|
42
39
|
Requires-Dist: dynaconf<3.3.0,>=3.2.5
|
|
43
40
|
Requires-Dist: gunicorn<23.1.0,>=22.0
|
|
44
|
-
Requires-Dist: importlib-metadata<=6.0.1,>=6.0.1
|
|
45
41
|
Requires-Dist: jinja2<=3.1.6,>=3.1
|
|
46
42
|
Requires-Dist: json_stream<2.4,>=2.3.2
|
|
47
43
|
Requires-Dist: jq<1.11.0,>=1.6.0
|
|
48
44
|
Requires-Dist: PyOpenSSL<26.0
|
|
49
|
-
Requires-Dist: opentelemetry-api<1.
|
|
50
|
-
Requires-Dist: opentelemetry-sdk<1.
|
|
51
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.
|
|
45
|
+
Requires-Dist: opentelemetry-api<1.37,>=1.27.0
|
|
46
|
+
Requires-Dist: opentelemetry-sdk<1.37,>=1.27.0
|
|
47
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.37,>=1.27.0
|
|
52
48
|
Requires-Dist: protobuf<6.0,>=4.21.1
|
|
53
|
-
Requires-Dist: pulp-glue<0.
|
|
49
|
+
Requires-Dist: pulp-glue<0.36,>=0.28.0
|
|
54
50
|
Requires-Dist: pygtrie<=2.5.0,>=2.5
|
|
55
51
|
Requires-Dist: psycopg[binary]<3.3,>=3.1.8
|
|
56
52
|
Requires-Dist: pyparsing<3.3,>=3.1.0
|
|
57
53
|
Requires-Dist: python-gnupg<=0.5.4,>=0.5
|
|
58
54
|
Requires-Dist: PyYAML<6.1,>=5.1.1
|
|
59
|
-
Requires-Dist: redis<5
|
|
55
|
+
Requires-Dist: redis<6.5,>=4.3.0
|
|
60
56
|
Requires-Dist: tablib<3.6,>=3.5.0
|
|
61
57
|
Requires-Dist: url-normalize<2.3,>=1.4.3
|
|
62
58
|
Requires-Dist: uuid6<=2025.0.1,>=2023.5.2
|
|
63
59
|
Requires-Dist: whitenoise<6.10.0,>=5.0
|
|
64
|
-
Requires-Dist: yarl<1.21,>=1.
|
|
60
|
+
Requires-Dist: yarl<1.21,>=1.9.1
|
|
65
61
|
Provides-Extra: sftp
|
|
66
62
|
Requires-Dist: django-storages[sftp]==1.14.6; extra == "sftp"
|
|
67
63
|
Provides-Extra: s3
|
|
@@ -70,12 +66,11 @@ Provides-Extra: google
|
|
|
70
66
|
Requires-Dist: django-storages[google]==1.14.6; extra == "google"
|
|
71
67
|
Provides-Extra: azure
|
|
72
68
|
Requires-Dist: django-storages[azure]==1.14.6; extra == "azure"
|
|
73
|
-
Requires-Dist: azure-storage-blob<12.26.0; extra == "azure"
|
|
74
69
|
Provides-Extra: prometheus
|
|
75
70
|
Requires-Dist: django-prometheus; extra == "prometheus"
|
|
76
71
|
Provides-Extra: kafka
|
|
77
72
|
Requires-Dist: cloudevents==1.11.0; extra == "kafka"
|
|
78
|
-
Requires-Dist: confluent-kafka<2.
|
|
73
|
+
Requires-Dist: confluent-kafka<2.12.0,>=2.4.0; extra == "kafka"
|
|
79
74
|
Provides-Extra: diagnostics
|
|
80
75
|
Requires-Dist: pyinstrument~=5.0; extra == "diagnostics"
|
|
81
76
|
Requires-Dist: memray~=1.17; extra == "diagnostics"
|
|
@@ -6,16 +6,12 @@ from urllib.parse import unquote
|
|
|
6
6
|
from django.conf import settings
|
|
7
7
|
from django.db import models
|
|
8
8
|
|
|
9
|
+
from cryptography import x509
|
|
9
10
|
from OpenSSL import crypto as openssl
|
|
10
11
|
|
|
11
12
|
from pulpcore.plugin.models import ContentGuard
|
|
12
13
|
|
|
13
|
-
from pulp_certguard
|
|
14
|
-
|
|
15
|
-
try:
|
|
16
|
-
from rhsm import certificate
|
|
17
|
-
except ImportError:
|
|
18
|
-
pass
|
|
14
|
+
from pulp_certguard import rhsm
|
|
19
15
|
|
|
20
16
|
|
|
21
17
|
logger = getLogger(__name__)
|
|
@@ -139,11 +135,6 @@ class RHSMCertGuard(BaseCertGuard):
|
|
|
139
135
|
|
|
140
136
|
TYPE = "rhsm"
|
|
141
137
|
|
|
142
|
-
def __init__(self, *args, **kwargs):
|
|
143
|
-
"""Initialize a RHSMCertGuard and ensure this system has python-rhsm on it."""
|
|
144
|
-
get_rhsm() # Validate that rhsm is installed
|
|
145
|
-
super().__init__(*args, **kwargs)
|
|
146
|
-
|
|
147
138
|
class Meta:
|
|
148
139
|
default_related_name = "%(app_label)s_%(model_name)s"
|
|
149
140
|
|
|
@@ -159,29 +150,19 @@ class RHSMCertGuard(BaseCertGuard):
|
|
|
159
150
|
certificate, or if the client certificate is not trusted from the CA certificated
|
|
160
151
|
stored as `ca_certificate`.
|
|
161
152
|
"""
|
|
162
|
-
|
|
153
|
+
# TODO use python cryptography and only parse the certificate once.
|
|
163
154
|
unquoted_certificate = self._get_client_cert_header(request)
|
|
164
155
|
self._ensure_client_cert_is_trusted(unquoted_certificate)
|
|
165
|
-
|
|
156
|
+
cert = x509.load_pem_x509_certificate(unquoted_certificate.encode())
|
|
166
157
|
content_path_prefix_without_trail_slash = settings.CONTENT_PATH_PREFIX.rstrip("/")
|
|
167
158
|
len_prefix_to_remove = len(content_path_prefix_without_trail_slash)
|
|
168
159
|
path_without_content_path_prefix = request.path[len_prefix_to_remove:]
|
|
169
|
-
self._check_paths(
|
|
170
|
-
|
|
171
|
-
@staticmethod
|
|
172
|
-
def _create_rhsm_cert_from_pem(unquoted_certificate):
|
|
173
|
-
try:
|
|
174
|
-
rhsm_cert = certificate.create_from_pem(unquoted_certificate)
|
|
175
|
-
except certificate.CertificateException:
|
|
176
|
-
msg = _("An error occurred while loading the client certificate data into python-rhsm.")
|
|
177
|
-
logger.warning(msg)
|
|
178
|
-
raise PermissionError(msg)
|
|
179
|
-
return rhsm_cert
|
|
160
|
+
self._check_paths(cert, path_without_content_path_prefix)
|
|
180
161
|
|
|
181
162
|
@staticmethod
|
|
182
|
-
def _check_paths(
|
|
163
|
+
def _check_paths(cert, path):
|
|
183
164
|
logger.debug(f"Checking that path {path} is allowed in client cert")
|
|
184
|
-
if
|
|
165
|
+
if rhsm.check_path(cert, path) is False:
|
|
185
166
|
logger.warning(f"Path {path} is *not* allowed in client cert")
|
|
186
167
|
msg = _("Requested path is not a subpath of a path in the client certificate.")
|
|
187
168
|
raise PermissionError(msg)
|
|
@@ -6,7 +6,6 @@ from pulpcore.plugin.serializers import ContentGuardSerializer
|
|
|
6
6
|
|
|
7
7
|
from rest_framework import serializers
|
|
8
8
|
|
|
9
|
-
from pulp_certguard.app.utils import get_rhsm
|
|
10
9
|
from .models import RHSMCertGuard, X509CertGuard
|
|
11
10
|
|
|
12
11
|
|
|
@@ -45,7 +44,6 @@ class RHSMCertGuardSerializer(BaseCertGuardSerializer):
|
|
|
45
44
|
@staticmethod
|
|
46
45
|
def validate_ca_certificate(ca_certificate):
|
|
47
46
|
"""Validates the given certificate."""
|
|
48
|
-
get_rhsm() # Validate that rhsm is installed
|
|
49
47
|
return BaseCertGuardSerializer.validate_ca_certificate(ca_certificate)
|
|
50
48
|
|
|
51
49
|
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import typing as t
|
|
2
|
+
from cryptography import x509
|
|
3
|
+
from heapq import heappush, heappop
|
|
4
|
+
import itertools
|
|
5
|
+
import re
|
|
6
|
+
import zlib
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
RH_OID = "1.3.6.1.4.1.2312.9"
|
|
10
|
+
RH_ORDER_NAME_OID = RH_OID + ".4.1"
|
|
11
|
+
RH_VERSION_OID = RH_OID + ".6"
|
|
12
|
+
RH_ENTITLEMENT_OID = RH_OID + ".7"
|
|
13
|
+
V1_PATH_OID_REGEX = re.compile(rf"^{re.escape(RH_OID)}\.2\.\d+\.1\.6$")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
T = t.TypeVar("T")
|
|
17
|
+
RecursiveDict = t.Dict[str, "RecursiveDict"]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# Proper anntoation of generic classes was introduced in Python 3.12
|
|
21
|
+
# class HuffmannNode[T]
|
|
22
|
+
class HuffmannNode:
|
|
23
|
+
def __init__(
|
|
24
|
+
self,
|
|
25
|
+
left: "t.Self | T",
|
|
26
|
+
right: "t.Self | T",
|
|
27
|
+
) -> None:
|
|
28
|
+
self.left: "t.Self | T" = left
|
|
29
|
+
self.right: "t.Self | T" = right
|
|
30
|
+
|
|
31
|
+
@classmethod
|
|
32
|
+
def build_tree(cls, items: t.Iterable[T]) -> "t.Self":
|
|
33
|
+
# This builds a special type of tree, where the weights are _always_ like 1,2,3,...
|
|
34
|
+
serial = itertools.count(1) # Used to keep items of equal weight in order.
|
|
35
|
+
heap: list[tuple[int, int, "t.Self | T"]] = []
|
|
36
|
+
for value in items:
|
|
37
|
+
weight = next(serial)
|
|
38
|
+
# First item is the actual weight, second is the tiebreaker.
|
|
39
|
+
# Values are never compared.
|
|
40
|
+
heappush(heap, (weight, weight, value))
|
|
41
|
+
while True:
|
|
42
|
+
lw, _, left = heappop(heap)
|
|
43
|
+
try:
|
|
44
|
+
rw, _, right = heappop(heap)
|
|
45
|
+
node = cls(left=left, right=right)
|
|
46
|
+
heappush(heap, (lw + rw, next(serial), node))
|
|
47
|
+
except IndexError:
|
|
48
|
+
assert isinstance(left, cls)
|
|
49
|
+
return left
|
|
50
|
+
|
|
51
|
+
def decode(self, bitstream: t.Iterator[bool]) -> T:
|
|
52
|
+
node = self.right if next(bitstream) else self.left
|
|
53
|
+
if isinstance(node, self.__class__):
|
|
54
|
+
return node.decode(bitstream)
|
|
55
|
+
else:
|
|
56
|
+
return t.cast(T, node)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
def split_count(v: bytes) -> tuple[int, bytes]:
|
|
60
|
+
if v[0] & 128:
|
|
61
|
+
len_count = v[0] - 128
|
|
62
|
+
length = 0
|
|
63
|
+
for i in range(len_count):
|
|
64
|
+
length <<= 8
|
|
65
|
+
length += v[i + 1]
|
|
66
|
+
else:
|
|
67
|
+
len_count = 0
|
|
68
|
+
length = int(v[0])
|
|
69
|
+
return length, v[len_count + 1 :]
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def asn1_string(v: bytes) -> str:
|
|
73
|
+
assert v[0] == 12
|
|
74
|
+
length, rest = split_count(v[1:])
|
|
75
|
+
result = rest.decode()
|
|
76
|
+
assert len(result) == length
|
|
77
|
+
return result
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
def asn1_bytes(v: bytes) -> bytes:
|
|
81
|
+
assert v[0] == 4
|
|
82
|
+
length, result = split_count(v[1:])
|
|
83
|
+
assert len(result) == length
|
|
84
|
+
return result
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
def cert_version(cert: x509.Certificate) -> str:
|
|
88
|
+
return next(
|
|
89
|
+
(
|
|
90
|
+
asn1_string(ext.value.value)
|
|
91
|
+
for ext in cert.extensions
|
|
92
|
+
if ext.oid.dotted_string == RH_VERSION_OID
|
|
93
|
+
),
|
|
94
|
+
"1.0",
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def is_v1_entitlement(cert: x509.Certificate) -> bool:
|
|
99
|
+
return any((ext for ext in cert.extensions if ext.oid.dotted_string == RH_ORDER_NAME_OID))
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def v1_paths(cert: x509.Certificate) -> t.Iterator[str]:
|
|
103
|
+
for ext in cert.extensions:
|
|
104
|
+
if V1_PATH_OID_REGEX.match(ext.oid.dotted_string):
|
|
105
|
+
yield asn1_string(ext.value.value)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def check_path_v1(cert: x509.Certificate, normalized_path: str) -> bool:
|
|
109
|
+
assert is_v1_entitlement(cert)
|
|
110
|
+
for cert_path in v1_paths(cert):
|
|
111
|
+
# We build a regex here, nicely escaped, from the cert_path,
|
|
112
|
+
# that translates the '$variables' to regex wildcards.
|
|
113
|
+
path_regex = (
|
|
114
|
+
r"^"
|
|
115
|
+
+ r"[^/]+".join(map(re.escape, re.split(r"\$[^/]*", cert_path.strip("/"))))
|
|
116
|
+
+ r"($|/)"
|
|
117
|
+
)
|
|
118
|
+
if re.match(path_regex, normalized_path):
|
|
119
|
+
return True
|
|
120
|
+
return False
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
def bitstream(data: bytes) -> t.Iterator[bool]:
|
|
124
|
+
for b in data:
|
|
125
|
+
for i in range(8):
|
|
126
|
+
yield (b << i) & 128 != 0
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
class Entitlement:
|
|
130
|
+
def __init__(self, cert: x509.Certificate):
|
|
131
|
+
payload = self._read_payload(cert)
|
|
132
|
+
lex_data, node_count, path_data = self._split_payload(payload)
|
|
133
|
+
word_tree = self._build_word_tree(lex_data)
|
|
134
|
+
self._path_tree = self._build_path_tree(word_tree, node_count, path_data)
|
|
135
|
+
|
|
136
|
+
@staticmethod
|
|
137
|
+
def _read_payload(cert: x509.Certificate) -> bytes:
|
|
138
|
+
return asn1_bytes(
|
|
139
|
+
next(
|
|
140
|
+
ext.value.value
|
|
141
|
+
for ext in cert.extensions
|
|
142
|
+
if ext.oid.dotted_string == RH_ENTITLEMENT_OID
|
|
143
|
+
)
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
@staticmethod
|
|
147
|
+
def _split_payload(payload: bytes) -> tuple[bytes, int, bytes]:
|
|
148
|
+
decobj = zlib.decompressobj()
|
|
149
|
+
lex_data = decobj.decompress(payload)
|
|
150
|
+
node_count, path_data = split_count(decobj.unused_data)
|
|
151
|
+
return lex_data, node_count, path_data
|
|
152
|
+
|
|
153
|
+
@staticmethod
|
|
154
|
+
def _build_word_tree(lex_data: bytes) -> "HuffmannNode[str]":
|
|
155
|
+
words = [item.decode() for item in lex_data.split(b"\x00")]
|
|
156
|
+
assert len(words) > 1
|
|
157
|
+
return HuffmannNode.build_tree(words)
|
|
158
|
+
|
|
159
|
+
@staticmethod
|
|
160
|
+
def _build_path_tree(
|
|
161
|
+
word_tree: "HuffmannNode[str]", node_count: int, path_data: bytes
|
|
162
|
+
) -> RecursiveDict:
|
|
163
|
+
path_nodes: list[RecursiveDict] = [{} for _ in range(node_count)]
|
|
164
|
+
address_tree: "HuffmannNode[RecursiveDict]" = HuffmannNode.build_tree(path_nodes[1:])
|
|
165
|
+
bitsource = bitstream(path_data)
|
|
166
|
+
for node in path_nodes:
|
|
167
|
+
while True:
|
|
168
|
+
word = word_tree.decode(bitsource)
|
|
169
|
+
if word == "":
|
|
170
|
+
break
|
|
171
|
+
assert word not in node
|
|
172
|
+
node[word] = address_tree.decode(bitsource)
|
|
173
|
+
return path_nodes[0]
|
|
174
|
+
|
|
175
|
+
@classmethod
|
|
176
|
+
def _check_path_tree(cls, node: RecursiveDict, segments: t.List[str]) -> bool:
|
|
177
|
+
if len(node) == 0:
|
|
178
|
+
return True
|
|
179
|
+
if len(segments) == 0:
|
|
180
|
+
return False
|
|
181
|
+
segment = segments[0]
|
|
182
|
+
segments = segments[1:]
|
|
183
|
+
for key, child in node.items():
|
|
184
|
+
if (segment == key or key[0] == "$") and cls._check_path_tree(child, segments):
|
|
185
|
+
return True
|
|
186
|
+
return False
|
|
187
|
+
|
|
188
|
+
def check_path(self, normalized_path: str) -> bool:
|
|
189
|
+
segments = normalized_path.split("/")
|
|
190
|
+
return self._check_path_tree(self._path_tree, segments)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
def check_path(cert: x509.Certificate, path: str) -> bool:
|
|
194
|
+
normalized_path = re.sub(r"/+", "/", path.strip("/"))
|
|
195
|
+
if int(cert_version(cert).split(".")[0]) >= 3:
|
|
196
|
+
return Entitlement(cert).check_path(normalized_path)
|
|
197
|
+
else:
|
|
198
|
+
return check_path_v1(cert, normalized_path)
|