katello 4.7.6 → 4.8.0.rc1

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 (365) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +6 -4
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +15 -12
  4. data/app/controllers/katello/api/v2/capsule_content_controller.rb +0 -4
  5. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  6. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  7. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  8. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  9. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +7 -8
  10. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +8 -4
  11. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -0
  12. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  13. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  14. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  15. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +1 -2
  16. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  17. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  18. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +3 -3
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +55 -24
  20. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  21. data/app/helpers/katello/sync_management_helper.rb +0 -4
  22. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  23. data/app/lib/actions/katello/capsule_content/sync.rb +0 -4
  24. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  25. data/app/lib/actions/katello/content_view/publish.rb +6 -2
  26. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  27. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  28. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  29. data/app/lib/actions/katello/host/reassign.rb +4 -2
  30. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  31. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  32. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  33. data/app/lib/actions/katello/product/destroy.rb +2 -1
  34. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  35. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  36. data/app/lib/actions/katello/repository/sync.rb +0 -1
  37. data/app/lib/actions/katello/repository/update.rb +5 -3
  38. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  39. data/app/lib/actions/pulp3/abstract.rb +0 -6
  40. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  41. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  42. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +1 -0
  43. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +7 -2
  44. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -2
  45. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  46. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  47. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  48. data/app/lib/katello/concerns/renderer_extensions.rb +1 -1
  49. data/app/lib/katello/event_daemon/runner.rb +12 -9
  50. data/app/lib/katello/resources/candlepin/consumer.rb +6 -6
  51. data/app/lib/katello/resources/candlepin/owner.rb +1 -1
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +3 -4
  53. data/app/lib/katello/resources/candlepin.rb +4 -4
  54. data/app/lib/katello/util/errata.rb +12 -10
  55. data/app/lib/katello/util/search.rb +0 -1
  56. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  57. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  58. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  59. data/app/mailers/katello/errata_mailer.rb +4 -2
  60. data/app/models/katello/alternate_content_source.rb +5 -1
  61. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  62. data/app/models/katello/concerns/host_managed_extensions.rb +17 -8
  63. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  64. data/app/models/katello/concerns/smart_proxy_extensions.rb +0 -12
  65. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  66. data/app/models/katello/content_view.rb +22 -5
  67. data/app/models/katello/content_view_environment.rb +11 -2
  68. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  69. data/app/models/katello/content_view_version.rb +10 -5
  70. data/app/models/katello/erratum.rb +6 -1
  71. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  72. data/app/models/katello/glue/candlepin/product.rb +7 -1
  73. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  74. data/app/models/katello/glue/provider.rb +26 -26
  75. data/app/models/katello/host/content_facet.rb +106 -18
  76. data/app/models/katello/host/info_provider.rb +25 -21
  77. data/app/models/katello/host/subscription_facet.rb +18 -14
  78. data/app/models/katello/kt_environment.rb +12 -7
  79. data/app/models/katello/package_group.rb +0 -12
  80. data/app/models/katello/pool.rb +4 -1
  81. data/app/models/katello/product.rb +11 -1
  82. data/app/models/katello/product_content.rb +0 -4
  83. data/app/models/katello/repository.rb +11 -11
  84. data/app/models/katello/root_repository.rb +4 -3
  85. data/app/models/katello/task_status.rb +0 -18
  86. data/app/services/katello/candlepin/consumer.rb +2 -2
  87. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  88. data/app/services/katello/product_content_finder.rb +11 -12
  89. data/app/services/katello/pulp3/content_view_version/export.rb +8 -65
  90. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  91. data/app/services/katello/pulp3/content_view_version/export_validator.rb +105 -0
  92. data/app/services/katello/pulp3/content_view_version/importable_products.rb +1 -1
  93. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +7 -1
  94. data/app/services/katello/pulp3/erratum.rb +1 -0
  95. data/app/services/katello/pulp3/module_stream.rb +26 -11
  96. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  97. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -1
  98. data/app/services/katello/registration_manager.rb +46 -26
  99. data/app/services/katello/repository_type.rb +3 -9
  100. data/app/services/katello/simple_package.rb +22 -0
  101. data/app/views/foreman/smart_proxies/_content_sync.html.erb +1 -0
  102. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  103. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  104. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  105. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  106. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  107. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  108. data/config/initializers/monkeys.rb +0 -2
  109. data/config/routes/api/registry.rb +8 -7
  110. data/config/routes/api/v2.rb +0 -2
  111. data/config/routes.rb +3 -0
  112. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  113. data/db/migrate/20220110223754_update_disconnected_settings.rb +4 -8
  114. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  115. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  116. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  117. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  118. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +1 -1
  119. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  120. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -1
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +8 -4
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  139. data/lib/katello/engine.rb +2 -1
  140. data/lib/katello/permission_creator.rb +2 -4
  141. data/lib/katello/permissions/registry_permissions.rb +5 -5
  142. data/lib/katello/plugin.rb +22 -14
  143. data/lib/katello/repository_types/README.md +136 -19
  144. data/lib/katello/repository_types/deb.rb +0 -1
  145. data/lib/katello/repository_types/docker.rb +0 -1
  146. data/lib/katello/repository_types/file.rb +0 -1
  147. data/lib/katello/repository_types/yum.rb +0 -4
  148. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  149. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  150. data/lib/katello/tasks/reimport.rake +1 -2
  151. data/lib/katello/tasks/repository.rake +1 -22
  152. data/lib/katello/tasks/reset.rake +1 -0
  153. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  154. data/lib/katello/version.rb +1 -1
  155. data/lib/katello.rb +0 -5
  156. data/locale/bn/katello.po +69 -27
  157. data/locale/cs/katello.po +69 -27
  158. data/locale/de/katello.po +78 -36
  159. data/locale/en/katello.po +69 -27
  160. data/locale/es/katello.po +70 -28
  161. data/locale/fr/katello.po +73 -31
  162. data/locale/gu/katello.po +69 -27
  163. data/locale/hi/katello.po +69 -27
  164. data/locale/it/katello.po +69 -27
  165. data/locale/ja/katello.po +73 -31
  166. data/locale/ka/katello.po +73 -31
  167. data/locale/katello.pot +335 -262
  168. data/locale/kn/katello.po +69 -27
  169. data/locale/ko/katello.po +69 -27
  170. data/locale/mr/katello.po +69 -27
  171. data/locale/or/katello.po +69 -27
  172. data/locale/pa/katello.po +69 -27
  173. data/locale/pt/katello.po +69 -27
  174. data/locale/pt_BR/katello.po +70 -28
  175. data/locale/ru/katello.po +70 -28
  176. data/locale/ta/katello.po +69 -27
  177. data/locale/te/katello.po +69 -27
  178. data/locale/zh_CN/katello.po +73 -31
  179. data/locale/zh_TW/katello.po +70 -28
  180. data/webpack/components/Content/ContentPage.js +51 -35
  181. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  182. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  183. data/webpack/components/Table/EmptyStateMessage.js +14 -11
  184. data/webpack/components/Table/MainTable.js +36 -15
  185. data/webpack/components/Table/TableWrapper.js +25 -25
  186. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  187. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +5 -4
  188. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +1 -1
  189. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  190. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +18 -9
  191. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +1 -2
  192. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +1 -2
  193. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -2
  194. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +47 -27
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +1 -2
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +2 -21
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +1 -28
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +1 -10
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +1 -18
  200. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +1 -17
  201. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -15
  202. data/webpack/global_test_setup.js +1 -1
  203. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +12 -10
  204. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +6 -0
  205. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +1 -0
  206. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +3 -10
  207. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  208. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +3 -3
  209. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +1 -0
  210. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +12 -4
  211. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +7 -4
  212. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +4 -8
  213. data/webpack/scenes/AlternateContentSources/helpers.js +1 -1
  214. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  215. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  216. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  217. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -14
  218. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -25
  219. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  220. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -31
  221. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -0
  222. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  223. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +2 -1
  224. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +2 -1
  225. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +3 -1
  226. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -1
  227. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  228. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +2 -1
  229. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +2 -0
  230. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  231. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +1 -1
  232. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -1
  233. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -33
  234. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +48 -45
  235. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +58 -24
  236. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +64 -0
  237. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +36 -20
  238. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +40 -23
  239. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +0 -13
  240. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +0 -13
  241. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -1
  242. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -10
  243. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  244. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -10
  245. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +21 -9
  246. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +4 -0
  247. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +1 -32
  248. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +3 -1
  249. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -15
  250. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  251. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -2
  252. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +31 -9
  253. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +4 -0
  254. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -14
  255. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +1 -1
  256. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +55 -120
  257. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  258. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  259. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  260. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  261. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  262. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  263. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  264. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  265. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +1 -1
  266. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +1 -1
  267. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +21 -19
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +34 -1
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +20 -7
  270. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  271. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  272. metadata +49 -146
  273. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  274. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  275. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  276. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  277. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  278. data/app/lib/actions/pulp/abstract.rb +0 -37
  279. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  280. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  281. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  282. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  283. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  284. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  285. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  286. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  287. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  288. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  289. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  290. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  291. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  292. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  293. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  294. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  295. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  296. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  297. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  298. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  299. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  300. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  301. data/app/lib/actions/pulp/repository/create.rb +0 -28
  302. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  303. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  304. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  305. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  306. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  307. data/app/lib/actions/pulp/repository/download.rb +0 -16
  308. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  309. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  310. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  311. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  312. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  313. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  314. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  315. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  316. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  317. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  318. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  319. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  320. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  321. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  322. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  323. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  324. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  325. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  326. data/app/models/katello/glue/pulp/repo.rb +0 -353
  327. data/app/models/katello/pulp_sync_status.rb +0 -165
  328. data/app/models/katello/pulp_task_status.rb +0 -63
  329. data/app/services/katello/pulp/content.rb +0 -24
  330. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  331. data/app/services/katello/pulp/repository/deb.rb +0 -61
  332. data/app/services/katello/pulp/repository/docker.rb +0 -82
  333. data/app/services/katello/pulp/repository/file.rb +0 -52
  334. data/app/services/katello/pulp/repository/yum.rb +0 -205
  335. data/app/services/katello/pulp/repository.rb +0 -327
  336. data/app/services/katello/pulp/server.rb +0 -35
  337. data/app/services/katello/pulp/simple_package.rb +0 -24
  338. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  339. data/lib/monkeys/fix_deb_optimized_sync.rb +0 -35
  340. data/lib/monkeys/fix_pulp_container_path.rb +0 -35
  341. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  342. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  343. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  344. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  345. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  346. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  347. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  348. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  349. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  350. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  351. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  352. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  353. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  354. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  355. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  356. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  357. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  358. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  359. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  360. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  361. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  362. data/locale/zanata.xml +0 -30
  363. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  364. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
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.7.6
4
+ version: 4.8.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-21 00:00:00.000000000 Z
11
+ date: 2023-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -86,20 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: 7.2.1
90
- - - "<"
91
- - !ruby/object:Gem::Version
92
- version: 8.0.0
89
+ version: '5.0'
93
90
  type: :runtime
