katello 4.5.1 → 4.8.0.rc2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.1
4
+ version: 4.8.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-03 00:00:00.000000000 Z
11
+ date: 2023-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -234,26 +234,6 @@ dependencies:
234
234
  - - ">="
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0'
237
- - !ruby/object:Gem::Dependency
238
- name: runcible
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - ">="
242
- - !ruby/object:Gem::Version
243
- version: 2.13.0
244
- - - "<"
245
- - !ruby/object:Gem::Version
246
- version: 3.0.0
247
- type: :runtime
248
- prerelease: false
249
- version_requirements: !ruby/object:Gem::Requirement
250
- requirements:
251
- - - ">="
252
- - !ruby/object:Gem::Version
253
- version: 2.13.0
254
- - - "<"
255
- - !ruby/object:Gem::Version
256
- version: 3.0.0
257
237
  - !ruby/object:Gem::Dependency
258
238
  name: anemone
259
239
  requirement: !ruby/object:Gem::Requirement
@@ -268,140 +248,126 @@ dependencies:
268
248
  - - ">="
269
249
  - !ruby/object:Gem::Version
270
250
  version: '0'
271
- - !ruby/object:Gem::Dependency
272
- name: faraday
273
- requirement: !ruby/object:Gem::Requirement
274
- requirements:
275
- - - "<"
276
- - !ruby/object:Gem::Version
277
- version: '1.9'
278
- type: :runtime
279
- prerelease: false
280
- version_requirements: !ruby/object:Gem::Requirement
281
- requirements:
282
- - - "<"
283
- - !ruby/object:Gem::Version
284
- version: '1.9'
285
251
  - !ruby/object:Gem::Dependency
286
252
  name: pulpcore_client
287
253
  requirement: !ruby/object:Gem::Requirement
288
254
  requirements:
289
255
  - - ">="
290
256
  - !ruby/object:Gem::Version
291
- version: 3.18.0
257
+ version: 3.22.0
292
258
  - - "<"
293
259
  - !ruby/object:Gem::Version
294
- version: 3.19.0
260
+ version: 3.23.0
295
261
  type: :runtime
296
262
  prerelease: false
297
263
  version_requirements: !ruby/object:Gem::Requirement
298
264
  requirements:
299
265
  - - ">="
300
266
  - !ruby/object:Gem::Version
301
- version: 3.18.0
267
+ version: 3.22.0
302
268
  - - "<"
303
269
  - !ruby/object:Gem::Version
304
- version: 3.19.0
270
+ version: 3.23.0
305
271
  - !ruby/object:Gem::Dependency
306
272
  name: pulp_file_client
307
273
  requirement: !ruby/object:Gem::Requirement
308
274
  requirements:
309
275
  - - ">="
310
276
  - !ruby/object:Gem::Version
311
- version: 1.10.0
277
+ version: 1.12.0
312
278
  - - "<"
313
279
  - !ruby/object:Gem::Version
314
- version: 1.11.0
280
+ version: '1.13'
315
281
  type: :runtime
316
282
  prerelease: false
317
283
  version_requirements: !ruby/object:Gem::Requirement
318
284
  requirements:
319
285
  - - ">="
320
286
  - !ruby/object:Gem::Version
321
- version: 1.10.0
287
+ version: 1.12.0
322
288
  - - "<"
323
289
  - !ruby/object:Gem::Version
324
- version: 1.11.0
290
+ version: '1.13'
325
291
  - !ruby/object:Gem::Dependency
326
292
  name: pulp_ansible_client
327
293
  requirement: !ruby/object:Gem::Requirement
328
294
  requirements:
329
295
  - - ">="
330
296
  - !ruby/object:Gem::Version
331
- version: 0.13.1
297
+ version: 0.16.0
332
298
  - - "<"
333
299
  - !ruby/object:Gem::Version
334
- version: '0.14'
300
+ version: '0.17'
335
301
  type: :runtime
336
302
  prerelease: false
337
303
  version_requirements: !ruby/object:Gem::Requirement
338
304
  requirements:
339
305
  - - ">="
340
306
  - !ruby/object:Gem::Version
341
- version: 0.13.1
307
+ version: 0.16.0
342
308
  - - "<"
343
309
  - !ruby/object:Gem::Version
344
- version: '0.14'
310
+ version: '0.17'
345
311
  - !ruby/object:Gem::Dependency
346
312
  name: pulp_container_client
347
313
  requirement: !ruby/object:Gem::Requirement
348
314
  requirements:
349
315
  - - ">="
350
316
  - !ruby/object:Gem::Version
351
- version: 2.10.0
317
+ version: 2.14.0
352
318
  - - "<"
353
319
  - !ruby/object:Gem::Version
354
- version: 2.11.0
320
+ version: 2.15.0
355
321
  type: :runtime
356
322
  prerelease: false
357
323
  version_requirements: !ruby/object:Gem::Requirement
358
324
  requirements:
359
325
  - - ">="
360
326
  - !ruby/object:Gem::Version
361
- version: 2.10.0
327
+ version: 2.14.0
362
328
  - - "<"
363
329
  - !ruby/object:Gem::Version
364
- version: 2.11.0
330
+ version: 2.15.0
365
331
  - !ruby/object:Gem::Dependency
366
332
  name: pulp_deb_client
367
333
  requirement: !ruby/object:Gem::Requirement
368
334
  requirements:
369
335
  - - ">="
370
336
  - !ruby/object:Gem::Version
371
- version: 2.18.0
337
+ version: 2.20.0
372
338
  - - "<"
373
339
  - !ruby/object:Gem::Version
374
- version: 2.19.0
340
+ version: '2.21'
375
341
  type: :runtime
376
342
  prerelease: false
377
343
  version_requirements: !ruby/object:Gem::Requirement
378
344
  requirements:
