katello 3.18.5 → 4.0.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 (239) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/katello/katello.scss +72 -0
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +6 -4
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +0 -19
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -3
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +24 -24
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +4 -0
  9. data/app/controllers/katello/api/v2/content_views_controller.rb +2 -2
  10. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -3
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +3 -19
  12. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +34 -0
  13. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +8 -4
  15. data/app/controllers/katello/concerns/api/v2/authorization.rb +1 -14
  16. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +1 -1
  17. data/app/helpers/katello/sync_management_helper.rb +0 -2
  18. data/app/lib/actions/candlepin/environment/create.rb +1 -1
  19. data/app/lib/actions/candlepin/environment/set_content.rb +1 -1
  20. data/app/lib/actions/katello/activation_key/create.rb +9 -11
  21. data/app/lib/actions/katello/capsule_content/sync.rb +8 -8
  22. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +9 -0
  23. data/app/lib/actions/katello/check_matching_content.rb +17 -0
  24. data/app/lib/actions/katello/content_view/environment_create.rb +6 -8
  25. data/app/lib/actions/katello/content_view/publish.rb +1 -1
  26. data/app/lib/actions/katello/content_view_version/incremental_update.rb +11 -7
  27. data/app/lib/actions/katello/host/hypervisors_update.rb +4 -4
  28. data/app/lib/actions/katello/organization/create.rb +3 -5
  29. data/app/lib/actions/katello/organization/destroy.rb +1 -1
  30. data/app/lib/actions/katello/organization/manifest_delete.rb +3 -5
  31. data/app/lib/actions/katello/organization/manifest_import.rb +1 -1
  32. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
  33. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
  34. data/app/lib/actions/katello/repository/check_matching_content.rb +3 -1
  35. data/app/lib/actions/katello/repository/clone_contents.rb +8 -11
  36. data/app/lib/actions/katello/repository/create.rb +0 -8
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +3 -0
  38. data/app/lib/actions/katello/repository/index_content.rb +1 -0
  39. data/app/lib/actions/katello/repository/multi_clone_contents.rb +9 -12
  40. data/app/lib/actions/katello/repository/sync.rb +1 -5
  41. data/app/lib/actions/katello/repository/update.rb +0 -8
  42. data/app/lib/actions/middleware/execute_if_contents_changed.rb +4 -1
  43. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -6
  44. data/app/lib/actions/pulp3/capsule_content/refresh_distribution.rb +3 -3
  45. data/app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb +1 -2
  46. data/app/lib/actions/pulp3/content_migration_presenter.rb +2 -5
  47. data/app/lib/actions/pulp3/orchestration/repository/refresh_repos.rb +1 -6
  48. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -0
  49. data/app/lib/katello/errors.rb +1 -1
  50. data/app/lib/katello/event_daemon/monitor.rb +53 -0
  51. data/app/lib/katello/event_daemon/runner.rb +99 -0
  52. data/app/lib/katello/logging.rb +32 -0
  53. data/app/lib/katello/messaging/connection.rb +1 -7
  54. data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
  55. data/app/lib/katello/validators/content_view_puppet_module_validator.rb +1 -1
  56. data/app/models/katello/activation_key.rb +2 -2
  57. data/app/models/katello/candlepin/repository_mapper.rb +1 -1
  58. data/app/models/katello/concerns/hostgroup_extensions.rb +2 -4
  59. data/app/models/katello/concerns/organization_extensions.rb +2 -2
  60. data/app/models/katello/concerns/pulp_database_unit.rb +0 -12
  61. data/app/models/katello/concerns/redhat_extensions.rb +8 -9
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -0
  63. data/app/models/katello/content_view.rb +5 -1
  64. data/app/models/katello/content_view_environment.rb +2 -2
  65. data/app/models/katello/content_view_puppet_environment.rb +2 -2
  66. data/app/models/katello/content_view_version.rb +2 -1
  67. data/app/models/katello/content_view_version_export_history.rb +20 -0
  68. data/app/models/katello/erratum.rb +3 -1
  69. data/app/models/katello/file_unit.rb +0 -4
  70. data/app/models/katello/glue/candlepin/pool.rb +2 -0
  71. data/app/models/katello/glue/pulp/repo.rb +0 -6
  72. data/app/models/katello/glue/pulp/repos.rb +1 -22
  73. data/app/models/katello/host/content_facet.rb +31 -9
  74. data/app/models/katello/ping.rb +19 -39
  75. data/app/models/katello/pool.rb +5 -0
  76. data/app/models/katello/product.rb +3 -3
  77. data/app/models/katello/repository.rb +3 -3
  78. data/app/presenters/katello/host_subscription_presenter.rb +3 -4
  79. data/app/presenters/katello/host_subscriptions_presenter.rb +24 -0
  80. data/app/services/katello/applicability/applicable_content_helper.rb +6 -8
  81. data/app/services/katello/candlepin_event_listener.rb +11 -19
  82. data/app/services/katello/event_monitor/poller_thread.rb +2 -11
  83. data/app/services/katello/pulp/repository.rb +2 -4
  84. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -15
  85. data/app/services/katello/pulp3/api/core.rb +0 -14
  86. data/app/services/katello/pulp3/erratum.rb +1 -2
  87. data/app/services/katello/pulp3/migration.rb +9 -83
  88. data/app/services/katello/pulp3/migration_plan.rb +5 -54
  89. data/app/services/katello/pulp3/migration_switchover.rb +5 -36
  90. data/app/services/katello/pulp3/repository/apt.rb +2 -1
  91. data/app/services/katello/pulp3/repository/yum.rb +2 -11
  92. data/app/services/katello/pulp3/repository.rb +13 -34
  93. data/app/services/katello/pulp3/rpm.rb +1 -5
  94. data/app/services/katello/pulp3/task.rb +5 -8
  95. data/app/services/katello/pulp3/task_group.rb +5 -13
  96. data/app/services/katello/repository_type.rb +1 -1
  97. data/app/views/foreman/smart_proxies/_content_tab.html.erb +4 -47
  98. data/app/views/foreman/smart_proxies/show.html.erb +1 -1
  99. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +22 -25
  100. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -9
  102. data/app/views/katello/sync_management/_products.html.erb +1 -1
  103. data/app/views/overrides/organizations/_edit_override.html.erb +1 -4
  104. data/app/views/overrides/smart_proxies/_environment_tab.html.erb +1 -1
  105. data/app/views/overrides/smart_proxies/_environment_tab_pane.html.erb +1 -1
  106. data/config/katello.yaml.example +0 -3
  107. data/config/routes/api/v2.rb +8 -10
  108. data/db/migrate/20191204214919_add_content_view_version_counts.rb +0 -1
  109. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +1 -1
  110. data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +56 -0
  111. data/db/migrate/20210128231228_add_type_and_from_cvv_to_cvv_export_history.rb +14 -0
  112. data/db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb +7 -0
  113. data/db/seeds.d/104-proxy.rb +1 -1
  114. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  115. data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +1 -1
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +17 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +11 -4
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +38 -0
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +5 -0
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +28 -0
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +14 -11
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +2 -2
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -2
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +1 -1
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/download-policy.service.js +0 -1
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +1 -1
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +2 -2
  131. data/lib/katello/engine.rb +4 -5
  132. data/lib/katello/middleware/event_daemon.rb +1 -1
  133. data/lib/katello/permission_creator.rb +3 -2
  134. data/lib/katello/plugin.rb +2 -2
  135. data/lib/katello/tasks/jenkins.rake +1 -1
  136. data/lib/katello/tasks/pulp3_content_switchover.rake +20 -31
  137. data/lib/katello/tasks/pulp3_migration.rake +25 -45
  138. data/lib/katello/tasks/pulp3_migration_abort.rake +0 -8
  139. data/lib/katello/tasks/pulp3_migration_stats.rake +3 -46
  140. data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +16 -0
  141. data/lib/katello/version.rb +1 -1
  142. data/lib/proxy_api/container_gateway.rb +21 -0
  143. data/locale/bn/katello.edit.po +0 -0
  144. data/locale/cs/katello.edit.po +0 -0
  145. data/locale/de/katello.edit.po +0 -0
  146. data/locale/en/katello.edit.po +0 -0
  147. data/locale/es/katello.edit.po +0 -0
  148. data/locale/fr/katello.edit.po +0 -0
  149. data/locale/gu/katello.edit.po +0 -0
  150. data/locale/hi/katello.edit.po +0 -0
  151. data/locale/it/katello.edit.po +0 -0
  152. data/locale/ja/katello.edit.po +0 -0
  153. data/locale/kn/katello.edit.po +0 -0
  154. data/locale/ko/katello.edit.po +0 -0
  155. data/locale/mr/katello.edit.po +0 -0
  156. data/locale/or/katello.edit.po +0 -0
  157. data/locale/pa/katello.edit.po +0 -0
  158. data/locale/pt/katello.edit.po +0 -0
  159. data/locale/pt_BR/katello.edit.po +0 -0
  160. data/locale/ru/katello.edit.po +0 -0
  161. data/locale/ta/katello.edit.po +0 -0
  162. data/locale/te/katello.edit.po +0 -0
  163. data/locale/zh_CN/katello.edit.po +0 -0
  164. data/locale/zh_TW/katello.edit.po +0 -0
  165. data/package.json +1 -1
  166. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +0 -1
  167. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js +2 -0
  168. data/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js +5 -0
  169. data/webpack/{scenes/ContentViews/Details/Repositories → components/SelectableDropdown}/SelectableDropdown.js +20 -3
  170. data/webpack/components/SelectableDropdown/__tests__/SelectableDropdown.test.js +45 -0
  171. data/webpack/components/SelectableDropdown/index.js +3 -0
  172. data/webpack/components/Table/TableWrapper.js +2 -1
  173. data/webpack/components/Table/helpers.js +14 -0
  174. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +0 -1
  175. data/webpack/containers/Application/overrides.scss +6 -0
  176. data/webpack/index.js +6 -0
  177. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  178. data/webpack/scenes/ContentViews/ContentViewsActions.js +31 -2
  179. data/webpack/scenes/ContentViews/ContentViewsConstants.js +5 -1
  180. data/webpack/scenes/ContentViews/Copy/ContentViewCopySelectors.js +16 -0
  181. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +77 -0
  182. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +44 -0
  183. data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +42 -0
  184. data/webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js +39 -0
  185. data/webpack/scenes/ContentViews/Copy/index.js +4 -0
  186. data/webpack/scenes/ContentViews/Create/ContentViewCreateSelectors.js +16 -0
  187. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +58 -0
  188. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +175 -0
  189. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +27 -0
  190. data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +42 -0
  191. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +92 -0
  192. data/webpack/scenes/ContentViews/Create/index.js +4 -0
  193. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +16 -0
  194. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +20 -1
  195. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +17 -7
  196. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +19 -13
  197. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +40 -0
  198. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +124 -0
  199. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json +134 -0
  200. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +92 -0
  201. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +44 -25
  202. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +17 -7
  203. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +24 -0
  204. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +53 -3
  205. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +4 -3
  206. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +41 -0
  207. data/webpack/scenes/ContentViews/helpers.js +13 -0
  208. data/webpack/scenes/SmartProxy/Content.js +17 -0
  209. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +11 -0
  210. data/webpack/scenes/SmartProxy/SmartProxyContentConstants.js +3 -0
  211. data/webpack/scenes/SmartProxy/SmartProxyContentSelectors.js +16 -0
  212. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +152 -0
  213. data/webpack/scenes/SmartProxy/__tests__/SmartProxyContentResult.fixtures.json +140 -0
  214. data/webpack/scenes/SmartProxy/__tests__/SmartProxyContentTest.js +38 -0
  215. data/webpack/scenes/SmartProxy/index.js +4 -0
  216. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +2 -7
  217. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +3 -3
  218. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +2 -2
  219. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +2 -2
  220. data/webpack/scenes/Subscriptions/Manifest/index.js +0 -1
  221. data/webpack/test-utils/react-testing-lib-wrapper.js +5 -2
  222. data/webpack/utils/helpers.js +3 -0
  223. metadata +103 -63
  224. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +0 -114
  225. data/app/lib/actions/pulp3/content_migration_reset.rb +0 -22
  226. data/app/lib/katello/util/hostgroup_facets_helper.rb +0 -126
  227. data/app/overrides/disable_turbolinks_on_proxies_index.rb +0 -5
  228. data/app/services/katello/event_daemon.rb +0 -135
  229. data/app/services/katello/pulp/content_counts_calculator.rb +0 -60
  230. data/db/migrate/20210201165835_add_migration_missing_content.rb +0 -12
  231. data/db/migrate/20210420140050_add_pulp3_hrefs_to_content_types_deb.rb +0 -5
  232. data/lib/katello/tasks/check_config.rake +0 -11
  233. data/lib/katello/tasks/fix_hostgroup_facets.rake +0 -8
  234. data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +0 -21
  235. data/lib/katello/tasks/pulp3_migration_reset.rake +0 -26
  236. data/lib/katello/tasks/reports.rake +0 -7
  237. data/lib/katello/tasks/upgrades/3.10/update_gpg_key_urls.rake +0 -32
  238. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.scss +0 -5
  239. data/webpack/scenes/ContentViews/Table/actionResolver.js +0 -28
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.18.5
4
+ version: 4.0.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: 2021-09-13 00:00:00.000000000 Z
11
+ date: 2021-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -87,9 +87,6 @@ dependencies:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: 0.14.1
90
- - - "<"
91
- - !ruby/object:Gem::Version
92
- version: '4.0'
93
90
  type: :runtime