94
91
  prerelease: false
95
92
  version_requirements: !ruby/object:Gem::Requirement
96
93
  requirements:
97
94
  - - ">="
98
95
  - !ruby/object:Gem::Version
99
- version: 7.2.1
100
- - - "<"
101
- - !ruby/object:Gem::Version
102
- version: 8.0.0
96
+ version: '5.0'
103
97
  - !ruby/object:Gem::Dependency
104
98
  name: foreman_remote_execution
105
99
  requirement: !ruby/object:Gem::Requirement
@@ -240,26 +234,6 @@ dependencies:
240
234
  - - ">="
241
235
  - !ruby/object:Gem::Version
242
236
  version: '0'
243
- - !ruby/object:Gem::Dependency
244
- name: runcible
245
- requirement: !ruby/object:Gem::Requirement
246
- requirements:
247
- - - ">="
248
- - !ruby/object:Gem::Version
249
- version: 2.13.0
250
- - - "<"
251
- - !ruby/object:Gem::Version
252
- version: 3.0.0
253
- type: :runtime
254
- prerelease: false
255
- version_requirements: !ruby/object:Gem::Requirement
256
- requirements:
257
- - - ">="
258
- - !ruby/object:Gem::Version
259
- version: 2.13.0
260
- - - "<"
261
- - !ruby/object:Gem::Version
262
- version: 3.0.0
263
237
  - !ruby/object:Gem::Dependency
