katello 3.8.1 → 3.9.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 (472) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +16 -9
  4. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
  5. data/app/controllers/katello/api/v2/api_controller.rb +20 -22
  6. data/app/controllers/katello/api/v2/capsule_content_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +5 -1
  8. data/app/controllers/katello/api/v2/content_view_histories_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +12 -12
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +15 -1
  11. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +12 -4
  13. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +12 -0
  14. data/app/controllers/katello/api/v2/module_streams_controller.rb +49 -0
  15. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  16. data/app/controllers/katello/api/v2/package_groups_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +5 -4
  18. data/app/controllers/katello/api/v2/products_controller.rb +1 -1
  19. data/app/controllers/katello/api/v2/puppet_modules_controller.rb +5 -0
  20. data/app/controllers/katello/api/v2/repositories_controller.rb +80 -84
  21. data/app/controllers/katello/api/v2/repository_sets_controller.rb +18 -7
  22. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -6
  23. data/app/controllers/katello/api/v2/sync_plans_controller.rb +13 -24
  24. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +12 -5
  25. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +2 -5
  26. data/app/controllers/katello/react_controller.rb +2 -0
  27. data/app/controllers/katello/remote_execution_controller.rb +16 -5
  28. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +0 -2
  29. data/app/lib/actions/candlepin/import_pool_handler.rb +40 -15
  30. data/app/lib/actions/katello/capsule_content/create_repos.rb +1 -0
  31. data/app/lib/actions/katello/content_view/publish.rb +21 -2
  32. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -1
  33. data/app/lib/actions/katello/environment/destroy.rb +2 -3
  34. data/app/lib/actions/katello/environment/publish_repositories.rb +1 -1
  35. data/app/lib/actions/katello/event_queue/monitor.rb +9 -15
  36. data/app/lib/actions/katello/event_queue/poller_thread.rb +24 -1
  37. data/app/lib/actions/katello/event_queue/suspended_action.rb +2 -2
  38. data/app/lib/actions/katello/host/hypervisors_update.rb +82 -22
  39. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
  40. data/app/lib/actions/katello/product/content_create.rb +30 -38
  41. data/app/lib/actions/katello/product/content_destroy.rb +11 -12
  42. data/app/lib/actions/katello/product/create.rb +0 -1
  43. data/app/lib/actions/katello/product/update.rb +0 -2
  44. data/app/lib/actions/katello/repository/clear.rb +2 -0
  45. data/app/lib/actions/katello/repository/clone_to_environment.rb +0 -2
  46. data/app/lib/actions/katello/repository/clone_to_version.rb +15 -3
  47. data/app/lib/actions/katello/repository/clone_yum_content.rb +21 -2
  48. data/app/lib/actions/katello/repository/clone_yum_metadata.rb +1 -1
  49. data/app/lib/actions/katello/repository/correct_checksum.rb +5 -5
  50. data/app/lib/actions/katello/repository/create.rb +7 -7
  51. data/app/lib/actions/katello/repository/create_root.rb +22 -0
  52. data/app/lib/actions/katello/repository/destroy.rb +11 -6
  53. data/app/lib/actions/katello/repository/discover.rb +5 -3
  54. data/app/lib/actions/katello/repository/export.rb +1 -1
  55. data/app/lib/actions/katello/repository/fetch_pxe_files.rb +13 -27
  56. data/app/lib/actions/katello/repository/index_module_streams.rb +16 -0
  57. data/app/lib/actions/katello/repository/metadata_generate.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +0 -2
  59. data/app/lib/actions/katello/repository/update.rb +15 -28
  60. data/app/lib/actions/katello/repository_set/disable_repository.rb +5 -13
  61. data/app/lib/actions/katello/repository_set/enable_repository.rb +3 -16
  62. data/app/lib/actions/katello/repository_set/scan_cdn.rb +4 -32
  63. data/app/lib/actions/katello/sync_plan/run.rb +37 -0
  64. data/app/lib/actions/pulp/abstract.rb +7 -2
  65. data/app/lib/actions/pulp/abstract_async_task.rb +1 -0
  66. data/app/lib/actions/pulp/consumer/generate_applicability.rb +1 -0
  67. data/app/lib/actions/pulp/repository/copy_module_default.rb +11 -0
  68. data/app/lib/actions/pulp/repository/copy_module_stream.rb +11 -0
  69. data/app/lib/actions/pulp/repository/create.rb +2 -0
  70. data/app/lib/actions/pulp/repository/distributor_publish.rb +3 -2
  71. data/app/lib/actions/pulp/repository/remove_module_default.rb +11 -0
  72. data/app/lib/actions/pulp/repository/remove_module_stream.rb +11 -0
  73. data/app/lib/actions/pulp/repository/sync.rb +6 -19
  74. data/app/lib/actions/pulp/repository/update_importer.rb +9 -7
  75. data/app/lib/katello/concerns/base_template_scope_extensions.rb +42 -0
  76. data/app/lib/katello/concerns/renderer_extensions.rb +6 -4
  77. data/app/lib/katello/http_resource.rb +5 -1
  78. data/app/lib/katello/repo_discovery.rb +6 -2
  79. data/app/lib/katello/resources/candlepin/consumer.rb +18 -1
  80. data/app/lib/katello/resources/candlepin/owner.rb +9 -0
  81. data/app/lib/katello/resources/candlepin/pool.rb +2 -2
  82. data/app/lib/katello/validators/root_repository_unique_attribute_validator.rb +13 -0
  83. data/app/models/katello/authorization/product.rb +3 -4
  84. data/app/models/katello/authorization/repository.rb +4 -4
  85. data/app/models/katello/candlepin/repository_mapper.rb +12 -26
  86. data/app/models/katello/concerns/audit_search.rb +13 -0
  87. data/app/models/katello/concerns/content_facet_host_extensions.rb +1 -1
  88. data/app/models/katello/concerns/content_view_filter_rule_common.rb +1 -0
  89. data/app/models/katello/concerns/host_managed_extensions.rb +68 -2
  90. data/app/models/katello/concerns/hostgroup_extensions.rb +13 -0
  91. data/app/models/katello/concerns/location_extensions.rb +3 -3
  92. data/app/models/katello/concerns/organization_extensions.rb +7 -3
  93. data/app/models/katello/concerns/pulp_database_unit.rb +1 -0
  94. data/app/models/katello/concerns/recurring_logic_extensions.rb +11 -0
  95. data/app/models/katello/concerns/redhat_extensions.rb +0 -25
  96. data/app/models/katello/concerns/search_by_repository_name.rb +21 -0
  97. data/app/models/katello/concerns/setting_extensions.rb +1 -1
  98. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +43 -0
  99. data/app/models/katello/content.rb +7 -3
  100. data/app/models/katello/content_view.rb +4 -4
  101. data/app/models/katello/content_view_component.rb +1 -1
  102. data/app/models/katello/content_view_history.rb +1 -0
  103. data/app/models/katello/content_view_version.rb +14 -2
  104. data/app/models/katello/docker_manifest_list.rb +1 -1
  105. data/app/models/katello/docker_meta_tag.rb +11 -2
  106. data/app/models/katello/docker_tag.rb +1 -1
  107. data/app/models/katello/erratum.rb +6 -0
  108. data/app/models/katello/file_unit.rb +0 -1
  109. data/app/models/katello/glue/candlepin/owner.rb +1 -0
  110. data/app/models/katello/glue/candlepin/pool.rb +1 -2
  111. data/app/models/katello/glue/candlepin/product.rb +0 -4
  112. data/app/models/katello/glue/candlepin/repository.rb +0 -21
  113. data/app/models/katello/glue/provider.rb +4 -2
  114. data/app/models/katello/glue/pulp/repo.rb +10 -173
  115. data/app/models/katello/glue/pulp/repos.rb +2 -112
  116. data/app/models/katello/gpg_key.rb +6 -14
  117. data/app/models/katello/host/content_facet.rb +1 -1
  118. data/app/models/katello/host/subscription_facet.rb +32 -8
  119. data/app/models/katello/kt_environment.rb +9 -29
  120. data/app/models/katello/module_profile.rb +6 -0
  121. data/app/models/katello/module_profile_rpm.rb +5 -0
  122. data/app/models/katello/module_stream.rb +112 -0
  123. data/app/models/katello/module_stream_artifact.rb +5 -0
  124. data/app/models/katello/ostree_branch.rb +0 -1
  125. data/app/models/katello/package_group.rb +1 -1
  126. data/app/models/katello/pool.rb +4 -0
  127. data/app/models/katello/product.rb +18 -21
  128. data/app/models/katello/product_content.rb +2 -2
  129. data/app/models/katello/puppet_module.rb +1 -0
  130. data/app/models/katello/purpose_addons_status.rb +50 -0
  131. data/app/models/katello/purpose_role_status.rb +50 -0
  132. data/app/models/katello/purpose_sla_status.rb +48 -0
  133. data/app/models/katello/purpose_status.rb +56 -0
  134. data/app/models/katello/purpose_usage_status.rb +50 -0
  135. data/app/models/katello/repository.rb +116 -280
  136. data/app/models/katello/repository_module_stream.rb +7 -0
  137. data/app/models/katello/root_repository.rb +262 -0
  138. data/app/models/katello/subscription_status.rb +1 -1
  139. data/app/models/katello/sync_plan.rb +93 -40
  140. data/app/presenters/katello/content_view_version_compare_presenter.rb +7 -2
  141. data/app/services/katello/candlepin/consumer.rb +25 -0
  142. data/app/services/katello/candlepin/message_handler.rb +18 -2
  143. data/app/services/katello/managed_content_medium_provider.rb +27 -0
  144. data/app/services/katello/product_content_finder.rb +3 -3
  145. data/app/services/katello/pulp/module_stream.rb +9 -0
  146. data/app/services/katello/pulp/repository.rb +22 -0
  147. data/app/services/katello/pulp/srpm.rb +1 -1
  148. data/app/services/katello/pxe_files_downloader.rb +41 -0
  149. data/app/services/katello/registration_manager.rb +5 -0
  150. data/app/views/katello/api/v2/content_facet/show.json.rabl +0 -4
  151. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +12 -2
  152. data/app/views/katello/api/v2/debs/compare.json.rabl +10 -0
  153. data/app/views/katello/api/v2/docker_manifest_lists/compare.json.rabl +10 -0
  154. data/app/views/katello/api/v2/environments/show.json.rabl +1 -0
  155. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +3 -0
  156. data/app/views/katello/api/v2/module_streams/base.json.rabl +4 -0
  157. data/app/views/katello/api/v2/module_streams/index.json.rabl +7 -0
  158. data/app/views/katello/api/v2/module_streams/name_stream.json.rabl +3 -0
  159. data/app/views/katello/api/v2/module_streams/name_streams.json.rabl +7 -0
  160. data/app/views/katello/api/v2/module_streams/show.json.rabl +21 -0
  161. data/app/views/katello/api/v2/organizations/show.json.rabl +4 -1
  162. data/app/views/katello/api/v2/products/base.json.rabl +1 -1
  163. data/app/views/katello/api/v2/repositories/base.json.rabl +23 -10
  164. data/app/views/katello/api/v2/repositories/show.json.rabl +47 -38
  165. data/app/views/katello/api/v2/smart_proxies/download_policy.json.rabl +1 -0
  166. data/app/views/katello/api/v2/subscription_facet/base.json.rabl +1 -1
  167. data/app/views/katello/api/v2/sync_plans/show.json.rabl +2 -1
  168. data/app/views/katello/layouts/react.html.erb +1 -0
  169. data/config/katello.yaml.example +1 -2
  170. data/config/routes.rb +5 -0
  171. data/config/routes/api/v2.rb +12 -1
  172. data/config/routes/overrides.rb +1 -0
  173. data/db/migrate/20150114225023_add_upstream_name_to_repository.rb +7 -2
  174. data/db/migrate/20170208215148_add_docker_repo_name.rb +10 -1
  175. data/db/migrate/20180326190408_move_subscription_products.rb +2 -0
  176. data/db/migrate/20180622105300_add_docker_tags_whitelist_to_repository.rb +9 -0
  177. data/db/migrate/20180725083800_change_repository_password_length.rb +5 -0
  178. data/db/migrate/20180806205420_add_index_to_content_view_version.rb +5 -0
  179. data/db/migrate/20180807145652_create_katello_module_streams.rb +88 -0
  180. data/db/migrate/20180807164405_remove_repository_cp_label.rb +5 -0
  181. data/db/migrate/20180808013432_add_system_purpose_attrs.rb +39 -0
  182. data/db/migrate/20180814202747_add_recurring_logic_to_sync_plan.rb +12 -0
  183. data/db/migrate/20180816142044_add_description_to_katello_module_streams.rb +6 -0
  184. data/db/migrate/20180821144248_add_cron_logic_to_sync_plans.rb +5 -0
  185. data/db/migrate/20180828161400_remove_join_table_for_role_and_usage.rb +20 -0
  186. data/db/migrate/20180917173645_add_source_repo_checksum_type_to_katello_repositories.rb +1 -1
  187. data/db/migrate/20180920123913_drop_repo_module_streams_timestamp_not_null.rb +7 -0
  188. data/db/migrate/20180920171008_change_repository_password_to_text.rb +17 -0
  189. data/db/migrate/20180920214134_create_repository_root.rb +142 -0
  190. data/db/seeds.d/111-container-image-bookmarks.rb +19 -0
  191. data/db/seeds.d/111-upgrade_tasks.rb +9 -0
  192. data/db/seeds.d/150-module_job_templates.rb +12 -0
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +1 -0
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +3 -0
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/module-stream-actions.service.js +26 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-module-streams-modal.controller.js +60 -0
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +2 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +70 -0
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +16 -14
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -7
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js +8 -4
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +14 -0
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +48 -0
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html +68 -0
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js +15 -0
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +59 -2
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +6 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +81 -27
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html +1 -1
  213. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html +2 -2
  214. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  215. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +10 -0
  216. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -1
  217. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +5 -0
  218. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +3 -0
  219. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +7 -0
  220. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +1 -2
  221. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +38 -13
  222. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +1 -0
  223. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +8 -0
  224. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html +1 -1
  225. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +1 -1
  226. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +1 -1
  227. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +5 -0
  228. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +7 -0
  229. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +1 -0
  230. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +5 -0
  231. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html +38 -0
  232. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html +1 -1
  233. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +11 -0
  234. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -0
  235. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-repositories.controller.js +6 -22
  236. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html +7 -1
  237. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  238. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  239. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  240. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js +27 -0
  241. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-streams.module.js +15 -0
  242. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html +25 -0
  243. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-repositories.controller.js +6 -22
  244. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html +7 -1
  245. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/repositories-filters.service.js +89 -0
  246. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +4 -5
  247. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +15 -2
  248. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +2 -2
  249. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +15 -11
  250. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +5 -0
  251. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +36 -20
  252. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-module-streams.html +17 -0
  253. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +6 -6
  254. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +9 -0
  255. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +5 -0
  256. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +2 -1
  257. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html +10 -0
  258. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/new-sync-plan-modal.controller.js +6 -2
  259. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/repository-sets/repository-set.factory.js +1 -1
  260. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js +20 -3
  261. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details.controller.js +2 -1
  262. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html +23 -4
  263. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/new-sync-plan.controller.js +10 -6
  264. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html +11 -3
  265. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plan-helper.service.js +3 -3
  266. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +5 -1
  267. data/engines/bastion_katello/lib/bastion_katello/engine.rb +2 -2
  268. data/lib/katello/engine.rb +7 -12
  269. data/lib/katello/permission_creator.rb +5 -1
  270. data/lib/katello/permissions/host_permissions.rb +1 -0
  271. data/lib/katello/plugin.rb +38 -14
  272. data/lib/katello/tasks/clean_backend_objects.rake +7 -3
  273. data/lib/katello/tasks/reimport.rake +1 -0
  274. data/lib/katello/tasks/repository.rake +11 -8
  275. data/lib/katello/tasks/upgrades/3.9/migrate_sync_plans.rake +29 -0
  276. data/lib/katello/version.rb +1 -1
  277. data/package.json +11 -7
  278. data/webpack/__mocks__/foremanReact/common/I18n.js +5 -0
  279. data/webpack/components/MultiSelect/index.js +15 -3
  280. data/webpack/components/PaginationRow/index.js +1 -1
  281. data/webpack/components/Search/__snapshots__/Search.test.js.snap +1 -0
  282. data/webpack/components/Search/index.js +5 -1
  283. data/webpack/components/SelectOrg/SetOrganization.js +2 -1
  284. data/webpack/components/WithOrganization/__snapshots__/withOrganization.test.js.snap +41 -0
  285. data/webpack/components/WithOrganization/withOrganization.js +42 -10
  286. data/webpack/components/WithOrganization/withOrganization.test.js +26 -0
  287. data/webpack/containers/Application/Headers.js +11 -0
  288. data/webpack/containers/Application/Routes.js +1 -1
  289. data/webpack/containers/Application/config.js +23 -7
  290. data/webpack/containers/Application/withHeaders.js +15 -0
  291. data/webpack/move_to_foreman/common/helpers.js +72 -8
  292. data/webpack/move_to_foreman/components/common/ConfirmDialog/ConfirmDialog.js +1 -0
  293. data/webpack/move_to_foreman/components/common/Dialog/Dialog.js +1 -0
  294. data/webpack/move_to_foreman/components/common/EmptyState/index.js +1 -0
  295. data/webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.js +1 -1
  296. data/webpack/move_to_foreman/components/common/table/formatters/selectionCellFormatter.js +1 -0
  297. data/webpack/move_to_pf/OptionTooltip/OptionTooltip.scss +20 -0
  298. data/webpack/move_to_pf/OptionTooltip/__tests__/OptionTooltip.test.js +32 -0
  299. data/webpack/move_to_pf/OptionTooltip/__tests__/__snapshots__/OptionTooltip.test.js.snap +84 -0
  300. data/webpack/move_to_pf/OptionTooltip/index.js +83 -0
  301. data/webpack/move_to_pf/TypeAhead/TypeAhead.js +15 -2
  302. data/webpack/move_to_pf/react-bootstrap-select/index.js +10 -4
  303. data/webpack/move_to_pf/test-utils/testHelpers.js +14 -2
  304. data/webpack/redux/actions/RedHatRepositories/enabled.js +29 -3
  305. data/webpack/redux/actions/RedHatRepositories/helpers.js +1 -1
  306. data/webpack/redux/actions/RedHatRepositories/repositorySetRepositories.js +27 -0
  307. data/webpack/redux/consts.js +8 -0
  308. data/webpack/redux/reducers/RedHatRepositories/__tests__/enabled.test.js +62 -0
  309. data/webpack/redux/reducers/RedHatRepositories/{repositorySetRepositories.test.js → __tests__/repositorySetRepositories.test.js} +31 -3
  310. data/webpack/redux/reducers/RedHatRepositories/{sets.test.js → __tests__/sets.test.js} +3 -3
  311. data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +16 -0
  312. data/webpack/redux/reducers/RedHatRepositories/enabled.js +34 -18
  313. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.fixtures.js +10 -0
  314. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.js +39 -48
  315. data/webpack/redux/reducers/index.js +6 -0
  316. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailArtifacts.js +19 -0
  317. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailInfo.js +51 -0
  318. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +147 -0
  319. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsActions.js +25 -0
  320. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsConstants.js +3 -0
  321. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsReducer.js +33 -0
  322. data/webpack/scenes/ModuleStreams/Details/Profiles/ModuleStreamDetailProfiles.js +19 -0
  323. data/webpack/scenes/ModuleStreams/Details/Profiles/ProfileRpmsCellFormatter.js +53 -0
  324. data/webpack/scenes/ModuleStreams/Details/Profiles/ProfileRpmsCellFormatter.scss +4 -0
  325. data/webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js +35 -0
  326. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ModuleStreamDetailProfiles.test.js +14 -0
  327. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ProfileRpmsCellFormatter.test.js +24 -0
  328. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/__snapshots__/ModuleStreamDetailProfiles.test.js.snap +126 -0
  329. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/__snapshots__/ProfileRpmsCellFormatter.test.js.snap +14 -0
  330. data/webpack/scenes/ModuleStreams/Details/Repositories/ModuleStreamDetailRepositories.js +19 -0
  331. data/webpack/scenes/ModuleStreams/Details/Repositories/TableSchema.js +39 -0
  332. data/webpack/scenes/ModuleStreams/Details/Repositories/__tests__/ModuleStreamDetailRepositories.test.js +14 -0
  333. data/webpack/scenes/ModuleStreams/Details/Repositories/__tests__/__snapshots__/ModuleStreamDetailRepositories.test.js.snap +70 -0
  334. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailArtifacts.test.js +14 -0
  335. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailInfo.test.js +14 -0
  336. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetails.test.js +27 -0
  337. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailsActions.test.js +42 -0
  338. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailsReducer.test.js +33 -0
  339. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailArtifacts.test.js.snap +18 -0
  340. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +111 -0
  341. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +552 -0
  342. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailsActions.test.js.snap +144 -0
  343. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailsReducer.test.js.snap +50 -0
  344. data/webpack/scenes/ModuleStreams/Details/__tests__/moduleStreamDetails.fixtures.js +115 -0
  345. data/webpack/scenes/ModuleStreams/Details/index.js +17 -0
  346. data/webpack/scenes/ModuleStreams/ModuleStreamsActions.js +29 -0
  347. data/webpack/scenes/ModuleStreams/ModuleStreamsConstants.js +3 -0
  348. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +98 -0
  349. data/webpack/scenes/ModuleStreams/ModuleStreamsReducer.js +43 -0
  350. data/webpack/scenes/ModuleStreams/ModuleStreamsTable.js +38 -0
  351. data/webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js +69 -0
  352. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamPage.test.js +27 -0
  353. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsActions.test.js +49 -0
  354. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsReducer.test.js +46 -0
  355. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js +25 -0
  356. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +69 -0
  357. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +95 -0
  358. data/webpack/scenes/ModuleStreams/__tests__/moduleStreams.fixtures.js +72 -0
  359. data/webpack/scenes/ModuleStreams/index.js +17 -0
  360. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +120 -0
  361. data/webpack/scenes/RedHatRepositories/components/{EnabledRepository.stories.js → EnabledRepository/EnabledRepository.stories.js} +0 -0
  362. data/webpack/scenes/RedHatRepositories/components/{EnabledRepositoryContent.js → EnabledRepository/EnabledRepositoryContent.js} +0 -0
  363. data/webpack/scenes/RedHatRepositories/components/{__tests__ → EnabledRepository/__tests__}/EnabledRepository.test.js +6 -2
  364. data/webpack/scenes/RedHatRepositories/components/{__tests__ → EnabledRepository/__tests__}/EnabledRepositoryContent.test.js +0 -0
  365. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/__snapshots__/EnabledRepository.test.js.snap +31 -0
  366. data/webpack/scenes/RedHatRepositories/components/{__tests__ → EnabledRepository/__tests__}/__snapshots__/EnabledRepositoryContent.test.js.snap +0 -0
  367. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/index.js +17 -0
  368. data/webpack/scenes/RedHatRepositories/components/RepositorySet.js +1 -1
  369. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +43 -5
  370. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositoriesHelpers.js +3 -0
  371. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/RepositorySetRepository.js +168 -0
  372. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/__test__/RepositorySetRepository.test.js +38 -0
  373. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/__test__/__snapshots__/RepositorySetRepository.test.js.snap +70 -0
  374. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/index.js +18 -0
  375. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +4 -3
  376. data/webpack/scenes/RedHatRepositories/components/__tests__/RepositorySetRepositories.test.js +44 -0
  377. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +48 -0
  378. data/webpack/scenes/RedHatRepositories/helpers.js +19 -15
  379. data/webpack/scenes/RedHatRepositories/index.js +1 -3
  380. data/webpack/scenes/RedHatRepositories/index.scss +16 -0
  381. data/webpack/scenes/Settings/Tables/TableActions.js +73 -0
  382. data/webpack/scenes/Settings/Tables/TableConstants.js +11 -0
  383. data/webpack/scenes/Settings/Tables/TableHelpers.js +8 -0
  384. data/webpack/scenes/Settings/Tables/TableReducer.js +46 -0
  385. data/webpack/scenes/Settings/Tables/__tests__/Table.fixtures.js +125 -0
  386. data/webpack/scenes/Settings/Tables/__tests__/TableActions.test.js +84 -0
  387. data/webpack/scenes/Settings/Tables/__tests__/TableReducer.test.js +41 -0
  388. data/webpack/scenes/Settings/Tables/__tests__/__snapshots__/TableReducer.test.js.snap +76 -0
  389. data/webpack/scenes/Settings/index.js +4 -0
  390. data/webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js +2 -0
  391. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +1 -1
  392. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -0
  393. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +1 -0
  394. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js +20 -13
  395. data/webpack/scenes/Subscriptions/Details/{SubscriptionDetailEnabledProducts.js → SubscriptionDetailProductContent.js} +5 -5
  396. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +3 -3
  397. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +7 -6
  398. data/webpack/scenes/Subscriptions/Details/__tests__/{SubscriptionDetailEnabledProducts.test.js → SubscriptionDetailProductContent.test.js} +4 -4
  399. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +2 -2
  400. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap +28 -16
  401. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/{SubscriptionDetailEnabledProducts.test.js.snap → SubscriptionDetailProductContent.test.js.snap} +1 -1
  402. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +16 -16
  403. data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +1 -1
  404. data/webpack/scenes/Subscriptions/Manifest/DeleteManifestModalText.js +2 -0
  405. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +38 -61
  406. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +4 -0
  407. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js +1 -0
  408. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +3 -3
  409. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +12 -3
  410. data/webpack/scenes/Subscriptions/SubscriptionActions.js +26 -0
  411. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +56 -0
  412. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +26 -11
  413. data/webpack/scenes/Subscriptions/SubscriptionValidations.js +1 -0
  414. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +144 -39
  415. data/webpack/scenes/Subscriptions/SubscriptionsPage.scss +7 -0
  416. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +10 -16
  417. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +1 -0
  418. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +1 -1
  419. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsActions.test.js +11 -1
  420. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +15 -2
  421. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +12 -0
  422. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +19 -0
  423. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +87 -0
  424. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +1 -1
  425. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionTypeFormatter.js +31 -0
  426. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +16 -11
  427. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +18 -3
  428. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionTypeFormatter.test.js +33 -0
  429. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +29 -0
  430. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionTypeFormatter.test.js.snap +34 -0
  431. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -43
  432. data/webpack/scenes/Subscriptions/index.js +24 -7
  433. data/webpack/scenes/Tasks/TaskActions.js +43 -19
  434. data/webpack/scenes/Tasks/TaskConstants.js +1 -0
  435. data/webpack/scenes/Tasks/__tests__/TaskActions.test.js +15 -12
  436. data/webpack/scenes/Tasks/helpers.js +17 -27
  437. data/webpack/services/api/index.js +3 -0
  438. metadata +160 -52
  439. data/app/lib/actions/katello/repository/scheduled_sync.rb +0 -15
  440. data/app/lib/actions/katello/sync_plan/add_products.rb +0 -27
  441. data/app/lib/actions/katello/sync_plan/destroy.rb +0 -26
  442. data/app/lib/actions/katello/sync_plan/remove_products.rb +0 -23
  443. data/app/lib/actions/katello/sync_plan/update.rb +0 -20
  444. data/app/lib/actions/pulp/repos/update.rb +0 -24
  445. data/app/lib/actions/pulp/repository/ensure_sync_notification.rb +0 -11
  446. data/app/lib/actions/pulp/repository/remove_schedule.rb +0 -16
  447. data/app/lib/actions/pulp/repository/update_schedule.rb +0 -47
  448. data/app/lib/katello/validators/repository_unique_attribute_validator.rb +0 -13
  449. data/app/models/katello/candlepin/docker_repository_mapper.rb +0 -77
  450. data/app/models/katello/input_template_renderer.rb +0 -7
  451. data/lib/katello/tasks/upgrades/2.4/import_distributions.rake +0 -11
  452. data/lib/katello/tasks/upgrades/2.4/import_package_groups.rake +0 -11
  453. data/lib/katello/tasks/upgrades/2.4/import_puppet_modules.rake +0 -12
  454. data/lib/katello/tasks/upgrades/2.4/import_rpms.rake +0 -12
  455. data/lib/katello/tasks/upgrades/3.0/add_export_distributor.rake +0 -14
  456. data/lib/katello/tasks/upgrades/3.0/delete_docker_v1_content.rake +0 -27
  457. data/lib/katello/tasks/upgrades/3.0/update_puppet_repository_distributors.rake +0 -20
  458. data/lib/katello/tasks/upgrades/3.0/update_subscription_facet_backend_data.rake +0 -9
  459. data/lib/katello/tasks/upgrades/3.3/hypervisors.rake +0 -7
  460. data/lib/katello/tasks/upgrades/3.4/reindex_docker_tags.rake +0 -12
  461. data/lib/katello/tasks/upgrades/3.4/remove_unused_products.rake +0 -28
  462. data/lib/katello/tasks/upgrades/3.6/import_backend_consumer_attributes.rake +0 -32
  463. data/lib/katello/tasks/upgrades/3.6/import_product_content.rake +0 -12
  464. data/lib/katello/tasks/upgrades/3.6/republish_file_repos.rake +0 -16
  465. data/lib/katello/tasks/upgrades/3.7/import_pools.rake +0 -12
  466. data/lib/katello/tasks/upgrades/3.7/make_all_ks_repos_bootable.rake +0 -11
  467. data/webpack/helpers/caret.js +0 -6
  468. data/webpack/redux/reducers/RedHatRepositories/enabled.test.js +0 -36
  469. data/webpack/redux/reducers/RedHatRepositories/filters.fixtures.js +0 -5
  470. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +0 -105
  471. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +0 -129
  472. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +0 -25