379
345
  - - ">="
380
346
  - !ruby/object:Gem::Version
381
- version: 2.18.0
347
+ version: 2.20.0
382
348
  - - "<"
383
349
  - !ruby/object:Gem::Version
384
- version: 2.19.0
350
+ version: '2.21'
385
351
  - !ruby/object:Gem::Dependency
386
352
  name: pulp_rpm_client
387
353
  requirement: !ruby/object:Gem::Requirement
388
354
  requirements:
389
355
  - - ">="
390
356
  - !ruby/object:Gem::Version
391
- version: 3.17.0
357
+ version: 3.19.0
392
358
  - - "<"
393
359
  - !ruby/object:Gem::Version
394
- version: 3.18.0
360
+ version: 3.20.0
395
361
  type: :runtime
396
362
  prerelease: false
397
363
  version_requirements: !ruby/object:Gem::Requirement
398
364
  requirements:
399
365
  - - ">="
400
366
  - !ruby/object:Gem::Version
401
- version: 3.17.0
367
+ version: 3.19.0
402
368
  - - "<"
403
369
  - !ruby/object:Gem::Version
404
- version: 3.18.0
370
+ version: 3.20.0
405
371
  - !ruby/object:Gem::Dependency
406
372
  name: pulp_certguard_client
407
373
  requirement: !ruby/object:Gem::Requirement
@@ -422,20 +388,20 @@ dependencies:
422
388
  requirements:
423
389
  - - ">="
424
390
  - !ruby/object:Gem::Version
425
- version: 3.6.0
391
+ version: 3.8.0
426
392
  - - "<"
427
393
  - !ruby/object:Gem::Version
428
- version: 3.7.0
394
+ version: '3.9'
429
395
  type: :runtime
430
396
  prerelease: false
431
397
  version_requirements: !ruby/object:Gem::Requirement
432
398
  requirements:
433
399
  - - ">="
434
400
  - !ruby/object:Gem::Version
435
- version: 3.6.0
401
+ version: 3.8.0
436
402
  - - "<"
437
403
  - !ruby/object:Gem::Version
438
- version: 3.7.0
404
+ version: '3.9'
439
405
  - !ruby/object:Gem::Dependency
440
406
  name: pulp_ostree_client
441
407
  requirement: !ruby/object:Gem::Requirement
@@ -759,6 +725,7 @@ files:
759
725
  - app/controllers/katello/api/v2/docker_tags_controller.rb
760
726
  - app/controllers/katello/api/v2/environments_controller.rb
761
727
  - app/controllers/katello/api/v2/errata_controller.rb
728
+ - app/controllers/katello/api/v2/exports_controller.rb
762
729
  - app/controllers/katello/api/v2/file_units_controller.rb
763
730
  - app/controllers/katello/api/v2/generic_content_units_controller.rb
764
731
  - app/controllers/katello/api/v2/host_autocomplete_controller.rb
@@ -803,6 +770,7 @@ files:
803
770
  - app/controllers/katello/concerns/api/v2/repository_content_controller.rb
804
771
  - app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb
805
772
  - app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb
773
+ - app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb
806
774
  - app/controllers/katello/concerns/filtered_auto_complete_search.rb
807
775
  - app/controllers/katello/concerns/hosts_controller_extensions.rb
808
776
  - app/controllers/katello/concerns/organizations_controller_extensions.rb
@@ -851,7 +819,8 @@ files:
851
819
  - app/lib/actions/candlepin/owner/destroy_imports.rb
852
820
  - app/lib/actions/candlepin/owner/import.rb
853
821
  - app/lib/actions/candlepin/owner/import_products.rb
854
- - app/lib/actions/candlepin/owner/upstream_export.rb
822
+ - app/lib/actions/candlepin/owner/retrieve_upstream_export.rb
823
+ - app/lib/actions/candlepin/owner/start_upstream_export.rb
855
824
  - app/lib/actions/candlepin/owner/upstream_update.rb
856
825
  - app/lib/actions/candlepin/product/content_add.rb
857
826
  - app/lib/actions/candlepin/product/content_create.rb
@@ -864,6 +833,7 @@ files:
864
833
  - app/lib/actions/candlepin/product/delete_subscriptions.rb
865
834
  - app/lib/actions/candlepin/product/destroy.rb
866
835
  - app/lib/actions/candlepin/product/update.rb
836
+ - app/lib/actions/candlepin/upstream_abstract_async_task.rb
867
837
  - app/lib/actions/helpers/notifications.rb
868
838
  - app/lib/actions/helpers/output_propagator.rb
869
839
  - app/lib/actions/helpers/presenter.rb
@@ -874,6 +844,7 @@ files:
874
844
  - app/lib/actions/katello/activation_key/update.rb
875
845
  - app/lib/actions/katello/agent/dispatch_history_presenter.rb
876
846
  - app/lib/actions/katello/agent_action.rb
847
+ - app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb
877
848
  - app/lib/actions/katello/alternate_content_source/create.rb
878
849
  - app/lib/actions/katello/alternate_content_source/destroy.rb
879
850
  - app/lib/actions/katello/alternate_content_source/refresh.rb
@@ -964,18 +935,15 @@ files:
964
935
  - app/lib/actions/katello/product/update.rb
965
936
  - app/lib/actions/katello/product/update_http_proxy.rb
966
937
  - app/lib/actions/katello/provider/destroy.rb
967
- - app/lib/actions/katello/pulp_selector.rb
968
938
  - app/lib/actions/katello/repository/bulk_metadata_generate.rb
969
939
  - app/lib/actions/katello/repository/capsule_sync.rb
970
940
  - app/lib/actions/katello/repository/check_matching_content.rb
971
941
  - app/lib/actions/katello/repository/clone_contents.rb
972
942
  - app/lib/actions/katello/repository/clone_to_environment.rb