264
238
  name: anemone
265
239
  requirement: !ruby/object:Gem::Requirement
@@ -280,60 +254,60 @@ dependencies:
280
254
  requirements:
281
255
  - - ">="
282
256
  - !ruby/object:Gem::Version
283
- version: 3.21.0
257
+ version: 3.22.0
284
258
  - - "<"
285
259
  - !ruby/object:Gem::Version
286
- version: 3.22.0
260
+ version: 3.23.0
287
261
  type: :runtime
288
262
  prerelease: false
289
263
  version_requirements: !ruby/object:Gem::Requirement
290
264
  requirements:
291
265
  - - ">="
292
266
  - !ruby/object:Gem::Version
293
- version: 3.21.0
267
+ version: 3.22.0
294
268
  - - "<"
295
269
  - !ruby/object:Gem::Version
296
- version: 3.22.0
270
+ version: 3.23.0
297
271
  - !ruby/object:Gem::Dependency
298
272
  name: pulp_file_client
299
273
  requirement: !ruby/object:Gem::Requirement
300
274
  requirements:
301
275
  - - ">="
302
276
  - !ruby/object:Gem::Version
303
- version: 1.11.0
277
+ version: 1.12.0
304
278
  - - "<"
305
279
  - !ruby/object:Gem::Version
306
- version: '1.12'
280
+ version: '1.13'
307
281
  type: :runtime
308
282
  prerelease: false
309
283
  version_requirements: !ruby/object:Gem::Requirement
310
284
  requirements:
311
285
  - - ">="
312
286
  - !ruby/object:Gem::Version
313
- version: 1.11.0
287
+ version: 1.12.0
314
288
  - - "<"
315
289
  - !ruby/object:Gem::Version
316
- version: '1.12'
290
+ version: '1.13'
317
291
  - !ruby/object:Gem::Dependency
318
292
  name: pulp_ansible_client
319
293
  requirement: !ruby/object:Gem::Requirement
320
294
  requirements:
321
295
  - - ">="
322
296
  - !ruby/object:Gem::Version
323
- version: 0.15.0
297
+ version: 0.16.0
324
298
  - - "<"
325
299
  - !ruby/object:Gem::Version
326
- version: '0.16'
300
+ version: '0.17'
327
301
  type: :runtime
328
302
  prerelease: false
329
303
  version_requirements: !ruby/object:Gem::Requirement
330
304
  requirements:
331
305
  - - ">="
332
306
  - !ruby/object:Gem::Version
333
- version: 0.15.0
307
+ version: 0.16.0
334
308
  - - "<"
335
309
  - !ruby/object:Gem::Version
336
- version: '0.16'
310
+ version: '0.17'
337
311
  - !ruby/object:Gem::Dependency
338
312
  name: pulp_container_client
339
313
  requirement: !ruby/object:Gem::Requirement
@@ -380,20 +354,20 @@ dependencies:
380
354
  requirements:
381
355
  - - ">="
382
356
  - !ruby/object:Gem::Version
383
- version: 3.18.0
357
+ version: 3.19.0
384
358
  - - "<"
385
359
  - !ruby/object:Gem::Version
386
- version: 3.19.0
360
+ version: 3.20.0
387
361
  type: :runtime
388
362
  prerelease: false
389
363
  version_requirements: !ruby/object:Gem::Requirement
390
364
  requirements:
391
365
  - - ">="
392
366
  - !ruby/object:Gem::Version
393
- version: 3.18.0
367
+ version: 3.19.0
394
368
  - - "<"
395
369
  - !ruby/object:Gem::Version
396
- version: 3.19.0
370
+ version: 3.20.0
397
371
  - !ruby/object:Gem::Dependency
398
372
  name: pulp_certguard_client
399
373
  requirement: !ruby/object:Gem::Requirement
@@ -414,20 +388,20 @@ dependencies:
414
388
  requirements:
415
389
  - - ">="
416
390
  - !ruby/object:Gem::Version
417
- version: 3.7.2
391
+ version: 3.8.0
418
392
  - - "<"
419
393
  - !ruby/object:Gem::Version
420
- version: '3.8'
394
+ version: '3.9'
421
395
  type: :runtime
422
396
  prerelease: false
423
397
  version_requirements: !ruby/object:Gem::Requirement
424
398
  requirements:
425
399
  - - ">="
426
400
  - !ruby/object:Gem::Version
427
- version: 3.7.2
401
+ version: 3.8.0
428
402
  - - "<"
429
403
  - !ruby/object:Gem::Version
430
- version: '3.8'
404
+ version: '3.9'
431
405
  - !ruby/object:Gem::Dependency
432
406
  name: pulp_ostree_client
433
407
  requirement: !ruby/object:Gem::Requirement
@@ -751,6 +725,7 @@ files:
751
725
  - app/controllers/katello/api/v2/docker_tags_controller.rb
752
726
  - app/controllers/katello/api/v2/environments_controller.rb
753
727
  - app/controllers/katello/api/v2/errata_controller.rb
728
+ - app/controllers/katello/api/v2/exports_controller.rb
754
729
  - app/controllers/katello/api/v2/file_units_controller.rb
755
730
  - app/controllers/katello/api/v2/generic_content_units_controller.rb
756
731
  - app/controllers/katello/api/v2/host_autocomplete_controller.rb
@@ -795,6 +770,7 @@ files:
795
770
  - app/controllers/katello/concerns/api/v2/repository_content_controller.rb
796
771
  - app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb
797
772
  - app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb
773
+ - app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb
798
774
  - app/controllers/katello/concerns/filtered_auto_complete_search.rb
799
775
  - app/controllers/katello/concerns/hosts_controller_extensions.rb
800
776
  - app/controllers/katello/concerns/organizations_controller_extensions.rb
@@ -947,7 +923,6 @@ files:
947
923
  - app/lib/actions/katello/organization/manifest_refresh.rb
948
924
  - app/lib/actions/katello/organization/simple_content_access/disable.rb
949
925
  - app/lib/actions/katello/organization/simple_content_access/enable.rb
950
- - app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb
951
926
  - app/lib/actions/katello/organization/simple_content_access/toggle.rb
952
927
  - app/lib/actions/katello/orphan_cleanup/remove_orphans.rb
953
928
  - app/lib/actions/katello/product/content_create.rb
@@ -960,18 +935,15 @@ files:
960
935
  - app/lib/actions/katello/product/update.rb
961
936
  - app/lib/actions/katello/product/update_http_proxy.rb
962
937
  - app/lib/actions/katello/provider/destroy.rb
963
- - app/lib/actions/katello/pulp_selector.rb
964
938
  - app/lib/actions/katello/repository/bulk_metadata_generate.rb
965
939
  - app/lib/actions/katello/repository/capsule_sync.rb
966
940
  - app/lib/actions/katello/repository/check_matching_content.rb
967
941
  - app/lib/actions/katello/repository/clone_contents.rb
968
942
  - app/lib/actions/katello/repository/clone_to_environment.rb
969
943
  - app/lib/actions/katello/repository/clone_to_version.rb
970
- - app/lib/actions/katello/repository/correct_checksum.rb
971
944
  - app/lib/actions/katello/repository/create.rb
972
945
  - app/lib/actions/katello/repository/create_root.rb
973
946
  - app/lib/actions/katello/repository/destroy.rb
974
- - app/lib/actions/katello/repository/destroy_package_group.rb
975
947
  - app/lib/actions/katello/repository/discover.rb
976
948
  - app/lib/actions/katello/repository/errata_mail.rb
977
949
  - app/lib/actions/katello/repository/fetch_pxe_files.rb
@@ -996,7 +968,6 @@ files:
996
968
  - app/lib/actions/katello/repository/update_metadata_sync.rb
997
969
  - app/lib/actions/katello/repository/update_redhat_repository.rb
998
970
  - app/lib/actions/katello/repository/upload_files.rb
999
- - app/lib/actions/katello/repository/upload_package_group.rb
1000
971
  - app/lib/actions/katello/repository/verify_checksum.rb