94
91
  prerelease: false
95
92
  version_requirements: !ruby/object:Gem::Requirement
@@ -97,23 +94,6 @@ dependencies:
97
94
  - - ">="
98
95
  - !ruby/object:Gem::Version
99
96
  version: 0.14.1
100
- - - "<"
101
- - !ruby/object:Gem::Version
102
- version: '4.0'
103
- - !ruby/object:Gem::Dependency
104
- name: foreman-tasks-core
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "<"
108
- - !ruby/object:Gem::Version
109
- version: '0.4'
110
- type: :runtime
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - "<"
115
- - !ruby/object:Gem::Version
116
- version: '0.4'
117
97
  - !ruby/object:Gem::Dependency
118
98
  name: foreman_remote_execution
119
99
  requirement: !ruby/object:Gem::Requirement
@@ -283,7 +263,7 @@ dependencies:
283
263
  version: 3.6.0
284
264
  - - "<"
285
265
  - !ruby/object:Gem::Version
286
- version: 3.7.7
266
+ version: 3.10.0
287
267
  type: :runtime
288
268
  prerelease: false
289
269
  version_requirements: !ruby/object:Gem::Requirement
@@ -293,7 +273,7 @@ dependencies:
293
273
  version: 3.6.0
294
274
  - - "<"