973
943
  - app/lib/actions/katello/repository/clone_to_version.rb
974
- - app/lib/actions/katello/repository/correct_checksum.rb
975
944
  - app/lib/actions/katello/repository/create.rb
976
945
  - app/lib/actions/katello/repository/create_root.rb
977
946
  - app/lib/actions/katello/repository/destroy.rb
978
- - app/lib/actions/katello/repository/destroy_package_group.rb
979
947
  - app/lib/actions/katello/repository/discover.rb
980
948
  - app/lib/actions/katello/repository/errata_mail.rb
981
949
  - app/lib/actions/katello/repository/fetch_pxe_files.rb
@@ -1000,7 +968,6 @@ files:
1000
968
  - app/lib/actions/katello/repository/update_metadata_sync.rb
1001
969
  - app/lib/actions/katello/repository/update_redhat_repository.rb
1002
970
  - app/lib/actions/katello/repository/upload_files.rb
1003
- - app/lib/actions/katello/repository/upload_package_group.rb
1004
971
  - app/lib/actions/katello/repository/verify_checksum.rb
1005
972
  - app/lib/actions/katello/repository_set/disable_repository.rb
1006
973
  - app/lib/actions/katello/repository_set/enable_repository.rb
@@ -1026,51 +993,6 @@ files:
1026
993
  - app/lib/actions/middleware/record_smart_proxy_sync_history.rb
1027
994
  - app/lib/actions/middleware/remote_action.rb
1028
995
  - app/lib/actions/middleware/skip_if_matching_content.rb
1029
- - app/lib/actions/pulp/abstract.rb
1030
- - app/lib/actions/pulp/abstract_async_task.rb
1031
- - app/lib/actions/pulp/abstract_async_task_group.rb
1032
- - app/lib/actions/pulp/consumer/sync_capsule.rb
1033
- - app/lib/actions/pulp/consumer/unassociate_units.rb
1034
- - app/lib/actions/pulp/expect_one_task.rb
1035
- - app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb
1036
- - app/lib/actions/pulp/orchestration/repository/copy_all_units.rb
1037
- - app/lib/actions/pulp/orchestration/repository/delete.rb
1038
- - app/lib/actions/pulp/orchestration/repository/refresh.rb
1039
- - app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb
1040
- - app/lib/actions/pulp/orchestration/repository/refresh_repos.rb
1041
- - app/lib/actions/pulp/orchestration/repository/remove_units.rb
1042
- - app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb
1043
- - app/lib/actions/pulp/orchestration/repository/sync.rb
1044
- - app/lib/actions/pulp/orchestration/repository/upload_content.rb
1045
- - app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb
1046
- - app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb
1047
- - app/lib/actions/pulp/repository/abstract_copy_content.rb
1048
- - app/lib/actions/pulp/repository/abstract_remove_content.rb
1049
- - app/lib/actions/pulp/repository/clear.rb
1050
- - app/lib/actions/pulp/repository/copy_all_units.rb
1051
- - app/lib/actions/pulp/repository/copy_units.rb
1052
- - app/lib/actions/pulp/repository/create.rb
1053
- - app/lib/actions/pulp/repository/create_in_plan.rb
1054
- - app/lib/actions/pulp/repository/create_upload_request.rb
1055
- - app/lib/actions/pulp/repository/delete_upload_request.rb
1056
- - app/lib/actions/pulp/repository/destroy.rb
1057
- - app/lib/actions/pulp/repository/distributor_publish.rb
1058
- - app/lib/actions/pulp/repository/download.rb
1059
- - app/lib/actions/pulp/repository/import_upload.rb
1060
- - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
1061
- - app/lib/actions/pulp/repository/presenters/deb_presenter.rb
1062
- - app/lib/actions/pulp/repository/presenters/docker_presenter.rb
1063
- - app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb
1064
- - app/lib/actions/pulp/repository/presenters/yum_presenter.rb
1065
- - app/lib/actions/pulp/repository/refresh.rb
1066
- - app/lib/actions/pulp/repository/regenerate_applicability.rb
1067
- - app/lib/actions/pulp/repository/remove_distribution.rb
1068
- - app/lib/actions/pulp/repository/remove_units.rb
1069
- - app/lib/actions/pulp/repository/sync.rb
1070
- - app/lib/actions/pulp/repository/upload_file.rb
1071
- - app/lib/actions/pulp/repository_group/create.rb
1072
- - app/lib/actions/pulp/repository_group/delete.rb
1073
- - app/lib/actions/pulp/repository_group/export.rb
1074
996
  - app/lib/actions/pulp3/abstract.rb
1075
997
  - app/lib/actions/pulp3/abstract_async_task.rb
1076
998
  - app/lib/actions/pulp3/alternate_content_source/create.rb
@@ -1078,6 +1000,7 @@ files:
1078
1000
  - app/lib/actions/pulp3/alternate_content_source/delete.rb
1079
1001
  - app/lib/actions/pulp3/alternate_content_source/delete_remote.rb
1080
1002
  - app/lib/actions/pulp3/alternate_content_source/refresh.rb
1003
+ - app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb
1081
1004
  - app/lib/actions/pulp3/alternate_content_source/update.rb
1082
1005
  - app/lib/actions/pulp3/alternate_content_source/update_remote.rb
1083
1006
  - app/lib/actions/pulp3/capsule_content/generate_metadata.rb
@@ -1122,6 +1045,7 @@ files:
1122
1045
  - app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb
1123
1046
  - app/lib/actions/pulp3/orchestration/repository/update.rb
1124
1047
  - app/lib/actions/pulp3/orchestration/repository/upload_content.rb
1048
+ - app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb
1125
1049
  - app/lib/actions/pulp3/orphan_cleanup/delete_orphan_distributions.rb