1001
972
  - app/lib/actions/katello/repository_set/disable_repository.rb
1002
973
  - app/lib/actions/katello/repository_set/enable_repository.rb
@@ -1022,51 +993,6 @@ files:
1022
993
  - app/lib/actions/middleware/record_smart_proxy_sync_history.rb
1023
994
  - app/lib/actions/middleware/remote_action.rb
1024
995
  - app/lib/actions/middleware/skip_if_matching_content.rb
1025
- - app/lib/actions/pulp/abstract.rb
1026
- - app/lib/actions/pulp/abstract_async_task.rb
1027
- - app/lib/actions/pulp/abstract_async_task_group.rb
1028
- - app/lib/actions/pulp/consumer/sync_capsule.rb
1029
- - app/lib/actions/pulp/consumer/unassociate_units.rb
1030
- - app/lib/actions/pulp/expect_one_task.rb
1031
- - app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb
1032
- - app/lib/actions/pulp/orchestration/repository/copy_all_units.rb
1033
- - app/lib/actions/pulp/orchestration/repository/delete.rb
1034
- - app/lib/actions/pulp/orchestration/repository/refresh.rb
1035
- - app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb
1036
- - app/lib/actions/pulp/orchestration/repository/refresh_repos.rb
1037
- - app/lib/actions/pulp/orchestration/repository/remove_units.rb
1038
- - app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb
1039
- - app/lib/actions/pulp/orchestration/repository/sync.rb
1040
- - app/lib/actions/pulp/orchestration/repository/upload_content.rb
1041
- - app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb
1042
- - app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb
1043
- - app/lib/actions/pulp/repository/abstract_copy_content.rb
1044
- - app/lib/actions/pulp/repository/abstract_remove_content.rb
1045
- - app/lib/actions/pulp/repository/clear.rb
1046
- - app/lib/actions/pulp/repository/copy_all_units.rb
1047
- - app/lib/actions/pulp/repository/copy_units.rb
1048
- - app/lib/actions/pulp/repository/create.rb
1049
- - app/lib/actions/pulp/repository/create_in_plan.rb
1050
- - app/lib/actions/pulp/repository/create_upload_request.rb
1051
- - app/lib/actions/pulp/repository/delete_upload_request.rb
1052
- - app/lib/actions/pulp/repository/destroy.rb
1053
- - app/lib/actions/pulp/repository/distributor_publish.rb
1054
- - app/lib/actions/pulp/repository/download.rb
1055
- - app/lib/actions/pulp/repository/import_upload.rb
1056
- - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
1057
- - app/lib/actions/pulp/repository/presenters/deb_presenter.rb
1058
- - app/lib/actions/pulp/repository/presenters/docker_presenter.rb
1059
- - app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb
1060
- - app/lib/actions/pulp/repository/presenters/yum_presenter.rb
1061
- - app/lib/actions/pulp/repository/refresh.rb
1062
- - app/lib/actions/pulp/repository/regenerate_applicability.rb
1063
- - app/lib/actions/pulp/repository/remove_distribution.rb
1064
- - app/lib/actions/pulp/repository/remove_units.rb
1065
- - app/lib/actions/pulp/repository/sync.rb
1066
- - app/lib/actions/pulp/repository/upload_file.rb
1067
- - app/lib/actions/pulp/repository_group/create.rb
1068
- - app/lib/actions/pulp/repository_group/delete.rb
1069
- - app/lib/actions/pulp/repository_group/export.rb
1070
996
  - app/lib/actions/pulp3/abstract.rb
1071
997
  - app/lib/actions/pulp3/abstract_async_task.rb
1072
998
  - app/lib/actions/pulp3/alternate_content_source/create.rb
@@ -1215,7 +1141,6 @@ files:
1215
1141
  - app/lib/katello/resources/registry.rb
1216
1142
  - app/lib/katello/util/candlepin_repository_checker.rb
1217
1143
  - app/lib/katello/util/cdn_var_substitutor.rb
1218
- - app/lib/katello/util/content_overrides_migrator.rb
1219
1144
  - app/lib/katello/util/data.rb
1220
1145
  - app/lib/katello/util/deduplication_migrator.rb
1221
1146
  - app/lib/katello/util/docker_manifest_clause_generator.rb
@@ -1226,7 +1151,6 @@ files:
1226
1151
  - app/lib/katello/util/model.rb
1227
1152
  - app/lib/katello/util/module_stream_clause_generator.rb
1228
1153
  - app/lib/katello/util/package.rb
1229
- - app/lib/katello/util/package_clause_generator.rb
1230
1154
  - app/lib/katello/util/package_filter.rb
1231
1155
  - app/lib/katello/util/path_with_substitutions.rb
1232
1156
  - app/lib/katello/util/pulpcore_content_filters.rb
@@ -1245,6 +1169,7 @@ files:
1245
1169
  - app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
1246
1170
  - app/lib/katello/validators/content_view_filter_version_validator.rb
1247
1171
  - app/lib/katello/validators/environment_docker_repositories_validator.rb
1172
+ - app/lib/katello/validators/generated_content_view_validator.rb
1248
1173
  - app/lib/katello/validators/gpg_key_content_type_validator.rb