295
275
  - !ruby/object:Gem::Version
296
- version: 3.7.7
276
+ version: 3.10.0
297
277
  - !ruby/object:Gem::Dependency
298
278
  name: pulp_file_client
299
279
  requirement: !ruby/object:Gem::Requirement
@@ -303,7 +283,7 @@ dependencies:
303
283
  version: 1.2.0
304
284
  - - "<"
305
285
  - !ruby/object:Gem::Version
306
- version: 1.4.0
286
+ version: 1.6.0
307
287
  type: :runtime
308
288
  prerelease: false
309
289
  version_requirements: !ruby/object:Gem::Requirement
@@ -313,7 +293,7 @@ dependencies:
313
293
  version: 1.2.0
314
294
  - - "<"
315
295
  - !ruby/object:Gem::Version
316
- version: 1.4.0
296
+ version: 1.6.0
317
297
  - !ruby/object:Gem::Dependency
318
298
  name: pulp_ansible_client
319
299
  requirement: !ruby/object:Gem::Requirement
@@ -323,7 +303,7 @@ dependencies:
323
303
  version: '0.2'
324
304
  - - "<"
325
305
  - !ruby/object:Gem::Version
326
- version: '0.5'
306
+ version: '0.7'
327
307
  type: :runtime
328
308
  prerelease: false
329
309
  version_requirements: !ruby/object:Gem::Requirement
@@ -333,7 +313,7 @@ dependencies:
333
313
  version: '0.2'
334
314
  - - "<"
335
315
  - !ruby/object:Gem::Version
336
- version: '0.5'
316
+ version: '0.7'
337
317
  - !ruby/object:Gem::Dependency
338
318
  name: pulp_container_client
339
319
  requirement: !ruby/object:Gem::Requirement
@@ -343,7 +323,7 @@ dependencies:
343
323
  version: 2.0.0
344
324
  - - "<"
345
325
  - !ruby/object:Gem::Version
346
- version: 2.2.0
326
+ version: 2.3.0
347
327
  type: :runtime
348
328
  prerelease: false
349
329
  version_requirements: !ruby/object:Gem::Requirement
@@ -353,67 +333,73 @@ dependencies:
353
333
  version: 2.0.0
354
334
  - - "<"
355
335
  - !ruby/object:Gem::Version
356
- version: 2.2.0
336
+ version: 2.3.0
357
337
  - !ruby/object:Gem::Dependency