1126
1050
  - app/lib/actions/pulp3/orphan_cleanup/delete_orphan_remotes.rb
1127
1051
  - app/lib/actions/pulp3/orphan_cleanup/delete_orphan_repository_versions.rb
@@ -1209,11 +1133,13 @@ files:
1209
1133
  - app/lib/katello/resources/candlepin/subscription.rb
1210
1134
  - app/lib/katello/resources/candlepin/upstream_consumer.rb
1211
1135
  - app/lib/katello/resources/candlepin/upstream_entitlement.rb
1136
+ - app/lib/katello/resources/candlepin/upstream_job.rb
1212
1137
  - app/lib/katello/resources/candlepin/upstream_owner.rb
1213
1138
  - app/lib/katello/resources/candlepin/upstream_pool.rb
1214
1139
  - app/lib/katello/resources/cdn.rb
1215
1140
  - app/lib/katello/resources/cdn/katello_cdn.rb
1216
1141
  - app/lib/katello/resources/registry.rb
1142
+ - app/lib/katello/util/candlepin_repository_checker.rb
1217
1143
  - app/lib/katello/util/cdn_var_substitutor.rb
1218
1144
  - app/lib/katello/util/data.rb
1219
1145
  - app/lib/katello/util/deduplication_migrator.rb
@@ -1225,7 +1151,6 @@ files:
1225
1151
  - app/lib/katello/util/model.rb
1226
1152
  - app/lib/katello/util/module_stream_clause_generator.rb
1227
1153
  - app/lib/katello/util/package.rb
1228
- - app/lib/katello/util/package_clause_generator.rb
1229
1154
  - app/lib/katello/util/package_filter.rb
1230
1155
  - app/lib/katello/util/path_with_substitutions.rb
1231
1156
  - app/lib/katello/util/pulpcore_content_filters.rb
@@ -1235,6 +1160,7 @@ files:
1235
1160
  - app/lib/katello/util/task_status.rb
1236
1161
  - app/lib/katello/util/url_matcher.rb
1237
1162
  - app/lib/katello/validators/alternate_content_source_path_validator.rb
1163
+ - app/lib/katello/validators/alternate_content_source_products_validator.rb
1238
1164
  - app/lib/katello/validators/container_image_name_validator.rb
1239
1165
  - app/lib/katello/validators/content_default_http_proxy_setting_validator.rb
1240
1166
  - app/lib/katello/validators/content_validator.rb
@@ -1243,6 +1169,7 @@ files:
1243
1169
  - app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
1244
1170
  - app/lib/katello/validators/content_view_filter_version_validator.rb
1245
1171
  - app/lib/katello/validators/environment_docker_repositories_validator.rb
1172
+ - app/lib/katello/validators/generated_content_view_validator.rb
1246
1173
  - app/lib/katello/validators/gpg_key_content_type_validator.rb
1247
1174
  - app/lib/katello/validators/gpg_key_content_validator.rb
1248
1175
  - app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb
@@ -1266,6 +1193,7 @@ files:
1266
1193
  - app/models/katello/activation_key_purpose_addon.rb
1267
1194
  - app/models/katello/agent/dispatch_history.rb
1268
1195
  - app/models/katello/alternate_content_source.rb
1196
+ - app/models/katello/alternate_content_source_product.rb
1269
1197
  - app/models/katello/ansible_collection.rb
1270
1198
  - app/models/katello/ansible_collection_tag.rb
1271
1199
  - app/models/katello/ansible_tag.rb
@@ -1326,9 +1254,12 @@ files:
1326
1254
  - app/models/katello/content_override.rb
1327
1255
  - app/models/katello/content_view.rb
1328
1256
  - app/models/katello/content_view_component.rb
1257
+ - app/models/katello/content_view_deb_filter.rb
1258
+ - app/models/katello/content_view_deb_filter_rule.rb
1329
1259
  - app/models/katello/content_view_docker_filter.rb
1330
1260
  - app/models/katello/content_view_docker_filter_rule.rb
1331
1261
  - app/models/katello/content_view_environment.rb
1262
+ - app/models/katello/content_view_environment_content_facet.rb
1332
1263
  - app/models/katello/content_view_erratum_filter.rb
1333
1264
  - app/models/katello/content_view_erratum_filter_rule.rb
1334
1265
  - app/models/katello/content_view_filter.rb
@@ -1380,8 +1311,6 @@ files:
1380
1311
  - app/models/katello/glue/candlepin/repository.rb
1381
1312
  - app/models/katello/glue/candlepin/subscription.rb
1382
1313
  - app/models/katello/glue/provider.rb
1383
- - app/models/katello/glue/pulp/pulp_errors.rb
1384
- - app/models/katello/glue/pulp/repo.rb
1385
1314
  - app/models/katello/glue/pulp/repos.rb
1386
1315
  - app/models/katello/hash_util.rb
1387
1316
  - app/models/katello/host/content_facet.rb
@@ -1421,8 +1350,6 @@ files:
1421
1350
  - app/models/katello/pulp3/content_guard.rb
1422
1351
  - app/models/katello/pulp3/distribution_reference.rb
1423
1352
  - app/models/katello/pulp3/repository_reference.rb
1424
- - app/models/katello/pulp_sync_status.rb
1425
- - app/models/katello/pulp_task_status.rb
1426
1353
  - app/models/katello/purpose_addon.rb
1427
1354
  - app/models/katello/purpose_addons_status.rb
1428
1355
  - app/models/katello/purpose_role_status.rb
@@ -1488,7 +1415,6 @@ files:
1488
1415
  - app/services/katello/candlepin/message_handler.rb
1489
1416
  - app/services/katello/candlepin/pool_service.rb
1490
1417
  - app/services/katello/candlepin/system_purpose.rb
1491
- - app/services/katello/candlepin/upstream_consumer.rb
1492
1418
  - app/services/katello/candlepin_event_listener.rb