1249
1174
  - app/lib/katello/validators/gpg_key_content_validator.rb
1250
1175
  - app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb
@@ -1334,6 +1259,7 @@ files:
1334
1259
  - app/models/katello/content_view_docker_filter.rb
1335
1260
  - app/models/katello/content_view_docker_filter_rule.rb
1336
1261
  - app/models/katello/content_view_environment.rb
1262
+ - app/models/katello/content_view_environment_content_facet.rb
1337
1263
  - app/models/katello/content_view_erratum_filter.rb
1338
1264
  - app/models/katello/content_view_erratum_filter_rule.rb
1339
1265
  - app/models/katello/content_view_filter.rb
@@ -1385,8 +1311,6 @@ files:
1385
1311
  - app/models/katello/glue/candlepin/repository.rb
1386
1312
  - app/models/katello/glue/candlepin/subscription.rb
1387
1313
  - app/models/katello/glue/provider.rb
1388
- - app/models/katello/glue/pulp/pulp_errors.rb
1389
- - app/models/katello/glue/pulp/repo.rb
1390
1314
  - app/models/katello/glue/pulp/repos.rb
1391
1315
  - app/models/katello/hash_util.rb
1392
1316
  - app/models/katello/host/content_facet.rb
@@ -1426,8 +1350,6 @@ files:
1426
1350
  - app/models/katello/pulp3/content_guard.rb
1427
1351
  - app/models/katello/pulp3/distribution_reference.rb
1428
1352
  - app/models/katello/pulp3/repository_reference.rb
1429
- - app/models/katello/pulp_sync_status.rb
1430
- - app/models/katello/pulp_task_status.rb
1431
1353
  - app/models/katello/purpose_addon.rb
1432
1354
  - app/models/katello/purpose_addons_status.rb
1433
1355
  - app/models/katello/purpose_role_status.rb
@@ -1509,16 +1431,6 @@ files:
1509
1431
  - app/services/katello/product_content_importer.rb
1510
1432
  - app/services/katello/proxy_status/pulp.rb
1511
1433
  - app/services/katello/proxy_status/pulp_node.rb
1512
- - app/services/katello/pulp/content.rb
1513
- - app/services/katello/pulp/importer_comparison.rb
1514
- - app/services/katello/pulp/repository.rb
1515
- - app/services/katello/pulp/repository/deb.rb
1516
- - app/services/katello/pulp/repository/docker.rb
1517
- - app/services/katello/pulp/repository/file.rb
1518
- - app/services/katello/pulp/repository/yum.rb
1519
- - app/services/katello/pulp/server.rb
1520
- - app/services/katello/pulp/simple_package.rb
1521
- - app/services/katello/pulp/smart_proxy_repository.rb
1522
1434
  - app/services/katello/pulp3/alternate_content_source.rb
1523
1435
  - app/services/katello/pulp3/ansible_collection.rb
1524
1436
  - app/services/katello/pulp3/api/ansible_collection.rb
@@ -1531,6 +1443,8 @@ files:
1531
1443
  - app/services/katello/pulp3/api/yum.rb
1532
1444
  - app/services/katello/pulp3/content.rb
1533
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
1534
1448
  - app/services/katello/pulp3/content_view_version/import.rb
1535
1449
  - app/services/katello/pulp3/content_view_version/import_export_common.rb
1536
1450
  - app/services/katello/pulp3/content_view_version/import_gpg_keys.rb
@@ -1572,6 +1486,7 @@ files:
1572
1486
  - app/services/katello/registration_manager.rb
1573
1487
  - app/services/katello/repository_type.rb
1574
1488
  - app/services/katello/repository_type_manager.rb
1489
+ - app/services/katello/simple_package.rb
1575
1490
  - app/services/katello/smart_proxy_helper.rb
1576
1491
  - app/services/katello/ui_notifications/abstract_notification.rb
1577
1492
  - app/services/katello/ui_notifications/content_view/auto_publish_failure.rb
@@ -2241,6 +2156,8 @@ files:
2241
2156
  - db/migrate/20220730033504_update_custom_cdn.rb
2242
2157
  - db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb
2243
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
2244
2161
  - db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb
2245
2162
  - db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb
2246
2163
  - db/seeds.d/101-locations.rb
@@ -4263,6 +4180,15 @@ files:
4263
4180
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/http-proxies/http-proxy.factory.js
4264
4181
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README
4265
4182
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
4183
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po
4184
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po
4185
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po
4186
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po
4187
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po
4188
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po
4189
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po
4190
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po
4191
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po
4266
4192
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
4267
4193
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/zanata.xml
4268
4194
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
@@ -4453,7 +4379,9 @@ files:
4453
4379
  - lib/katello/scheduled_jobs.rb
4454
4380
  - lib/katello/tasks/check_candlepin_content.rake
4455
4381
  - lib/katello/tasks/clean_backend_objects.rake
4382
+ - lib/katello/tasks/clean_candlepin_orphaned_products.rake
4456
4383
  - lib/katello/tasks/clean_old_file_repos.rake
4384
+ - lib/katello/tasks/clean_orphaned_facets.rb
4457
4385
  - lib/katello/tasks/clean_published_repo_directories.rake