358
338
  name: pulp_deb_client
359
339
  requirement: !ruby/object:Gem::Requirement
360
340
  requirements:
361
341
  - - ">="
362
342
  - !ruby/object:Gem::Version
363
- version: 2.9.0
343
+ version: 2.6.0
364
344
  - - "<"
365
345
  - !ruby/object:Gem::Version
366
- version: 2.10.0
346
+ version: 2.9.0
367
347
  type: :runtime
368
348
  prerelease: false
369
349
  version_requirements: !ruby/object:Gem::Requirement
370
350
  requirements:
371
351
  - - ">="
372
352
  - !ruby/object:Gem::Version
373
- version: 2.9.0
353
+ version: 2.6.0
374
354
  - - "<"
375
355
  - !ruby/object:Gem::Version
376
- version: 2.10.0
356
+ version: 2.9.0
377
357
  - !ruby/object:Gem::Dependency
378
358
  name: pulp_rpm_client
379
359
  requirement: !ruby/object:Gem::Requirement
380
360
  requirements:
381
361
  - - ">="
382
362
  - !ruby/object:Gem::Version
383
- version: 3.10.0
363
+ version: 3.6.2
384
364
  - - "<"
385
365
  - !ruby/object:Gem::Version
386
- version: 3.11.0
366
+ version: 3.9.0
387
367
  type: :runtime
388
368
  prerelease: false
389
369
  version_requirements: !ruby/object:Gem::Requirement
390
370
  requirements:
391
371
  - - ">="
392
372
  - !ruby/object:Gem::Version
393
- version: 3.10.0
373
+ version: 3.6.2
394
374
  - - "<"
395
375
  - !ruby/object:Gem::Version
396
- version: 3.11.0
376
+ version: 3.9.0
397
377
  - !ruby/object:Gem::Dependency
398
378
  name: pulp_2to3_migration_client
399
379
  requirement: !ruby/object:Gem::Requirement
400
380
  requirements:
401
381
  - - ">="
402
382
  - !ruby/object:Gem::Version
403
- version: 0.8.0
383
+ version: 0.3.0
404
384
  - - "<"
405
385
  - !ruby/object:Gem::Version
406
- version: 1.0.0
386
+ version: 0.7.0
387
+ - - "!="
388
+ - !ruby/object:Gem::Version
389
+ version: 0.4.0
407
390
  type: :runtime
408
391
  prerelease: false
409
392
  version_requirements: !ruby/object:Gem::Requirement
410
393
  requirements:
411
394
  - - ">="
412
395
  - !ruby/object:Gem::Version
413
- version: 0.8.0
396
+ version: 0.3.0
414
397
  - - "<"
415
398
  - !ruby/object:Gem::Version
416
- version: 1.0.0
399
+ version: 0.7.0
400
+ - - "!="
401
+ - !ruby/object:Gem::Version
402
+ version: 0.4.0
417
403
  - !ruby/object:Gem::Dependency
418
404
  name: pulp_certguard_client
419
405
  requirement: !ruby/object:Gem::Requirement
@@ -753,7 +739,6 @@ files:
753
739
  - app/controllers/katello/api/v2/environments_controller.rb
754
740
  - app/controllers/katello/api/v2/errata_controller.rb
755
741
  - app/controllers/katello/api/v2/file_units_controller.rb
756
- - app/controllers/katello/api/v2/gpg_keys_controller.rb
757
742
  - app/controllers/katello/api/v2/host_autocomplete_controller.rb
758
743
  - app/controllers/katello/api/v2/host_collections_controller.rb
759
744
  - app/controllers/katello/api/v2/host_contents_controller.rb
@@ -777,6 +762,7 @@ files:
777
762
  - app/controllers/katello/api/v2/repositories_controller.rb
778
763
  - app/controllers/katello/api/v2/repository_sets_controller.rb
779
764
  - app/controllers/katello/api/v2/root_controller.rb
765
+ - app/controllers/katello/api/v2/simple_content_access_controller.rb
780
766
  - app/controllers/katello/api/v2/srpms_controller.rb
781
767
  - app/controllers/katello/api/v2/subscriptions_controller.rb
782
768
  - app/controllers/katello/api/v2/sync_controller.rb
@@ -871,6 +857,7 @@ files:
871
857
  - app/lib/actions/katello/capsule_content/refresh_repos.rb
872
858
  - app/lib/actions/katello/capsule_content/sync.rb
873
859
  - app/lib/actions/katello/capsule_content/sync_capsule.rb
860
+ - app/lib/actions/katello/check_matching_content.rb
874
861
  - app/lib/actions/katello/content_view/add_to_environment.rb
875
862
  - app/lib/actions/katello/content_view/capsule_sync.rb
876
863
  - app/lib/actions/katello/content_view/create.rb
@@ -1086,7 +1073,6 @@ files:
1086
1073
  - app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb
1087
1074
  - app/lib/actions/pulp3/content_migration.rb
1088
1075
  - app/lib/actions/pulp3/content_migration_presenter.rb
1089
- - app/lib/actions/pulp3/content_migration_reset.rb
1090
1076
  - app/lib/actions/pulp3/content_view/delete_repository_references.rb
1091
1077
  - app/lib/actions/pulp3/content_view_version/create_exporter.rb
1092
1078
  - app/lib/actions/pulp3/content_view_version/create_importer.rb
@@ -1161,6 +1147,8 @@ files:
1161
1147
  - app/lib/katello/concerns/permission_extensions.rb
1162
1148
  - app/lib/katello/concerns/renderer_extensions.rb
1163
1149
  - app/lib/katello/errors.rb
1150
+ - app/lib/katello/event_daemon/monitor.rb
1151
+ - app/lib/katello/event_daemon/runner.rb
1164
1152
  - app/lib/katello/foreman.rb