1493
1419
  - app/services/katello/component_view_presenter.rb
1494
1420
  - app/services/katello/content_unit_indexer.rb
@@ -1505,16 +1431,6 @@ files:
1505
1431
  - app/services/katello/product_content_importer.rb
1506
1432
  - app/services/katello/proxy_status/pulp.rb
1507
1433
  - app/services/katello/proxy_status/pulp_node.rb
1508
- - app/services/katello/pulp/content.rb
1509
- - app/services/katello/pulp/importer_comparison.rb
1510
- - app/services/katello/pulp/repository.rb
1511
- - app/services/katello/pulp/repository/deb.rb
1512
- - app/services/katello/pulp/repository/docker.rb
1513
- - app/services/katello/pulp/repository/file.rb
1514
- - app/services/katello/pulp/repository/yum.rb
1515
- - app/services/katello/pulp/server.rb
1516
- - app/services/katello/pulp/simple_package.rb
1517
- - app/services/katello/pulp/smart_proxy_repository.rb
1518
1434
  - app/services/katello/pulp3/alternate_content_source.rb
1519
1435
  - app/services/katello/pulp3/ansible_collection.rb
1520
1436
  - app/services/katello/pulp3/api/ansible_collection.rb
@@ -1527,6 +1443,8 @@ files:
1527
1443
  - app/services/katello/pulp3/api/yum.rb
1528
1444
  - app/services/katello/pulp3/content.rb
1529
1445
  - app/services/katello/pulp3/content_view_version/export.rb
1446
+ - app/services/katello/pulp3/content_view_version/export_validation_error.rb
1447
+ - app/services/katello/pulp3/content_view_version/export_validator.rb
1530
1448
  - app/services/katello/pulp3/content_view_version/import.rb
1531
1449
  - app/services/katello/pulp3/content_view_version/import_export_common.rb
1532
1450
  - app/services/katello/pulp3/content_view_version/import_gpg_keys.rb
@@ -1568,6 +1486,7 @@ files:
1568
1486
  - app/services/katello/registration_manager.rb
1569
1487
  - app/services/katello/repository_type.rb
1570
1488
  - app/services/katello/repository_type_manager.rb
1489
+ - app/services/katello/simple_package.rb
1571
1490
  - app/services/katello/smart_proxy_helper.rb
1572
1491
  - app/services/katello/ui_notifications/abstract_notification.rb
1573
1492
  - app/services/katello/ui_notifications/content_view/auto_publish_failure.rb
@@ -1630,8 +1549,10 @@ files:
1630
1549
  - app/views/katello/api/v2/activation_keys/subscriptions.json.rabl
1631
1550
  - app/views/katello/api/v2/alternate_content_sources/base.json.rabl
1632
1551
  - app/views/katello/api/v2/alternate_content_sources/index.json.rabl
1552
+ - app/views/katello/api/v2/alternate_content_sources/permissions.rabl
1633
1553
  - app/views/katello/api/v2/alternate_content_sources/show.json.rabl
1634
1554
  - app/views/katello/api/v2/ansible_collections/base.json.rabl
1555
+ - app/views/katello/api/v2/ansible_collections/compare.json.rabl
1635
1556
  - app/views/katello/api/v2/ansible_collections/index.json.rabl
1636
1557
  - app/views/katello/api/v2/ansible_collections/show.json.rabl
1637
1558
  - app/views/katello/api/v2/capsule_content/lifecycle_environments.json.rabl
@@ -1758,6 +1679,7 @@ files:
1758
1679
  - app/views/katello/api/v2/layouts/index.json.erb
1759
1680
  - app/views/katello/api/v2/layouts/resource.json.erb
1760
1681
  - app/views/katello/api/v2/module_streams/base.json.rabl
1682
+ - app/views/katello/api/v2/module_streams/compare.json.rabl
1761
1683
  - app/views/katello/api/v2/module_streams/index.json.rabl
1762
1684
  - app/views/katello/api/v2/module_streams/name_stream.json.rabl
1763
1685
  - app/views/katello/api/v2/module_streams/name_streams.json.rabl
@@ -1786,6 +1708,7 @@ files:
1786
1708
  - app/views/katello/api/v2/providers/products.json.rabl
1787
1709
  - app/views/katello/api/v2/providers/show.json.rabl
1788
1710
  - app/views/katello/api/v2/repositories/base.json.rabl
1711
+ - app/views/katello/api/v2/repositories/compare.json.rabl
1789
1712
  - app/views/katello/api/v2/repositories/index.json.rabl
1790
1713
  - app/views/katello/api/v2/repositories/package_group_categories.json.rabl
1791
1714
  - app/views/katello/api/v2/repositories/package_groups.json.rabl
@@ -1831,6 +1754,7 @@ files:
1831
1754
  - app/views/katello/errata_mailer/promote_errata.text.erb
1832
1755
  - app/views/katello/errata_mailer/sync_errata.html.erb
1833
1756
  - app/views/katello/errata_mailer/sync_errata.text.erb
1757
+ - app/views/katello/hosts/_errata_counts.html.erb
1834
1758
  - app/views/katello/layouts/foreman_with_bastion.html.erb
1835
1759
  - app/views/katello/layouts/katello.html.erb
1836
1760
  - app/views/katello/layouts/react.html.erb
@@ -1853,6 +1777,7 @@ files:
1853
1777
  - app/views/overrides/organizations/_index_header_override.html.erb
1854
1778
  - app/views/overrides/organizations/_index_row_override.html.erb
1855
1779
  - app/views/overrides/organizations/_step_1_override.html.erb
1780
+ - app/views/overrides/smart_proxies/_acs_http_proxy.html.erb
1856
1781
  - app/views/overrides/smart_proxies/_download_policy.erb