@@ -1,9 +1,12 @@
1
1
  import React from 'react';
2
- import ReactDOMServer from 'react-dom/server';
3
- import { sprintf } from 'jed';
2
+ import { translate as __ } from 'foremanReact/common/I18n';
4
3
  import helpers from '../../move_to_foreman/common/helpers';
5
4
  import { notify } from '../../move_to_foreman/foreman_toast_notifications';
6
5
 
6
+ const link = id => ({
7
+ children: __('Go to task page'),
8
+ href: helpers.urlBuilder('foreman_tasks/tasks', '', id),
9
+ });
7
10
  const getErrors = task => (
8
11
  <ul>
9
12
  {task.humanized.errors.map(error => (
@@ -13,40 +16,27 @@ const getErrors = task => (
13
16
  );
14
17
 
15
18
  export const renderTaskStartedToast = (task) => {
16
- const message = (
17
- <span>
18
- <span>
19
- {sprintf('Task %s has started.', task.humanized.action)}
20
- {' '}
21
- </span>
22
- <a href={helpers.urlBuilder('foreman_tasks/tasks', '', task.id)}>
23
- {__('Click here to go to the tasks page for the task.')}
24
- </a>
25
- </span>
26
- );
19
+ if (!task) return;
20
+
21
+ const message = (__(`Task ${task.humanized.action} has started.`));
27
22
 
28
23
  notify({
29
- message: ReactDOMServer.renderToStaticMarkup(message),
24
+ message,
30
25
  type: 'info',
26
+ link: link(task.id),
27
+
31
28
  });
32
29
  };
33
30
 
34
31
  export const renderTaskFinishedToast = (task) => {
35
- const message = (
36
- <span>
37
- <span>
38
- {`${__(`Task ${task.humanized.action} completed with a result of ${task.result}.`)}`}
39
- {' '}
40
- </span>
41
- {task.errors ? getErrors(task) : ''}
42
- <a href={helpers.urlBuilder('foreman_tasks/tasks', '', task.id)}>
43
- {__('Click here to go to the tasks page for the task.')}
44
- </a>
45
- </span>
46
- );
32
+ if (!task) return;
33
+
34
+ const message = __(`Task ${task.action} completed with a result of ${task.result}.
35
+ ${task.errors ? getErrors(task) : ''}`);
47
36
 
48
37
  notify({
49
- message: ReactDOMServer.renderToStaticMarkup(message),
38
+ message,
50
39
  type: task.result,
40
+ link: link(task.id),
51
41
  });
52
42
  };
@@ -111,6 +111,7 @@ export const foremanEndpoint = new ForemanEndpoint();
111
111
 
112
112
  // eslint-disable-next-line import/prefer-default-export
113
113
  const orgNode = () => document.getElementById('organization-id');
114
+ const userNode = () => document.getElementById('user-id');
114
115
  // This node does not exist while testing
115
116
  export const orgId = () => {
116
117
  const node = orgNode();
@@ -119,3 +120,5 @@ export const orgId = () => {
119
120
 
120
121
  return id === '' ? currentId : id;
121
122
  };
123
+
124
+ export const userId = () => (userNode() ? userNode().dataset.id : '1');
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: 3.8.1
4
+ version: 3.9.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: 2018-11-13 00:00:00.000000000 Z
11
+ date: 2018-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -156,7 +156,7 @@ dependencies:
156
156
  requirements:
157
157
  - - ">="
158
158
  - !ruby/object:Gem::Version
159
- version: 2.8.1
159
+ version: 2.9.0
160
160
  - - "<"
161
161
  - !ruby/object:Gem::Version
162
162
  version: 3.0.0
@@ -166,7 +166,7 @@ dependencies:
166
166
  requirements:
167
167
  - - ">="
168
168
  - !ruby/object:Gem::Version
169
- version: 2.8.1
169
+ version: 2.9.0
170
170
  - - "<"
171
171
  - !ruby/object:Gem::Version
172
172
  version: 3.0.0
@@ -210,7 +210,7 @@ dependencies:
210
210
  requirements:
211
211
  - - ">="
212
212
  - !ruby/object:Gem::Version
213
- version: 6.1.9
213
+ version: 6.1.13
214
214
  - - "<"
215
215
  - !ruby/object:Gem::Version
216
216
  version: 7.0.0
@@ -220,7 +220,7 @@ dependencies:
220
220
  requirements:
221
221
  - - ">="
222
222
  - !ruby/object:Gem::Version
223
- version: 6.1.9
223
+ version: 6.1.13
224
224
  - - "<"
225
225
  - !ruby/object:Gem::Version
226
226
  version: 7.0.0
@@ -491,6 +491,7 @@ files:
491
491
  - app/controllers/katello/api/v2/host_subscriptions_controller.rb
492
492
  - app/controllers/katello/api/v2/host_tracer_controller.rb
493
493
  - app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb
494
+ - app/controllers/katello/api/v2/module_streams_controller.rb
494
495
  - app/controllers/katello/api/v2/organizations_controller.rb
495
496
  - app/controllers/katello/api/v2/ostree_branches_controller.rb
496
497
  - app/controllers/katello/api/v2/package_groups_controller.rb
@@ -683,6 +684,7 @@ files:
683
684
  - app/lib/actions/katello/repository/clone_yum_metadata.rb
684
685
  - app/lib/actions/katello/repository/correct_checksum.rb
685
686
  - app/lib/actions/katello/repository/create.rb
687
+ - app/lib/actions/katello/repository/create_root.rb
686
688
  - app/lib/actions/katello/repository/destroy.rb
687
689
  - app/lib/actions/katello/repository/destroy_package_group.rb
688
690
  - app/lib/actions/katello/repository/discover.rb
@@ -695,11 +697,11 @@ files:
695
697
  - app/lib/actions/katello/repository/import_upload.rb
696
698
  - app/lib/actions/katello/repository/index_content.rb
697
699
  - app/lib/actions/katello/repository/index_errata.rb
700
+ - app/lib/actions/katello/repository/index_module_streams.rb
698
701
  - app/lib/actions/katello/repository/index_package_groups.rb
699
702
  - app/lib/actions/katello/repository/metadata_generate.rb
700
703
  - app/lib/actions/katello/repository/refresh_repository.rb
701
704
  - app/lib/actions/katello/repository/remove_content.rb
702
- - app/lib/actions/katello/repository/scheduled_sync.rb
703
705
  - app/lib/actions/katello/repository/sync.rb
704
706
  - app/lib/actions/katello/repository/sync_hook.rb
705
707
  - app/lib/actions/katello/repository/update.rb
@@ -709,10 +711,7 @@ files:
709
711
  - app/lib/actions/katello/repository_set/disable_repository.rb
710
712
  - app/lib/actions/katello/repository_set/enable_repository.rb
711
713
  - app/lib/actions/katello/repository_set/scan_cdn.rb
712
- - app/lib/actions/katello/sync_plan/add_products.rb
713
- - app/lib/actions/katello/sync_plan/destroy.rb
714
- - app/lib/actions/katello/sync_plan/remove_products.rb
715
- - app/lib/actions/katello/sync_plan/update.rb
714
+ - app/lib/actions/katello/sync_plan/run.rb
716
715
  - app/lib/actions/katello/upstream_subscriptions/bind_entitlement.rb
717
716
  - app/lib/actions/katello/upstream_subscriptions/bind_entitlements.rb
718
717
  - app/lib/actions/katello/upstream_subscriptions/remove_entitlement.rb
@@ -745,7 +744,6 @@ files:
745
744
  - app/lib/actions/pulp/consumer/update.rb
746
745
  - app/lib/actions/pulp/content_view_puppet_environment/index_content.rb
747
746
  - app/lib/actions/pulp/expect_one_task.rb
748
- - app/lib/actions/pulp/repos/update.rb
749
747
  - app/lib/actions/pulp/repository/abstract_copy_content.rb
750
748
  - app/lib/actions/pulp/repository/abstract_remove_content.rb
751
749
  - app/lib/actions/pulp/repository/associate_distributor.rb
@@ -758,6 +756,8 @@ files:
758
756
  - app/lib/actions/pulp/repository/copy_docker_tag.rb
759
757
  - app/lib/actions/pulp/repository/copy_errata.rb
760
758
  - app/lib/actions/pulp/repository/copy_files.rb
759
+ - app/lib/actions/pulp/repository/copy_module_default.rb
760
+ - app/lib/actions/pulp/repository/copy_module_stream.rb
761
761
  - app/lib/actions/pulp/repository/copy_ostree_branch.rb
762
762
  - app/lib/actions/pulp/repository/copy_package_group.rb
763
763
  - app/lib/actions/pulp/repository/copy_puppet_module.rb
@@ -772,7 +772,6 @@ files:
772
772
  - app/lib/actions/pulp/repository/destroy.rb
773
773
  - app/lib/actions/pulp/repository/distributor_publish.rb
774
774
  - app/lib/actions/pulp/repository/download.rb
775
- - app/lib/actions/pulp/repository/ensure_sync_notification.rb
776
775
  - app/lib/actions/pulp/repository/import_upload.rb
777
776
  - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
778
777
  - app/lib/actions/pulp/repository/presenters/deb_presenter.rb
@@ -794,14 +793,14 @@ files:
794
793
  - app/lib/actions/pulp/repository/remove_docker_tag.rb
795
794
  - app/lib/actions/pulp/repository/remove_errata.rb
796
795
  - app/lib/actions/pulp/repository/remove_file.rb
796
+ - app/lib/actions/pulp/repository/remove_module_default.rb
797
+ - app/lib/actions/pulp/repository/remove_module_stream.rb
797
798
  - app/lib/actions/pulp/repository/remove_package_group.rb
798
799
  - app/lib/actions/pulp/repository/remove_puppet_module.rb
799
800
  - app/lib/actions/pulp/repository/remove_rpm.rb
800
- - app/lib/actions/pulp/repository/remove_schedule.rb
801
801
  - app/lib/actions/pulp/repository/remove_yum_metadata_file.rb
802
802
  - app/lib/actions/pulp/repository/sync.rb
803
803
  - app/lib/actions/pulp/repository/update_importer.rb
804
- - app/lib/actions/pulp/repository/update_schedule.rb
805
804
  - app/lib/actions/pulp/repository/upload_file.rb
806
805
  - app/lib/actions/pulp/repository_group/create.rb
807
806
  - app/lib/actions/pulp/repository_group/delete.rb
@@ -814,6 +813,7 @@ files:
814
813
  - app/lib/katello/api/version2.rb
815
814
  - app/lib/katello/bulk_actions.rb
816
815
  - app/lib/katello/capsule_content.rb
816
+ - app/lib/katello/concerns/base_template_scope_extensions.rb
817
817
  - app/lib/katello/concerns/renderer_extensions.rb
818
818
  - app/lib/katello/errors.rb
819
819
  - app/lib/katello/foreman.rb
@@ -880,7 +880,7 @@ files:
880
880
  - app/lib/katello/validators/prior_validator.rb
881
881
  - app/lib/katello/validators/product_unique_attribute_validator.rb
882
882
  - app/lib/katello/validators/repo_disablement_validator.rb
883
- - app/lib/katello/validators/repository_unique_attribute_validator.rb
883
+ - app/lib/katello/validators/root_repository_unique_attribute_validator.rb
884
884
  - app/lib/katello/validators/self_reference_environment_validator.rb
885
885
  - app/lib/katello/validators/unique_field_in_org.rb
886
886
  - app/mailers/katello/errata_mailer.rb
@@ -899,10 +899,10 @@ files:
899
899
  - app/models/katello/authorization/repository.rb
900
900
  - app/models/katello/authorization/subscription.rb
901
901
  - app/models/katello/authorization/sync_plan.rb
902
- - app/models/katello/candlepin/docker_repository_mapper.rb
903
902
  - app/models/katello/candlepin/repository_mapper.rb
904
903
  - app/models/katello/capsule_lifecycle_environment.rb
905
904
  - app/models/katello/compliance_reason.rb
905
+ - app/models/katello/concerns/audit_search.rb
906
906
  - app/models/katello/concerns/container_extensions.rb
907
907
  - app/models/katello/concerns/content_facet_host_extensions.rb
908
908
  - app/models/katello/concerns/content_view_filter_rule_common.rb
@@ -915,7 +915,9 @@ files:
915
915
  - app/models/katello/concerns/operatingsystem_extensions.rb
916
916
  - app/models/katello/concerns/organization_extensions.rb
917
917
  - app/models/katello/concerns/pulp_database_unit.rb
918
+ - app/models/katello/concerns/recurring_logic_extensions.rb
918
919
  - app/models/katello/concerns/redhat_extensions.rb
920
+ - app/models/katello/concerns/search_by_repository_name.rb
919
921
  - app/models/katello/concerns/setting_extensions.rb
920
922
  - app/models/katello/concerns/smart_proxy_extensions.rb
921
923
  - app/models/katello/concerns/subscription_facet_host_extensions.rb
@@ -986,12 +988,15 @@ files:
986
988
  - app/models/katello/host_collection_hosts.rb
987
989
  - app/models/katello/host_installed_package.rb
988
990
  - app/models/katello/host_tracer.rb
989
- - app/models/katello/input_template_renderer.rb
990
991
  - app/models/katello/installed_package.rb
991
992
  - app/models/katello/installed_product.rb
992
993
  - app/models/katello/key_host_collection.rb
993
994
  - app/models/katello/kt_environment.rb
994
995
  - app/models/katello/model.rb
996
+ - app/models/katello/module_profile.rb
997
+ - app/models/katello/module_profile_rpm.rb
998
+ - app/models/katello/module_stream.rb
999
+ - app/models/katello/module_stream_artifact.rb
995
1000
  - app/models/katello/ostree_branch.rb
996
1001
  - app/models/katello/package_group.rb
997
1002
  - app/models/katello/ping.rb
@@ -1006,12 +1011,18 @@ files:
1006
1011
  - app/models/katello/pulp_sync_status.rb
1007
1012
  - app/models/katello/pulp_task_status.rb
1008
1013
  - app/models/katello/puppet_module.rb
1014
+ - app/models/katello/purpose_addons_status.rb
1015
+ - app/models/katello/purpose_role_status.rb
1016
+ - app/models/katello/purpose_sla_status.rb
1017
+ - app/models/katello/purpose_status.rb
1018
+ - app/models/katello/purpose_usage_status.rb
1009
1019
  - app/models/katello/repository.rb
1010
1020
  - app/models/katello/repository_deb.rb
1011
1021
  - app/models/katello/repository_docker_manifest.rb
1012
1022
  - app/models/katello/repository_docker_manifest_list.rb
1013
1023
  - app/models/katello/repository_erratum.rb
1014
1024
  - app/models/katello/repository_file.rb
1025
+ - app/models/katello/repository_module_stream.rb
1015
1026
  - app/models/katello/repository_ostree_branch.rb
1016
1027
  - app/models/katello/repository_package_group.rb
1017
1028
  - app/models/katello/repository_puppet_module.rb
@@ -1020,6 +1031,7 @@ files:
1020
1031
  - app/models/katello/rhsm_fact_importer.rb
1021
1032
  - app/models/katello/rhsm_fact_name.rb
1022
1033
  - app/models/katello/rhsm_fact_parser.rb
1034
+ - app/models/katello/root_repository.rb
1023
1035
  - app/models/katello/rpm.rb
1024
1036
  - app/models/katello/srpm.rb
1025
1037
  - app/models/katello/subscription.rb
@@ -1053,6 +1065,7 @@ files:
1053
1065
  - app/services/katello/candlepin/message_handler.rb
1054
1066
  - app/services/katello/candlepin/pool_service.rb
1055
1067
  - app/services/katello/event_queue.rb
1068
+ - app/services/katello/managed_content_medium_provider.rb
1056
1069
  - app/services/katello/product_content_finder.rb
1057
1070
  - app/services/katello/proxy_status/pulp.rb
1058
1071
  - app/services/katello/proxy_status/pulp_node.rb
@@ -1065,15 +1078,18 @@ files:
1065
1078
  - app/services/katello/pulp/docker_tag.rb
1066
1079
  - app/services/katello/pulp/erratum.rb
1067
1080
  - app/services/katello/pulp/file_unit.rb
1081
+ - app/services/katello/pulp/module_stream.rb
1068
1082
  - app/services/katello/pulp/ostree_branch.rb
1069
1083
  - app/services/katello/pulp/package_group.rb
1070
1084
  - app/services/katello/pulp/pulp_content_unit.rb
1071
1085
  - app/services/katello/pulp/puppet_module.rb
1086
+ - app/services/katello/pulp/repository.rb
1072
1087
  - app/services/katello/pulp/rpm.rb
1073
1088
  - app/services/katello/pulp/server.rb
1074
1089
  - app/services/katello/pulp/simple_package.rb
1075
1090
  - app/services/katello/pulp/srpm.rb
1076
1091
  - app/services/katello/puppet_class_importer_extensions.rb
1092
+ - app/services/katello/pxe_files_downloader.rb
1077
1093
  - app/services/katello/registration_manager.rb
1078
1094
  - app/services/katello/repository_type.rb
1079
1095
  - app/services/katello/repository_type_manager.rb
@@ -1167,8 +1183,10 @@ files:
1167
1183
  - app/views/katello/api/v2/content_views/show.json.rabl
1168
1184
  - app/views/katello/api/v2/content_views/version.json.rabl
1169
1185
  - app/views/katello/api/v2/debs/base.json.rabl
1186
+ - app/views/katello/api/v2/debs/compare.json.rabl
1170
1187
  - app/views/katello/api/v2/debs/index.json.rabl
1171
1188
  - app/views/katello/api/v2/debs/show.json.rabl
1189
+ - app/views/katello/api/v2/docker_manifest_lists/compare.json.rabl
1172
1190
  - app/views/katello/api/v2/docker_manifest_lists/index.json.rabl
1173
1191
  - app/views/katello/api/v2/docker_manifest_lists/show.json.rabl
1174
1192
  - app/views/katello/api/v2/docker_manifests/compare.json.rabl
@@ -1220,6 +1238,7 @@ files:
1220
1238
  - app/views/katello/api/v2/host_tracer/index.json.rabl
1221
1239
  - app/views/katello/api/v2/hostgroups_extensions/show.json.rabl
1222
1240
  - app/views/katello/api/v2/hosts/base.json.rabl
1241
+ - app/views/katello/api/v2/hosts/host_collections.json.rabl
1223
1242
  - app/views/katello/api/v2/hosts/index.json.rabl
1224
1243
  - app/views/katello/api/v2/hosts/show.json.rabl
1225
1244
  - app/views/katello/api/v2/hosts_bulk_actions/applicable_errata.json.rabl
@@ -1230,6 +1249,11 @@ files:
1230
1249
  - app/views/katello/api/v2/layouts/collection.json.erb
1231
1250
  - app/views/katello/api/v2/layouts/index.json.erb
1232
1251
  - app/views/katello/api/v2/layouts/resource.json.erb
1252
+ - app/views/katello/api/v2/module_streams/base.json.rabl
1253
+ - app/views/katello/api/v2/module_streams/index.json.rabl
1254
+ - app/views/katello/api/v2/module_streams/name_stream.json.rabl
1255
+ - app/views/katello/api/v2/module_streams/name_streams.json.rabl
1256
+ - app/views/katello/api/v2/module_streams/show.json.rabl
1233
1257
  - app/views/katello/api/v2/organizations/index.json.rabl
1234
1258
  - app/views/katello/api/v2/organizations/show.json.rabl
1235
1259
  - app/views/katello/api/v2/ostree_branches/compare.json.rabl
@@ -1274,6 +1298,7 @@ files:
1274
1298
  - app/views/katello/api/v2/repository_sets/index.json.rabl
1275
1299
  - app/views/katello/api/v2/repository_sets/show.json.rabl
1276
1300
  - app/views/katello/api/v2/root/resource_list.json.rabl
1301
+ - app/views/katello/api/v2/smart_proxies/download_policy.json.rabl
1277
1302
  - app/views/katello/api/v2/subscription_facet/base.json.rabl
1278
1303
  - app/views/katello/api/v2/subscription_facet/base_with_root.json.rabl
1279
1304
  - app/views/katello/api/v2/subscription_facet/show.json.rabl
@@ -1567,8 +1592,21 @@ files:
1567
1592
  - db/migrate/20180612165011_remove_content_fields_from_host.rb
1568
1593
  - db/migrate/20180614184822_add_unauthenticated_pull.rb
1569
1594
  - db/migrate/20180618195941_add_description_to_repository.rb
1595
+ - db/migrate/20180622105300_add_docker_tags_whitelist_to_repository.rb
1570
1596
  - db/migrate/20180626160422_add_upstream_pool_id_to_katello_pool.rb
1597
+ - db/migrate/20180725083800_change_repository_password_length.rb
1598
+ - db/migrate/20180806205420_add_index_to_content_view_version.rb
1599
+ - db/migrate/20180807145652_create_katello_module_streams.rb
1600
+ - db/migrate/20180807164405_remove_repository_cp_label.rb
1601
+ - db/migrate/20180808013432_add_system_purpose_attrs.rb
1602
+ - db/migrate/20180814202747_add_recurring_logic_to_sync_plan.rb
1603
+ - db/migrate/20180816142044_add_description_to_katello_module_streams.rb
1604
+ - db/migrate/20180821144248_add_cron_logic_to_sync_plans.rb
1605
+ - db/migrate/20180828161400_remove_join_table_for_role_and_usage.rb
1571
1606
  - db/migrate/20180917173645_add_source_repo_checksum_type_to_katello_repositories.rb
1607
+ - db/migrate/20180920123913_drop_repo_module_streams_timestamp_not_null.rb
1608
+ - db/migrate/20180920171008_change_repository_password_to_text.rb
1609
+ - db/migrate/20180920214134_create_repository_root.rb
1572
1610
  - db/seeds.d/101-locations.rb
1573
1611
  - db/seeds.d/102-organizations.rb
1574
1612
  - db/seeds.d/104-proxy.rb
@@ -1577,6 +1615,9 @@ files:
1577
1615
  - db/seeds.d/108-subcription-bookmarks.rb
1578
1616
  - db/seeds.d/109-katello-notification-blueprints.rb
1579
1617
  - db/seeds.d/110-content-view-autopublish.rb
1618
+ - db/seeds.d/111-container-image-bookmarks.rb
1619
+ - db/seeds.d/111-upgrade_tasks.rb
1620
+ - db/seeds.d/150-module_job_templates.rb
1580
1621
  - db/seeds.d/75-job_templates.rb
1581
1622
  - engines/bastion_katello/README.md
1582
1623
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-key.factory.js
@@ -1619,6 +1660,7 @@ files:
1619
1660
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/capsules/capsules.module.js
1620
1661
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/api-error-handler.service.js
1621
1662
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/common.module.js
1663
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/module-stream-actions.service.js
1622
1664
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/select-action-dropdown.directive.js
1623
1665
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/registration.html
1624
1666
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/select-action-dropdown.html
@@ -1642,10 +1684,12 @@ files:
1642
1684
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-environment-modal.controller.js
1643
1685
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js
1644
1686
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-host-collections-modal.controller.js
1687
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-module-streams-modal.controller.js
1645
1688
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js
1646
1689
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-release-version-modal.controller.js
1647
1690
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js
1648
1691
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js
1692
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1649
1693
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-destroy-modal.html
1650
1694
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1651
1695
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
@@ -1663,12 +1707,14 @@ files:
1663
1707
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.module.js
1664
1708
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js
1665
1709
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js
1710
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js
1666
1711
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-actions.controller.js
1667
1712
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js
1668
1713
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js
1669
1714
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js
1670
1715
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js
1671
1716
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
1717
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
1672
1718
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
1673
1719
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
1674
1720
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
@@ -1802,6 +1848,7 @@ files:
1802
1848
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
1803
1849
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
1804
1850
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
1851
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html
1805
1852
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html
1806
1853
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
1807
1854
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
@@ -1842,6 +1889,7 @@ files:
1842
1889
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1843
1890
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
1844
1891
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
1892
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
1845
1893
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html
1846
1894
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
1847
1895
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html
@@ -1931,6 +1979,9 @@ files:
1931
1979
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
1932
1980
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/zanata.xml
1933
1981
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
1982
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-stream.factory.js
1983
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/module-streams.module.js
1984
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
1934
1985
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/check-current-organization.run.js
1935
1986
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js
1936
1987
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization-selector.controller.js
@@ -1961,6 +2012,7 @@ files:
1961
2012
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js
1962
2013
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.module.js
1963
2014
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.routes.js
2015
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/repositories-filters.service.js
1964
2016
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages.html
1965
2017
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js
1966
2018
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
@@ -1986,6 +2038,7 @@ files:
1986
2038
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
1987
2039
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html
1988
2040
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
2041
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-module-streams.html
1989
2042
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ostree-branches.html
1990
2043
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-package-groups.html
1991
2044
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
@@ -2154,23 +2207,8 @@ files:
2154
2207
  - lib/katello/tasks/unify_hosts.rake
2155
2208
  - lib/katello/tasks/update_subscription_facet_backend_data.rake
2156
2209
  - lib/katello/tasks/upgrade_check.rake
2157
- - lib/katello/tasks/upgrades/2.4/import_distributions.rake
2158
- - lib/katello/tasks/upgrades/2.4/import_package_groups.rake
2159
- - lib/katello/tasks/upgrades/2.4/import_puppet_modules.rake
2160
- - lib/katello/tasks/upgrades/2.4/import_rpms.rake
2161
- - lib/katello/tasks/upgrades/3.0/add_export_distributor.rake
2162
- - lib/katello/tasks/upgrades/3.0/delete_docker_v1_content.rake
2163
- - lib/katello/tasks/upgrades/3.0/update_puppet_repository_distributors.rake
2164
- - lib/katello/tasks/upgrades/3.0/update_subscription_facet_backend_data.rake
2165
- - lib/katello/tasks/upgrades/3.3/hypervisors.rake
2166
- - lib/katello/tasks/upgrades/3.4/reindex_docker_tags.rake
2167
- - lib/katello/tasks/upgrades/3.4/remove_unused_products.rake
2168
- - lib/katello/tasks/upgrades/3.6/import_backend_consumer_attributes.rake
2169
- - lib/katello/tasks/upgrades/3.6/import_product_content.rake
2170
- - lib/katello/tasks/upgrades/3.6/republish_file_repos.rake
2171
- - lib/katello/tasks/upgrades/3.7/import_pools.rake
2172
- - lib/katello/tasks/upgrades/3.7/make_all_ks_repos_bootable.rake
2173
2210
  - lib/katello/tasks/upgrades/3.8/clear_checksum_type.rake
2211
+ - lib/katello/tasks/upgrades/3.9/migrate_sync_plans.rake
2174
2212
  - lib/katello/tasks/virt_who_report.rake
2175
2213
  - lib/katello/url_constrained_cookie_store.rb
2176
2214
  - lib/katello/version.rb
@@ -2265,6 +2303,7 @@ files:
2265
2303
  - vendor/assets/stylesheets/katello/jquery.multiselect.filter.css
2266
2304
  - vendor/assets/stylesheets/katello/jquery.treeTable.css.scss
2267
2305
  - vendor/assets/stylesheets/katello/ui.spinner.css.scss
2306
+ - webpack/__mocks__/foremanReact/common/I18n.js
2268
2307
  - webpack/__mocks__/foremanReact/common/helpers.js
2269
2308
  - webpack/__mocks__/foremanReact/components/BreadcrumbBar.js
2270
2309
  - webpack/__mocks__/foremanReact/components/common/table.js
@@ -2283,13 +2322,16 @@ files:
2283
2322
  - webpack/components/SelectOrg/SelectOrgAction.js
2284
2323
  - webpack/components/SelectOrg/SelectOrgReducer.js
2285
2324
  - webpack/components/SelectOrg/SetOrganization.js
2325
+ - webpack/components/WithOrganization/__snapshots__/withOrganization.test.js.snap
2286
2326
  - webpack/components/WithOrganization/withOrganization.js
2327
+ - webpack/components/WithOrganization/withOrganization.test.js
2328
+ - webpack/containers/Application/Headers.js
2287
2329
  - webpack/containers/Application/Routes.js
2288
2330
  - webpack/containers/Application/config.js
2289
2331
  - webpack/containers/Application/index.js
2290
2332
  - webpack/containers/Application/overrides.scss
2333
+ - webpack/containers/Application/withHeaders.js
2291
2334
  - webpack/global_test_setup.js
2292
- - webpack/helpers/caret.js
2293
2335
  - webpack/index.js
2294
2336
  - webpack/mockRequest.js
2295
2337
  - webpack/move_to_foreman/Settings/SettingsActions.js
@@ -2346,6 +2388,10 @@ files:
2346
2388
  - webpack/move_to_pf/LoadingState/LoadingState.test.js
2347
2389
  - webpack/move_to_pf/LoadingState/__snapshots__/LoadingState.test.js.snap
2348
2390
  - webpack/move_to_pf/LoadingState/index.js
2391
+ - webpack/move_to_pf/OptionTooltip/OptionTooltip.scss
2392
+ - webpack/move_to_pf/OptionTooltip/__tests__/OptionTooltip.test.js
2393
+ - webpack/move_to_pf/OptionTooltip/__tests__/__snapshots__/OptionTooltip.test.js.snap
2394
+ - webpack/move_to_pf/OptionTooltip/index.js
2349
2395
  - webpack/move_to_pf/Select/Select.js
2350
2396
  - webpack/move_to_pf/TypeAhead/TypeAhead.js
2351
2397
  - webpack/move_to_pf/TypeAhead/TypeAhead.scss
@@ -2360,18 +2406,61 @@ files:
2360
2406
  - webpack/redux/actions/RedHatRepositories/sets.js
2361
2407
  - webpack/redux/consts.js
2362
2408
  - webpack/redux/index.js
2409
+ - webpack/redux/reducers/RedHatRepositories/__tests__/enabled.test.js
2410
+ - webpack/redux/reducers/RedHatRepositories/__tests__/repositorySetRepositories.test.js
2411
+ - webpack/redux/reducers/RedHatRepositories/__tests__/sets.test.js
2363
2412
  - webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js
2364
2413
  - webpack/redux/reducers/RedHatRepositories/enabled.js
2365
- - webpack/redux/reducers/RedHatRepositories/enabled.test.js
2366
- - webpack/redux/reducers/RedHatRepositories/filters.fixtures.js
2367
2414
  - webpack/redux/reducers/RedHatRepositories/index.js
2368
2415
  - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.fixtures.js
2369
2416
  - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.js
2370
- - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.test.js
2371
2417
  - webpack/redux/reducers/RedHatRepositories/sets.fixtures.js
2372
2418
  - webpack/redux/reducers/RedHatRepositories/sets.js
2373
- - webpack/redux/reducers/RedHatRepositories/sets.test.js
2374
2419
  - webpack/redux/reducers/index.js
2420
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailArtifacts.js
2421
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailInfo.js
2422
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js
2423
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsActions.js
2424
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsConstants.js
2425
+ - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsReducer.js
2426
+ - webpack/scenes/ModuleStreams/Details/Profiles/ModuleStreamDetailProfiles.js
2427
+ - webpack/scenes/ModuleStreams/Details/Profiles/ProfileRpmsCellFormatter.js
2428
+ - webpack/scenes/ModuleStreams/Details/Profiles/ProfileRpmsCellFormatter.scss
2429
+ - webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js
2430
+ - webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ModuleStreamDetailProfiles.test.js
2431
+ - webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ProfileRpmsCellFormatter.test.js
2432
+ - webpack/scenes/ModuleStreams/Details/Profiles/__tests__/__snapshots__/ModuleStreamDetailProfiles.test.js.snap
2433
+ - webpack/scenes/ModuleStreams/Details/Profiles/__tests__/__snapshots__/ProfileRpmsCellFormatter.test.js.snap
2434
+ - webpack/scenes/ModuleStreams/Details/Repositories/ModuleStreamDetailRepositories.js
2435
+ - webpack/scenes/ModuleStreams/Details/Repositories/TableSchema.js
2436
+ - webpack/scenes/ModuleStreams/Details/Repositories/__tests__/ModuleStreamDetailRepositories.test.js
2437
+ - webpack/scenes/ModuleStreams/Details/Repositories/__tests__/__snapshots__/ModuleStreamDetailRepositories.test.js.snap
2438
+ - webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailArtifacts.test.js
2439
+ - webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailInfo.test.js
2440
+ - webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetails.test.js
2441
+ - webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailsActions.test.js
2442
+ - webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailsReducer.test.js
2443
+ - webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailArtifacts.test.js.snap
2444
+ - webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap
2445
+ - webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap
2446
+ - webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailsActions.test.js.snap
2447
+ - webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailsReducer.test.js.snap
2448
+ - webpack/scenes/ModuleStreams/Details/__tests__/moduleStreamDetails.fixtures.js
2449
+ - webpack/scenes/ModuleStreams/Details/index.js
2450
+ - webpack/scenes/ModuleStreams/ModuleStreamsActions.js
2451
+ - webpack/scenes/ModuleStreams/ModuleStreamsConstants.js
2452
+ - webpack/scenes/ModuleStreams/ModuleStreamsPage.js
2453
+ - webpack/scenes/ModuleStreams/ModuleStreamsReducer.js
2454
+ - webpack/scenes/ModuleStreams/ModuleStreamsTable.js
2455
+ - webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js
2456
+ - webpack/scenes/ModuleStreams/__tests__/ModuleStreamPage.test.js
2457
+ - webpack/scenes/ModuleStreams/__tests__/ModuleStreamsActions.test.js
2458
+ - webpack/scenes/ModuleStreams/__tests__/ModuleStreamsReducer.test.js
2459
+ - webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js
2460
+ - webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap
2461
+ - webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap
2462
+ - webpack/scenes/ModuleStreams/__tests__/moduleStreams.fixtures.js
2463
+ - webpack/scenes/ModuleStreams/index.js
2375
2464
  - webpack/scenes/Organizations/OrganizationActions.js
2376
2465
  - webpack/scenes/Organizations/OrganizationConstants.js
2377
2466
  - webpack/scenes/Organizations/OrganizationReducer.js
@@ -2382,51 +2471,67 @@ files:
2382
2471
  - webpack/scenes/Products/ProductConstants.js
2383
2472
  - webpack/scenes/Products/__tests__/ProductActions.test.js
2384
2473
  - webpack/scenes/Products/__tests__/products.fixtures.js
2385
- - webpack/scenes/RedHatRepositories/components/EnabledRepository.js
2386
- - webpack/scenes/RedHatRepositories/components/EnabledRepository.stories.js
2387
- - webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js
2474
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js
2475
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.stories.js
2476
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js
2477
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js
2478
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepositoryContent.test.js
2479
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/__snapshots__/EnabledRepository.test.js.snap
2480
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap
2481
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository/index.js
2388
2482
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js
2389
2483
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.scss
2390
2484
  - webpack/scenes/RedHatRepositories/components/RepositorySet.js
2391
2485
  - webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js
2392
- - webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js
2486
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepositoriesHelpers.js
2487
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepository/RepositorySetRepository.js
2488
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepository/__test__/RepositorySetRepository.test.js
2489
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepository/__test__/__snapshots__/RepositorySetRepository.test.js.snap
2490
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepository/index.js
2393
2491
  - webpack/scenes/RedHatRepositories/components/RepositoryTypeIcon.js
2394
2492
  - webpack/scenes/RedHatRepositories/components/Search.js
2395
2493
  - webpack/scenes/RedHatRepositories/components/SearchBar.js
2396
- - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js
2397
- - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js
2398
2494
  - webpack/scenes/RedHatRepositories/components/__tests__/RecommendedRepositorySetsToggler.test.js
2495
+ - webpack/scenes/RedHatRepositories/components/__tests__/RepositorySetRepositories.test.js
2399
2496
  - webpack/scenes/RedHatRepositories/components/__tests__/RepositoryTypeIcon.test.js
2400
- - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap
2401
- - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap
2402
2497
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap
2498
+ - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap
2403
2499
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositoryTypeIcon.test.js.snap
2404
2500
  - webpack/scenes/RedHatRepositories/helpers.js
2405
2501
  - webpack/scenes/RedHatRepositories/index.js
2406
2502
  - webpack/scenes/RedHatRepositories/index.scss
2503
+ - webpack/scenes/Settings/Tables/TableActions.js
2504
+ - webpack/scenes/Settings/Tables/TableConstants.js
2505
+ - webpack/scenes/Settings/Tables/TableHelpers.js
2506
+ - webpack/scenes/Settings/Tables/TableReducer.js
2507
+ - webpack/scenes/Settings/Tables/__tests__/Table.fixtures.js
2508
+ - webpack/scenes/Settings/Tables/__tests__/TableActions.test.js
2509
+ - webpack/scenes/Settings/Tables/__tests__/TableReducer.test.js
2510
+ - webpack/scenes/Settings/Tables/__tests__/__snapshots__/TableReducer.test.js.snap
2511
+ - webpack/scenes/Settings/index.js
2407
2512
  - webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js
2408
2513
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js
2409
2514
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js
2410
2515
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailConstants.js
2411
- - webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js
2412
2516
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js
2413
2517
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js
2518
+ - webpack/scenes/Subscriptions/Details/SubscriptionDetailProductContent.js
2414
2519
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js
2415
2520
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js
2416
2521
  - webpack/scenes/Subscriptions/Details/SubscriptionDetails.js
2417
2522
  - webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss
2418
2523
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailActions.test.js
2419
2524
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailAssociations.test.js
2420
- - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js
2421
2525
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailInfo.test.js
2422
2526
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js
2527
+ - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
2423
2528
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProducts.test.js
2424
2529
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js
2425
2530
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js
2426
2531
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap
2427
- - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap
2428
2532
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap
2429
2533
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap
2534
+ - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProductContent.test.js.snap
2430
2535
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProducts.test.js.snap
2431
2536
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap
2432
2537
  - webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js
@@ -2469,12 +2574,15 @@ files:
2469
2574
  - webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap
2470
2575
  - webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js
2471
2576
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js
2577
+ - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionTypeFormatter.js
2472
2578
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js
2473
2579
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js
2474
2580
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js
2475
2581
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js
2582
+ - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionTypeFormatter.test.js
2476
2583
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js
2477
2584
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap
2585
+ - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionTypeFormatter.test.js.snap
2478
2586
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap
2479
2587
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/index.js
2480
2588
  - webpack/scenes/Subscriptions/index.js
@@ -2503,9 +2611,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
2503
2611
  version: '0'
2504
2612
  required_rubygems_version: !ruby/object:Gem::Requirement
2505
2613
  requirements:
2506
- - - ">="
2614
+ - - ">"
2507
2615
  - !ruby/object:Gem::Version
2508
- version: '0'
2616
+ version: 1.3.1
2509
2617
  requirements: []
2510
2618
  rubyforge_project:
2511
2619
  rubygems_version: 2.6.14.1