1165
1153
  - app/lib/katello/http_resource.rb
1166
1154
  - app/lib/katello/lazy_accessor.rb
@@ -1196,7 +1184,6 @@ files:
1196
1184
  - app/lib/katello/util/docker_manifest_clause_generator.rb
1197
1185
  - app/lib/katello/util/errata.rb
1198
1186
  - app/lib/katello/util/filter_clause_generator.rb
1199
- - app/lib/katello/util/hostgroup_facets_helper.rb
1200
1187
  - app/lib/katello/util/http_proxy.rb
1201
1188
  - app/lib/katello/util/model.rb
1202
1189
  - app/lib/katello/util/module_stream_clause_generator.rb
@@ -1438,11 +1425,11 @@ files:
1438
1425
  - app/overrides/add_activation_keys_input.rb
1439
1426
  - app/overrides/add_organization_attributes.rb
1440
1427
  - app/overrides/add_smart_proxy_form.rb
1441
- - app/overrides/disable_turbolinks_on_proxies_index.rb
1442
1428
  - app/overrides/override_taxonomy_actions.rb
1443
1429
  - app/presenters/katello/activation_key_subscriptions_presenter.rb
1444
1430
  - app/presenters/katello/content_view_version_compare_presenter.rb
1445
1431
  - app/presenters/katello/host_subscription_presenter.rb
1432
+ - app/presenters/katello/host_subscriptions_presenter.rb
1446
1433
  - app/presenters/katello/product_content_presenter.rb
1447
1434
  - app/presenters/katello/relation_presenter.rb
1448
1435
  - app/presenters/katello/repository_presenter.rb
@@ -1461,7 +1448,6 @@ files:
1461
1448
  - app/services/katello/candlepin/system_purpose.rb
1462
1449
  - app/services/katello/candlepin/upstream_consumer.rb
1463
1450
  - app/services/katello/candlepin_event_listener.rb
1464
- - app/services/katello/event_daemon.rb
1465
1451
  - app/services/katello/event_monitor/poller_thread.rb
1466
1452
  - app/services/katello/event_queue.rb
1467
1453
  - app/services/katello/host_status_manager.rb
@@ -1474,7 +1460,6 @@ files:
1474
1460
  - app/services/katello/pulp/consumer.rb
1475
1461
  - app/services/katello/pulp/consumer_group.rb
1476
1462
  - app/services/katello/pulp/content.rb
1477
- - app/services/katello/pulp/content_counts_calculator.rb
1478
1463
  - app/services/katello/pulp/deb.rb
1479
1464
  - app/services/katello/pulp/distribution.rb
1480
1465
  - app/services/katello/pulp/docker_blob.rb
@@ -2156,8 +2141,9 @@ files:
2156
2141
  - db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb
2157
2142
  - db/migrate/20201021150008_add_import_only_to_katello_content_view.rb
2158
2143
  - db/migrate/20201119211133_pulp3_migration_progress.rb
2159
- - db/migrate/20210201165835_add_migration_missing_content.rb
2160
- - db/migrate/20210420140050_add_pulp3_hrefs_to_content_types_deb.rb
2144
+ - db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb
2145
+ - db/migrate/20210128231228_add_type_and_from_cvv_to_cvv_export_history.rb
2146
+ - db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb
2161
2147
  - db/seeds.d/101-locations.rb
2162
2148
  - db/seeds.d/102-organizations.rb
2163
2149
  - db/seeds.d/104-proxy.rb
@@ -4008,6 +3994,7 @@ files:
4008
3994
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
4009
3995
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js
4010
3996
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js
3997
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js
4011
3998
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js
4012
3999
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
4013
4000
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js
@@ -4055,6 +4042,9 @@ files:
4055
4042
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-tasks.html
4056
4043
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4057
4044
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
4045
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html
4046
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html
4047
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html
4058
4048
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html
4059
4049
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js
4060
4050
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js
@@ -4500,12 +4490,10 @@ files:
4500
4490
  - lib/katello/repository_types/puppet.rb
4501
4491
  - lib/katello/repository_types/yum.rb
4502
4492
  - lib/katello/scheduled_jobs.rb
4503
- - lib/katello/tasks/check_config.rake
4504
4493
  - lib/katello/tasks/clean_backend_objects.rake
4505
4494
  - lib/katello/tasks/clean_old_file_repos.rake
4506
4495
  - lib/katello/tasks/clean_published_repo_directories.rake
4507
4496
  - lib/katello/tasks/delete_orphaned_content.rake
4508
- - lib/katello/tasks/fix_hostgroup_facets.rake
4509
4497
  - lib/katello/tasks/import_applicability.rake
4510
4498
  - lib/katello/tasks/import_subscriptions.rake
4511
4499
  - lib/katello/tasks/jenkins.rake
@@ -4513,14 +4501,11 @@ files:
4513
4501
  - lib/katello/tasks/pulp3_content_switchover.rake
4514
4502
  - lib/katello/tasks/pulp3_migration.rake
4515
4503
  - lib/katello/tasks/pulp3_migration_abort.rake
4516
- - lib/katello/tasks/pulp3_migration_approve_corrupted.rake
4517
- - lib/katello/tasks/pulp3_migration_reset.rake
4518
4504
  - lib/katello/tasks/pulp3_migration_stats.rake
4519
4505
  - lib/katello/tasks/pulp3_post_migration_check.rake
4520
4506
  - lib/katello/tasks/receptor/extract_orgs.rake
4521
4507
  - lib/katello/tasks/regenerate_ueber_certs.rake
4522
4508
  - lib/katello/tasks/reimport.rake
4523
- - lib/katello/tasks/reports.rake
4524
4509
  - lib/katello/tasks/repository.rake
4525
4510
  - lib/katello/tasks/reset.rake
4526
4511
  - lib/katello/tasks/rubocop.rake