1857
1782
  - app/views/overrides/smart_proxies/_environment_tab.html.erb
1858
1783
  - app/views/overrides/smart_proxies/_environment_tab_pane.html.erb
@@ -2173,6 +2098,7 @@ files:
2173
2098
  - db/migrate/20201012172713_remove_gpg_key_perms.rb
2174
2099
  - db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb
2175
2100
  - db/migrate/20201021150008_add_import_only_to_katello_content_view.rb
2101
+ - db/migrate/20201116161820_create_content_view_deb_filter_rules.rb
2176
2102
  - db/migrate/20201119211133_pulp3_migration_progress.rb
2177
2103
  - db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb
2178
2104
  - db/migrate/20210122200618_create_katello_agent_dispatch_history.rb
@@ -2224,6 +2150,17 @@ files:
2224
2150
  - db/migrate/20220405220616_update_cdn_configuration_type.rb
2225
2151
  - db/migrate/20220419193414_content_settings_to_dsl_category.rb
2226
2152
  - db/migrate/20220428203334_add_last_refreshed_to_katello_alternate_content_sources.rb
2153
+ - db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb
2154
+ - db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb
2155
+ - db/migrate/20220610165621_add_repositories_and_products_to_acs.rb
2156
+ - db/migrate/20220730033504_update_custom_cdn.rb
2157
+ - db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb
2158
+ - db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb
2159
+ - db/migrate/20220929204746_add_content_view_environment_content_facet.rb
2160
+ - db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb
2161
+ - db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb
2162
+ - db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb
2163
+ - db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb
2227
2164
  - db/seeds.d/101-locations.rb
2228
2165
  - db/seeds.d/102-organizations.rb
2229
2166
  - db/seeds.d/104-proxy.rb
@@ -4039,10 +3976,12 @@ files:
4039
3976
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.module.js
4040
3977
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js
4041
3978
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-type.filter.js
3979
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js
4042
3980
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
4043
3981
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js
4044
3982
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js
4045
3983
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js
3984
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
4046
3985
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
4047
3986
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
4048
3987
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
@@ -4121,115 +4060,9 @@ files:
4121
4060
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4122
4061
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html
4123
4062
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js
4124
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js
4125
4063
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.module.js
4126
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js
4127
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js
4128
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js
4129
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
4130
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js
4131
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js
4132
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js
4133
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4134
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
4135
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
4136
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
4137
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4138
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js
4139
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js
4140
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js
4141
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
4142
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
4143
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html
4144
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js
4145
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js
4146
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js
4147
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js
4148
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js
4149
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js
4150
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
4151
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js
4152
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js
4153
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js
4154
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js
4155
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js
4156
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js
4157
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js
4158
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4159
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js
4160
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js
4161
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js
4162
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js
4163
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
4164
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
4165
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js
4166
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js
4167
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js
4168
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
4169
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
4170
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
4171
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js
4172
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js
4173
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js
4174
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js
4175
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js
4176
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
4177
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
4178
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js
4179
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js
4180
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html
4181
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
4182
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
4183
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
4184
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
4185
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
4186
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
4187
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
4188
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
4189
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4190
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
4191
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
4192
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
4193
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
4194
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4195
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
4196
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
4197
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
4198
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html
4199
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
4200
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js
4201
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
4202
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
4203
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
4204
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html
4205
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
4206
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
4207
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
4208
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
4209
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
4210
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
4211
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
4212
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4213
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
4214
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js
4215
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
4216
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js
4217
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js
4218
4064
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.factory.js
4219
4065
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js
4220
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
4221
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
4222
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
4223
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
4224
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
4225
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
4226
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
4227
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html
4228
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
4229
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
4230
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
4231
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
4232
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html
4233
4066
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/dates/dates.module.js
4234
4067
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/deb.factory.js
4235
4068
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.controller.js
@@ -4348,6 +4181,15 @@ files:
4348
4181
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/http-proxies/http-proxy.factory.js
4349
4182
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README
4350
4183
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
4184
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po
4185
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po
4186
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po
4187
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po
4188
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po
4189
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po
4190
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po
4191
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po
4192
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po
4351
4193
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
4352
4194
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/zanata.xml
4353
4195
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
@@ -4536,8 +4378,11 @@ files:
4536
4378
  - lib/katello/repository_types/python.rb
4537
4379
  - lib/katello/repository_types/yum.rb
4538
4380
  - lib/katello/scheduled_jobs.rb
4381
+ - lib/katello/tasks/check_candlepin_content.rake
4539
4382
  - lib/katello/tasks/clean_backend_objects.rake
4383
+ - lib/katello/tasks/clean_candlepin_orphaned_products.rake
4540
4384
  - lib/katello/tasks/clean_old_file_repos.rake
4385
+ - lib/katello/tasks/clean_orphaned_facets.rb
4541
4386
  - lib/katello/tasks/clean_published_repo_directories.rake
4542
4387
  - lib/katello/tasks/content_view_import_only.rake
4543
4388
  - lib/katello/tasks/delete_orphaned_content.rake
@@ -4549,6 +4394,7 @@ files:
4549
4394
  - lib/katello/tasks/pulp2to3_migrate_deb_attributes.rake
4550
4395
  - lib/katello/tasks/receptor/extract_orgs.rake
4551
4396
  - lib/katello/tasks/refresh_alternate_content_sources.rake
4397
+ - lib/katello/tasks/refresh_repos.rake
4552
4398
  - lib/katello/tasks/regenerate_ueber_certs.rake
4553
4399
  - lib/katello/tasks/reimport.rake
4554
4400
  - lib/katello/tasks/repository.rake
@@ -4566,6 +4412,8 @@ files:
4566
4412
  - lib/katello/tasks/upgrades/4.2/remove_checksum_values.rake
4567
4413
  - lib/katello/tasks/upgrades/4.3/fix_url_auth.rake