4458
4386
  - lib/katello/tasks/content_view_import_only.rake
4459
4387
  - lib/katello/tasks/delete_orphaned_content.rake
@@ -4483,13 +4411,12 @@ files:
4483
4411
  - lib/katello/tasks/upgrades/4.2/remove_checksum_values.rake
4484
4412
  - lib/katello/tasks/upgrades/4.3/fix_url_auth.rake
4485
4413
  - lib/katello/tasks/upgrades/4.4/publish_import_cvvs.rake
4414
+ - lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake
4486
4415
  - lib/katello/tasks/virt_who_report.rake
4487
4416
  - lib/katello/url_constrained_cookie_store.rb
4488
4417
  - lib/katello/version.rb
4489
4418
  - lib/monkeys/anemone.rb
4490
4419
  - lib/monkeys/ar_postgres_evr_t.rb
4491
- - lib/monkeys/fix_deb_optimized_sync.rb
4492
- - lib/monkeys/fix_pulp_container_path.rb
4493
4420
  - lib/monkeys/fx_sqlite_skip.rb
4494
4421
  - lib/proxy_api/container_gateway.rb
4495
4422
  - lib/proxy_api/pulp.rb
@@ -4497,54 +4424,30 @@ files:
4497
4424
  - locale/Makefile
4498
4425
  - locale/README
4499
4426
  - locale/action_names.rb
4500
- - locale/bn/LC_MESSAGES/katello.mo
4501
4427
  - locale/bn/katello.po
4502
- - locale/cs/LC_MESSAGES/katello.mo
4503
4428
  - locale/cs/katello.po
4504
- - locale/de/LC_MESSAGES/katello.mo
4505
4429
  - locale/de/katello.po
4506
- - locale/en/LC_MESSAGES/katello.mo
4507
4430
  - locale/en/katello.po
4508
- - locale/es/LC_MESSAGES/katello.mo
4509
4431
  - locale/es/katello.po
4510
- - locale/fr/LC_MESSAGES/katello.mo
4511
4432
  - locale/fr/katello.po
4512
- - locale/gu/LC_MESSAGES/katello.mo
4513
4433
  - locale/gu/katello.po
4514
- - locale/hi/LC_MESSAGES/katello.mo
4515
4434
  - locale/hi/katello.po
4516
- - locale/it/LC_MESSAGES/katello.mo
4517
4435
  - locale/it/katello.po
4518
- - locale/ja/LC_MESSAGES/katello.mo
4519
4436
  - locale/ja/katello.po
4520
- - locale/ka/LC_MESSAGES/katello.mo
4521
4437
  - locale/ka/katello.po
4522
4438
  - locale/katello.pot
4523
- - locale/kn/LC_MESSAGES/katello.mo
4524
4439
  - locale/kn/katello.po
4525
- - locale/ko/LC_MESSAGES/katello.mo
4526
4440
  - locale/ko/katello.po
4527
- - locale/mr/LC_MESSAGES/katello.mo
4528
4441
  - locale/mr/katello.po
4529
- - locale/or/LC_MESSAGES/katello.mo
4530
4442
  - locale/or/katello.po
4531
- - locale/pa/LC_MESSAGES/katello.mo
4532
4443
  - locale/pa/katello.po
4533
- - locale/pt/LC_MESSAGES/katello.mo
4534
4444
  - locale/pt/katello.po
4535
- - locale/pt_BR/LC_MESSAGES/katello.mo
4536
4445
  - locale/pt_BR/katello.po
4537
- - locale/ru/LC_MESSAGES/katello.mo
4538
4446
  - locale/ru/katello.po
4539
- - locale/ta/LC_MESSAGES/katello.mo
4540
4447
  - locale/ta/katello.po
4541
- - locale/te/LC_MESSAGES/katello.mo
4542
4448
  - locale/te/katello.po
4543
4449
  - locale/update-i18n
4544
- - locale/zanata.xml
4545
- - locale/zh_CN/LC_MESSAGES/katello.mo
4546
4450
  - locale/zh_CN/katello.po
4547
- - locale/zh_TW/LC_MESSAGES/katello.mo
4548
4451
  - locale/zh_TW/katello.po
4549
4452
  - package.json
4550
4453
  - vendor/assets/images/katello/add2.png
@@ -4678,6 +4581,7 @@ files:
4678
4581
  - webpack/components/Table/PageControls.js
4679
4582
  - webpack/components/Table/TableHooks.js
4680
4583
  - webpack/components/Table/TableWrapper.js
4584
+ - webpack/components/Table/__test__/emptyStateMessage.test.js
4681
4585
  - webpack/components/Table/__test__/useBulkSelect.test.js
4682
4586
  - webpack/components/Table/components/SortableColumnHeaders.js
4683
4587
  - webpack/components/Table/components/TranslatedPlural.js
@@ -5034,7 +4938,6 @@ files:
5034
4938
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js
5035
4939
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContent.fixtures.json
5036
4940
  - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js
5037
- - webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json
5038
4941
  - webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js
5039
4942
  - webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js
5040
4943
  - webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js
@@ -5469,11 +5372,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
5469
5372
  version: '2.5'