@@ -4530,7 +4515,6 @@ files:
4530
4515
  - lib/katello/tasks/update_subscription_facet_backend_data.rake
4531
4516
  - lib/katello/tasks/upgrade_check.rake
4532
4517
  - lib/katello/tasks/upgrades/3.10/clear_invalid_repo_credentials.rake
4533
- - lib/katello/tasks/upgrades/3.10/update_gpg_key_urls.rake
4534
4518
  - lib/katello/tasks/upgrades/3.11/import_yum_metadata_file.rake
4535
4519
  - lib/katello/tasks/upgrades/3.11/update_puppet_repos.rake
4536
4520
  - lib/katello/tasks/upgrades/3.12/remove_pulp2_notifier.rake
@@ -4540,6 +4524,7 @@ files:
4540
4524
  - lib/katello/tasks/upgrades/3.16/update_applicable_el8_hosts.rake
4541
4525
  - lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb
4542
4526
  - lib/katello/tasks/upgrades/3.8/clear_checksum_type.rake
4527
+ - lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake
4543
4528
  - lib/katello/tasks/virt_who_report.rake
4544
4529
  - lib/katello/url_constrained_cookie_store.rb
4545
4530
  - lib/katello/version.rb
@@ -4547,35 +4532,58 @@ files:
4547
4532
  - lib/monkeys/ar_postgres_evr_t.rb
4548
4533
  - lib/monkeys/fx_sqlite_skip.rb
4549
4534
  - lib/monkeys/passenger_tee_input.rb
4535
+ - lib/proxy_api/container_gateway.rb
4550
4536
  - lib/proxy_api/pulp.rb
4551
4537
  - lib/proxy_api/pulp_node.rb
4552
4538
  - locale/Makefile
4553
4539
  - locale/README
4554
4540
  - locale/action_names.rb
4541
+ - locale/bn/katello.edit.po
4555
4542
  - locale/bn/katello.po
4543
+ - locale/cs/katello.edit.po
4556
4544
  - locale/cs/katello.po
4545
+ - locale/de/katello.edit.po
4557
4546
  - locale/de/katello.po
4547
+ - locale/en/katello.edit.po
4558
4548
  - locale/en/katello.po
4549
+ - locale/es/katello.edit.po
4559
4550
  - locale/es/katello.po
4551
+ - locale/fr/katello.edit.po
4560
4552
  - locale/fr/katello.po
4553
+ - locale/gu/katello.edit.po
4561
4554
  - locale/gu/katello.po
4555
+ - locale/hi/katello.edit.po
4562
4556
  - locale/hi/katello.po
4557
+ - locale/it/katello.edit.po
4563
4558
  - locale/it/katello.po
4559
+ - locale/ja/katello.edit.po
4564
4560
  - locale/ja/katello.po
4565
4561
  - locale/katello.pot
4562
+ - locale/kn/katello.edit.po
4566
4563
  - locale/kn/katello.po
4564
+ - locale/ko/katello.edit.po
4567
4565
  - locale/ko/katello.po
4566
+ - locale/mr/katello.edit.po
4568
4567
  - locale/mr/katello.po
4568
+ - locale/or/katello.edit.po
4569
4569
  - locale/or/katello.po
4570
+ - locale/pa/katello.edit.po
4570
4571
  - locale/pa/katello.po
4572
+ - locale/pt/katello.edit.po
4571
4573
  - locale/pt/katello.po
4574
+ - locale/pt_BR/katello.edit.po
4572
4575
  - locale/pt_BR/katello.po
4576
+ - locale/ru/katello.edit.po
4573
4577
  - locale/ru/katello.po
4578
+ - locale/ta/katello.edit.po
4574
4579
  - locale/ta/katello.po
4580
+ - locale/te/katello.edit.po
4575
4581
  - locale/te/katello.po
4576
4582
  - locale/update-i18n
4577
4583
  - locale/zanata.xml
4584
+ - locale/zh_CN/katello.edit.po
4578
4585
  - locale/zh_CN/katello.po
4586
+ - locale/zh_TW/katello.edit.po
4579
4587
  - locale/zh_TW/katello.po
4580
4588
  - package.json
4581
4589
  - vendor/assets/images/katello/add2.png
@@ -4636,8 +4644,10 @@ files:
4636
4644
  - webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js
4637
4645
  - webpack/__mocks__/foremanReact/common/urlHelpers.js
4638
4646
  - webpack/__mocks__/foremanReact/components/BreadcrumbBar/index.js
4647
+ - webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js
4639
4648
  - webpack/__mocks__/foremanReact/components/Pagination/PaginationWrapper.js
4640
4649
  - webpack/__mocks__/foremanReact/components/common/EmptyState.js
4650
+ - webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js
4641
4651
  - webpack/__mocks__/foremanReact/redux.js
4642
4652
  - webpack/__mocks__/foremanReact/redux/actions/toasts.js
4643
4653
  - webpack/__mocks__/react-intl/index.js
@@ -4687,6 +4697,9 @@ files:
4687
4697
  - webpack/components/SelectOrg/SelectOrgAction.js
4688
4698
  - webpack/components/SelectOrg/SelectOrgReducer.js
4689
4699
  - webpack/components/SelectOrg/SetOrganization.js
4700
+ - webpack/components/SelectableDropdown/SelectableDropdown.js
4701
+ - webpack/components/SelectableDropdown/__tests__/SelectableDropdown.test.js
4702
+ - webpack/components/SelectableDropdown/index.js
4690
4703
  - webpack/components/TabWrapper/TabWrapper.js
4691
4704
  - webpack/components/TabWrapper/index.js
4692
4705
  - webpack/components/TabbedView/TabbedView.js
@@ -4695,6 +4708,7 @@ files:
4695
4708
  - webpack/components/Table/EmptyStateMessage.js