4568
4414
  - lib/katello/tasks/upgrades/4.4/publish_import_cvvs.rake
4415
+ - lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake
4416
+ - lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake
4569
4417
  - lib/katello/tasks/virt_who_report.rake
4570
4418
  - lib/katello/url_constrained_cookie_store.rb
4571
4419
  - lib/katello/version.rb
@@ -4588,6 +4436,7 @@ files:
4588
4436
  - locale/hi/katello.po
4589
4437
  - locale/it/katello.po
4590
4438
  - locale/ja/katello.po
4439
+ - locale/ka/katello.po
4591
4440
  - locale/katello.pot
4592
4441
  - locale/kn/katello.po
4593
4442
  - locale/ko/katello.po
@@ -4600,7 +4449,6 @@ files:
4600
4449
  - locale/ta/katello.po
4601
4450
  - locale/te/katello.po
4602
4451
  - locale/update-i18n
4603
- - locale/zanata.xml
4604
4452
  - locale/zh_CN/katello.po
4605
4453
  - locale/zh_TW/katello.po
4606
4454
  - package.json
@@ -4652,7 +4500,6 @@ files:
4652
4500
  - vendor/assets/javascripts/katello/jquery.hoverIntent.js
4653
4501
  - vendor/assets/javascripts/katello/jquery.periodicalupdater.js
4654
4502
  - vendor/assets/javascripts/katello/jquery.treeTable.js
4655
- - vendor/assets/javascripts/katello/jquery.trunk8.js
4656
4503
  - vendor/assets/stylesheets/katello/facebox.css
4657
4504
  - vendor/assets/stylesheets/katello/jquery-ui-1.8.11.custom.css.scss
4658
4505
  - vendor/assets/stylesheets/katello/jquery.multiselect.css
@@ -4695,9 +4542,11 @@ files:
4695
4542
  - webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap
4696
4543
  - webpack/components/EditableSwitch.js
4697
4544
  - webpack/components/EditableTextInput/EditableTextInput.js
4545
+ - webpack/components/EditableTextInput/PencilEditButton.js
4698
4546
  - webpack/components/EditableTextInput/__tests__/editableTextInput.test.js
4699
4547
  - webpack/components/EditableTextInput/editableTextInput.scss
4700
4548
  - webpack/components/EditableTextInput/index.js
4549
+ - webpack/components/Errata/errataHelpers.js
4701
4550
  - webpack/components/Errata/index.js
4702
4551
  - webpack/components/ErratumTypeLabel.js
4703
4552
  - webpack/components/Loading.js
@@ -4734,6 +4583,7 @@ files:
4734
4583
  - webpack/components/Table/PageControls.js
4735
4584
  - webpack/components/Table/TableHooks.js
4736
4585
  - webpack/components/Table/TableWrapper.js
4586
+ - webpack/components/Table/__test__/emptyStateMessage.test.js
4737
4587
  - webpack/components/Table/__test__/useBulkSelect.test.js
4738
4588
  - webpack/components/Table/components/SortableColumnHeaders.js
4739
4589
  - webpack/components/Table/components/TranslatedPlural.js
@@ -4771,6 +4621,7 @@ files:
4771
4621
  - webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss
4772
4622
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js
4773
4623
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js
4624
+ - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss
4774
4625
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js
4775
4626
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js
4776
4627
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js
@@ -4778,13 +4629,23 @@ files:
4778
4629
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js
4779
4630
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js
4780
4631
  - webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json
4632
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js
4633
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js
4634
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss
4635
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js
4636
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js
4637
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js
4638
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js
4639
+ - webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js
4781
4640
  - webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js
4641
+ - webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js
4782
4642
  - webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js
4783
4643
  - webpack/components/extensions/HostDetails/DetailsTabCards/RecentCommunicationCardExtensions.js
4784
4644
  - webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js
4785
4645
  - webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js
4786
4646
  - webpack/components/extensions/HostDetails/HostDetailsActions.js
4787
4647
  - webpack/components/extensions/HostDetails/HostDetailsConstants.js
4648
+ - webpack/components/extensions/HostDetails/HostDetailsReducer.js
4788
4649
  - webpack/components/extensions/HostDetails/HostDetailsSelectors.js
4789
4650
  - webpack/components/extensions/HostDetails/Tabs/ContentTab/EmptyPage.js
4790
4651
  - webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js
@@ -4918,6 +4779,7 @@ files:
4918
4779
  - webpack/global_test_setup.js
4919
4780
  - webpack/index.js
4920
4781
  - webpack/mockRequest.js
4782
+ - webpack/ouia_id_check.js
4921
4783
  - webpack/redux/OrganizationProducts/OrganizationProductsActions.js
4922
4784
  - webpack/redux/OrganizationProducts/OrganizationProductsConstants.js
4923
4785
  - webpack/redux/OrganizationProducts/OrganizationProductsReducer.js
@@ -4952,10 +4814,12 @@ files:
4952
4814
  - webpack/scenes/AlternateContentSources/ACSConstants.js
4953
4815
  - webpack/scenes/AlternateContentSources/ACSIndexPage.js
4954
4816
  - webpack/scenes/AlternateContentSources/ACSSelectors.js
4817
+ - webpack/scenes/AlternateContentSources/Acs.scss
4955
4818
  - webpack/scenes/AlternateContentSources/Create/ACSCreateContext.js
4956
4819
  - webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js
4957
4820
  - webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js
4958
4821
  - webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js
4822
+ - webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js
4959
4823
  - webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js
4960
4824
  - webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js
4961
4825
  - webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js
@@ -4964,40 +4828,25 @@ files:
4964
4828
  - webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js
4965
4829
  - webpack/scenes/AlternateContentSources/Create/__tests__/acsCreateData.fixtures.json