5470
5373
  required_rubygems_version: !ruby/object:Gem::Requirement
5471
5374
  requirements:
5472
- - - ">="
5375
+ - - ">"
5473
5376
  - !ruby/object:Gem::Version
5474
- version: '0'
5377
+ version: 1.3.1
5475
5378
  requirements: []
5476
- rubygems_version: 3.3.26
5379
+ rubygems_version: 3.1.2
5477
5380
  signing_key:
5478
5381
  specification_version: 4
5479
5382
  summary: Content and Subscription Management plugin for Foreman
@@ -1,36 +0,0 @@
1
- module Actions
2
- module Katello
3
- module Organization
4
- module SimpleContentAccess
5
- class PrepareContentOverrides < Actions::Base
6
- def plan(organization_id)
7
- Rails.logger.info "PrepareContentOverrides plan: #{organization_id.inspect}"
8
- organization = ::Organization.find(organization_id.to_i)
9
- org_name = organization.name
10
-
11
- plan_self(organization_id: organization_id, organization_name: org_name)
12
- end
13
-
14
- def run
15
- organization = ::Organization.find(input[:organization_id].to_i)
16
- migrator = ::Katello::Util::ContentOverridesMigrator.new(organization: organization)
17
-
18
- output[:migrator_result] = migrator.execute_non_sca_overrides!
19
- end
20
-
21
- def rescue_strategy
22
- Dynflow::Action::Rescue::Skip
23
- end
24
-
25
- def humanized_name
26
- N_("Prepare content overrides for Simple Content Access")
27
- end
28
-
29
- def humanized_input
30
- _("for organization %s") % input[:organization_name]
31
- end
32
- end
33
- end
34
- end
35
- end
36
- end
@@ -1,24 +0,0 @@
1
- module Actions
2
- module Katello
3
- module PulpSelector
4
- def plan_pulp_action(backend_actions, repository, smart_proxy, *args)
5
- fail "nil smart_proxy passed to PulpSelector" if smart_proxy.nil?
6
- smart_proxy.fix_pulp3_capabilities(repository.content_type)
7
- planned = plan_optional_pulp_action(backend_actions, repository, smart_proxy, *args)
8
- fail "Could not locate an action for type #{smart_proxy.backend_service_type(repository)}" unless planned
9
- planned
10
- end
11
-
12
- def plan_optional_pulp_action(backend_actions, repository, smart_proxy, *args)
13
- found_action = select_pulp_action(backend_actions, repository, smart_proxy)
14
- plan_action(found_action, repository, smart_proxy, *args) if found_action
15
- end
16
-
17
- def select_pulp_action(backend_actions, repository, smart_proxy)
18
- backend_type = smart_proxy.backend_service_type(repository)
19
- found_action = backend_actions.find { |action| action.backend_service_type == backend_type }
20
- found_action
21
- end
22
- end
23
- end
24
- end
@@ -1,24 +0,0 @@
1
- module Actions
2
- module Katello
3
- module Repository
4
- class CorrectChecksum < Actions::Base
5
- def plan(repo)
6
- plan_self(:repo_id => repo.id)
7
- end
8
-
9
- def finalize
10
- ::User.current = ::User.anonymous_admin
11
- root = ::Katello::Repository.find(input[:repo_id]).root
12
-
13
- if root.pulp_scratchpad_checksum_type &&
14
- root.pulp_scratchpad_checksum_type != root.source_repo_checksum_type
15
- root.source_repo_checksum_type = root.pulp_scratchpad_checksum_type
16
- root.save!
17
- end
18
- ensure
19
- ::User.current = nil
20
- end
21
- end
22
- end
23
- end
24
- end
@@ -1,26 +0,0 @@
1
- module Actions
2
- module Katello
3
- module Repository
4
- class DestroyPackageGroup < Actions::EntryAction
5
- def plan(repository, pkg_group_id)
6
- action_subject(repository)
7
- criteria = { type_ids: ["package_group"], filters: {"unit": {"name": pkg_group_id} } }
8
-
9
- sequence do
10
- ::Katello.pulp_server.extensions.repository.unassociate_units(repository.pulp_id, criteria)
11
- plan_action(IndexPackageGroups, repository)
12
- plan_action(Katello::Repository::MetadataGenerate, repository)
13
- end
14
- end
15
-
16
- def rescue_strategy
17
- Dynflow::Action::Rescue::Skip
18
- end
19
-
20
- def humanized_name
21
- _("Delete Package Group")
22
- end
23
- end
24
- end
25
- end
26
- end
@@ -1,24 +0,0 @@
1
- module Actions
2
- module Katello
3
- module Repository
4
- class UploadPackageGroup < Actions::EntryAction
5
- def plan(repository, _params)
6
- action_subject(repository)
7
-
8
- sequence do
9
- plan_action(IndexPackageGroups, repository)
10
- plan_action(FinishUpload, repository, :generate_metadata => true)
11
- end
12
- end
13
-
14
- def rescue_strategy
15
- Dynflow::Action::Rescue::Skip
16
- end
17
-
18
- def humanized_name
19
- _("Create Package Group")
20
- end
21
- end
22
- end
23
- end
24
- end