4696
4709
  - webpack/components/Table/MainTable.js
4697
4710
  - webpack/components/Table/TableWrapper.js
4711
+ - webpack/components/Table/helpers.js
4698
4712
  - webpack/components/TooltipButton/TooltipButton.js
4699
4713
  - webpack/components/TooltipButton/TooltipButton.scss
4700
4714
  - webpack/components/TooltipButton/TooltipButton.test.js
@@ -4712,7 +4726,6 @@ files:
4712
4726
  - webpack/components/TypeAhead/pf4Search/TypeAheadInput.scss
4713
4727
  - webpack/components/TypeAhead/pf4Search/TypeAheadItems.js
4714
4728
  - webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js
4715
- - webpack/components/TypeAhead/pf4Search/TypeAheadSearch.scss
4716
4729
  - webpack/components/WithOrganization/__snapshots__/withOrganization.test.js.snap
4717
4730
  - webpack/components/WithOrganization/withOrganization.js
4718
4731
  - webpack/components/WithOrganization/withOrganization.test.js
@@ -4833,18 +4846,34 @@ files:
4833
4846
  - webpack/scenes/ContentViews/ContentViewsActions.js
4834
4847
  - webpack/scenes/ContentViews/ContentViewsConstants.js
4835
4848
  - webpack/scenes/ContentViews/ContentViewsPage.js
4849
+ - webpack/scenes/ContentViews/Copy/ContentViewCopySelectors.js
4850
+ - webpack/scenes/ContentViews/Copy/CopyContentViewForm.js
4851
+ - webpack/scenes/ContentViews/Copy/CopyContentViewModal.js
4852
+ - webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json
4853
+ - webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js
4854
+ - webpack/scenes/ContentViews/Copy/index.js
4855
+ - webpack/scenes/ContentViews/Create/ContentViewCreateSelectors.js
4856
+ - webpack/scenes/ContentViews/Create/ContentViewFormComponents.js
4857
+ - webpack/scenes/ContentViews/Create/CreateContentViewForm.js
4858
+ - webpack/scenes/ContentViews/Create/CreateContentViewModal.js
4859
+ - webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json
4860
+ - webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js
4861
+ - webpack/scenes/ContentViews/Create/index.js
4836
4862
  - webpack/scenes/ContentViews/Details/ContentViewDetailActions.js
4837
4863
  - webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js
4838
4864
  - webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js
4839
4865
  - webpack/scenes/ContentViews/Details/ContentViewDetails.js
4840
4866
  - webpack/scenes/ContentViews/Details/ContentViewInfo.js
4841
4867
  - webpack/scenes/ContentViews/Details/DetailsContainer.js
4868
+ - webpack/scenes/ContentViews/Details/Filters/ContentType.js
4869
+ - webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js
4870
+ - webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json
4871
+ - webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js
4842
4872
  - webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js
4843
4873
  - webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js
4844
4874
  - webpack/scenes/ContentViews/Details/Repositories/LastSync.js
4845
4875
  - webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js
4846
4876
  - webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js
4847
- - webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js
4848
4877
  - webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json
4849
4878
  - webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js
4850
4879
  - webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js
@@ -4852,7 +4881,6 @@ files:
4852
4881
  - webpack/scenes/ContentViews/Details/contentViewInfo.scss
4853
4882
  - webpack/scenes/ContentViews/Details/index.js
4854
4883
  - webpack/scenes/ContentViews/Table/ContentViewsTable.js
4855
- - webpack/scenes/ContentViews/Table/actionResolver.js
4856
4884
  - webpack/scenes/ContentViews/Table/index.js
4857
4885
  - webpack/scenes/ContentViews/Table/tableDataGenerator.js
4858
4886
  - webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js
@@ -4865,6 +4893,7 @@ files:
4865
4893
  - webpack/scenes/ContentViews/expansions/DetailsExpansion.js
4866
4894
  - webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js
4867
4895
  - webpack/scenes/ContentViews/expansions/VersionsExpansion.js
4896
+ - webpack/scenes/ContentViews/helpers.js
4868
4897
  - webpack/scenes/ContentViews/index.js
4869
4898
  - webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js
4870
4899
  - webpack/scenes/ModuleStreams/Details/ModuleStreamDetailArtifacts.js
@@ -4960,6 +4989,14 @@ files:
4960
4989
  - webpack/scenes/Settings/Tables/__tests__/TableReducer.test.js
4961
4990
  - webpack/scenes/Settings/Tables/__tests__/__snapshots__/TableReducer.test.js.snap
4962
4991
  - webpack/scenes/Settings/index.js
4992
+ - webpack/scenes/SmartProxy/Content.js
4993
+ - webpack/scenes/SmartProxy/SmartProxyContentActions.js
4994
+ - webpack/scenes/SmartProxy/SmartProxyContentConstants.js
4995
+ - webpack/scenes/SmartProxy/SmartProxyContentSelectors.js
4996
+ - webpack/scenes/SmartProxy/SmartProxyContentTable.js
4997
+ - webpack/scenes/SmartProxy/__tests__/SmartProxyContentResult.fixtures.json
4998
+ - webpack/scenes/SmartProxy/__tests__/SmartProxyContentTest.js
4999
+ - webpack/scenes/SmartProxy/index.js
4963
5000
  - webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js
4964
5001
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js
4965
5002
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js
@@ -5088,14 +5125,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
5088
5125
  requirements:
5089
5126
  - - ">="
5090
5127
  - !ruby/object:Gem::Version
5091
- version: '0'
5128
+ version: 2.5.0
5129
+ - - "<"
5130
+ - !ruby/object:Gem::Version
5131
+ version: 2.7.0
5092
5132
  required_rubygems_version: !ruby/object:Gem::Requirement
5093
5133
  requirements:
5094
- - - ">="
5134
+ - - ">"
5095
5135
  - !ruby/object:Gem::Version