4966
4830
  - webpack/scenes/AlternateContentSources/Create/__tests__/contentCredentials.fixtures.json
4831
+ - webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json
4967
4832
  - webpack/scenes/AlternateContentSources/Create/__tests__/smartProxy.fixtures.json
4833
+ - webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js
4834
+ - webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js
4835
+ - webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js
4836
+ - webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js
4837
+ - webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js
4838
+ - webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js
4839
+ - webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js
4840
+ - webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js
4841
+ - webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json
4842
+ - webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json
4843
+ - webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json
4968
4844
  - webpack/scenes/AlternateContentSources/MainTable/ACSTable.js
4845
+ - webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss
4969
4846
  - webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json
4970
4847
  - webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js
4848
+ - webpack/scenes/AlternateContentSources/helpers.js
4971
4849
  - webpack/scenes/AlternateContentSources/index.js
4972
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js
4973
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js
4974
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js
4975
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js
4976
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js
4977
- - webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss
4978
- - webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js
4979
- - webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js
4980
- - webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js
4981
- - webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js
4982
- - webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js
4983
- - webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js
4984
- - webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js
4985
- - webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js
4986
- - webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js
4987
- - webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js
4988
- - webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap
4989
- - webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap
4990
- - webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap
4991
- - webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap
4992
- - webpack/scenes/AnsibleCollections/Details/index.js
4993
- - webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js
4994
- - webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js
4995
- - webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js
4996
- - webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js
4997
- - webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js
4998
- - webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap
4999
- - webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap
5000
- - webpack/scenes/AnsibleCollections/index.js
5001
4850
  - webpack/scenes/Content/ContentActions.js
5002
4851
  - webpack/scenes/Content/ContentConfig.js
5003
4852
  - webpack/scenes/Content/ContentConstants.js
@@ -5076,6 +4925,7 @@ files:
5076
4925
  - webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js
5077
4926
  - webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js
5078
4927
  - webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js
4928
+ - webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js
5079
4929
  - webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js
5080
4930
  - webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js
5081
4931
  - webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js
@@ -5086,11 +4936,12 @@ files:
5086
4936
  - webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js
5087
4937
  - webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js
5088
4938
  - webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js
4939
+ - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js
5089
4940
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js
5090
4941
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContent.fixtures.json
5091
4942
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js
5092
- - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json
5093
4943
  - webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js
4944
+ - webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js
5094
4945
  - webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js
5095
4946
  - webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.fixtures.json
5096
4947
  - webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js
@@ -5115,6 +4966,9 @@ files:
5115
4966
  - webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilterDetails.fixtures.json
5116
4967
  - webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json
5117
4968
  - webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json
4969
+ - webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json
4970
+ - webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json
4971
+ - webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json
5118
4972
  - webpack/scenes/ContentViews/Details/Filters/index.js
5119
4973
  - webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js
5120
4974
  - webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json
@@ -5144,6 +4998,33 @@ files:
5144
4998
  - webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json
5145
4999
  - webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json
5146
5000
  - webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js
5001
+ - webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js
5002
+ - webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss
5003
+ - webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js
5004
+ - webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js
5005
+ - webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js
5006
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json
5007
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js
5008
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json
5009
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json
5010
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json
5011
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json
5012
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json
5013
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json
5014
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json
5015
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json
5016
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json
5017
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json
5018
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json
5019
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json
5020
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json
5021
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json
5022
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json
5023
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json
5024
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json
5025
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json
5026
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json
5027
+ - webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json
5147
5028
  - webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js
5148
5029
  - webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js
5149
5030
  - webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js
@@ -5215,6 +5096,8 @@ files:
5215
5096
  - webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json
5216
5097
  - webpack/scenes/ContentViews/components/CVBreadCrumb.js
5217
5098
  - webpack/scenes/ContentViews/components/ContentViewIcon.js
5099
+ - webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js
5100
+ - webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js
5218
5101
  - webpack/scenes/ContentViews/components/ContentViewsCounter.js
5219
5102
  - webpack/scenes/ContentViews/components/EnvironmentLabels.js
5220
5103
  - webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js
@@ -5240,6 +5123,8 @@ files:
5240
5123
  - webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js
5241
5124
  - webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js
5242
5125
  - webpack/scenes/Hosts/ChangeContentSource/components/FormField.js
5126
+ - webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js
5127
+ - webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js
5243
5128
  - webpack/scenes/Hosts/ChangeContentSource/constants.js
5244
5129
  - webpack/scenes/Hosts/ChangeContentSource/helpers.js
5245
5130
  - webpack/scenes/Hosts/ChangeContentSource/index.js
@@ -5378,9 +5263,11 @@ files:
5378
5263
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js
5379
5264
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationForm.scss
5380
5265
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js
5266
+ - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js
5381
5267
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js
5382
5268
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js
5383
5269
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js
5270
+ - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js
5384
5271
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js
5385
5272
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js
5386
5273
  - webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js
@@ -5393,7 +5280,6 @@ files:
5393
5280
  - webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js
5394
5281
  - webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
5395
5282
  - webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js
5396
- - webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js
5397
5283
  - webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js
5398
5284
  - webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js
5399
5285
  - webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js
@@ -5489,11 +5375,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
5489
5375
  version: '2.5'
5490
5376
  required_rubygems_version: !ruby/object:Gem::Requirement
5491
5377
  requirements:
5492
- - - ">="
5378
+ - - ">"
5493
5379
  - !ruby/object:Gem::Version
5494
- version: '0'
5380
+ version: 1.3.1
5495
5381
  requirements: []
5496
- rubygems_version: 3.2.33
5382
+ rubygems_version: 3.1.6
5497
5383
  signing_key:
5498
5384
  specification_version: 4
5499
5385
  summary: Content and Subscription Management plugin for Foreman