5096
- version: '0'
5136
+ version: 1.3.1
5097
5137
  requirements: []
5098
- rubygems_version: 3.1.6
5138
+ rubygems_version: 3.1.4
5099
5139
  signing_key:
5100
5140
  specification_version: 4
5101
5141
  summary: Content and Subscription Management plugin for Foreman
@@ -1,114 +0,0 @@
1
- module Katello
2
- class Api::V2::GpgKeysController < Api::V2::ApiController
3
- include Katello::Concerns::FilteredAutoCompleteSearch
4
- before_action :deprecated
5
- before_action :authorize
6
- before_action :find_organization, :only => [:create, :index, :auto_complete_search]
7
- before_action :find_gpg_key, :only => [:show, :update, :destroy, :content, :set_content]
8
- skip_before_action :check_media_type, :only => [:create, :content, :set_content]
9
-
10
- def_param_group :gpg_key do
11
- param :name, :identifier, :action_aware => true, :required => true, :desc => N_("identifier of the gpg key")
12
- param :content, String, :action_aware => true, :required => true, :desc => N_("public key block in DER encoding")
13
- end
14
-
15
- resource_description do
16
- description <<-DESC
17
- # Description
18
- Documents the calls for the list, read, create, update and delete operations for GPG keys
19
- DESC
20
- api_version "v2"
21
- end
22
-
23
- api :GET, "/gpg_keys", N_("List gpg keys")
24
- param :organization_id, :number, :desc => N_("organization identifier"), :required => true
25
- param :name, String, :desc => N_("name of the GPG key"), :required => false
26
- param_group :search, Api::V2::ApiController
27
- add_scoped_search_description_for(GpgKey)
28
- def index
29
- respond(:collection => scoped_search(index_relation.distinct, :name, :asc))
30
- end
31
-
32
- def index_relation
33
- query = GpgKey.readable.where(:organization_id => @organization.id)
34
- query = query.where(:name => params[:name]) if params[:name]
35
- query
36
- end
37
-
38
- api :POST, "/gpg_keys", N_("Create a gpg key")
39
- param :organization_id, :number, :desc => N_("organization identifier"), :required => true
40
- param_group :gpg_key, :as => :create
41
- def create
42
- filepath = params.try(:[], :file_path).try(:path)
43
-
44
- content = nil
45
- if filepath
46
- content = File.open(filepath, "rb") { |file| file.read }
47
- else
48
- content = params[:content]
49
- end
50
-
51
- gpg_key = @organization.gpg_keys.create!(gpg_key_params.merge(:content => content))
52
- respond_for_create(:resource => gpg_key)
53
- end
54
-
55
- api :GET, "/gpg_keys/:id", N_("Show a gpg key"), :deprecated => true
56
- param :id, :number, :desc => N_("gpg key numeric identifier"), :required => true
57
- def show
58
- respond_for_show(:resource => @gpg_key)
59
- end
60
-
61
- api :PUT, "/gpg_keys/:id", N_("Update a repository"), :deprecated => true
62
- param :id, :number, :desc => N_("gpg key numeric identifier"), :required => true
63
- param_group :gpg_key
64
- def update
65
- sync_task(::Actions::Katello::GpgKey::Update, @gpg_key, gpg_key_params.to_h)
66
-
67
- respond_for_show(:resource => @gpg_key)
68
- end
69
-
70
- api :DELETE, "/gpg_keys/:id", N_("Destroy a gpg key"), :deprecated => true
71
- param :id, :number, :desc => N_("gpg key numeric identifier"), :required => true
72
- def destroy
73
- @gpg_key.destroy
74
- respond_for_destroy
75
- end
76
-
77
- api :GET, "/gpg_keys/:id/content", N_("Return the content of a gpg key, used directly by yum"), :deprecated => true
78
- param :id, :number, :required => true
79
- def content
80
- render(:plain => @gpg_key.content, :layout => false)
81
- end
82
-
83
- api :POST, "/gpg_keys/:id/content", N_("Upload gpg key contents"), :deprecated => true
84
- param :id, :number, :desc => N_("gpg key numeric identifier"), :required => true
85
- param :content, File, :desc => N_("file contents"), :required => true
86
- def set_content
87
- filepath = params.try(:[], :content).try(:path)
88
-
89
- if filepath
90
- content = File.open(filepath, "rb") { |file| file.read }
91
- @gpg_key.update!(:content => content)
92
- render :json => {:status => "success"}
93
- else
94
- fail HttpErrors::BadRequest, _("No file uploaded")
95
- end
96
- end
97
-
98
- protected
99
-
100
- def find_gpg_key
101
- @gpg_key = GpgKey.find(params[:id])
102
- rescue ActiveRecord::RecordNotFound
103
- raise HttpErrors::NotFound, _("Couldn't find GPG key '%s'") % params[:id]
104
- end
105
-
106
- def gpg_key_params
107
- params.permit(:name, :content)
108
- end
109
-
110
- def deprecated
111
- ::Foreman::Deprecation.api_deprecation_warning("it will be removed in Katello 4.0, Please see /api/v2/content_credentials")
112
- end
113
- end
114
- end
@@ -1,22 +0,0 @@
1
- module Actions
2
- module Pulp3
3
- class ContentMigrationReset < Pulp3::AbstractAsyncTask
4
- def plan(smart_proxy)
5
- plan_self(smart_proxy_id: smart_proxy.id)
6
- end
7
-
8
- def invoke_external_task
9
- migration_service = ::Katello::Pulp3::Migration.new(smart_proxy)
10
- migration_service.reset
11
- end
12
-
13
- def humanized_name
14
- _("Content Migration Reset")
15
- end
16
-
17
- def rescue_strategy
18
- Dynflow::Action::Rescue::Skip
19
- end
20
- end
21
- end
22
- end