katello 3.17.3 → 3.18.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
@@ -12,8 +12,14 @@ exports[`Subscriptions selectors should select the subscriptions state 1`] = `
12
12
  Object {
13
13
  "deleteButtonDisabled": true,
14
14
  "deleteModalOpened": false,
15
+ "hasUpstreamConnection": false,
15
16
  "searchQuery": "some-query",
17
+ "simpleContentAccessEligible": false,
16
18
  "task": Object {},
17
19
  "taskModalOpened": false,
18
20
  }
19
21
  `;
22
+
23
+ exports[`Subscriptions selectors should select whether we are simple content access eligible 1`] = `false`;
24
+
25
+ exports[`Subscriptions selectors should select whether we have an upstream connection 1`] = `false`;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
- import { Row, Col, Form, FormGroup, Button, OverlayTrigger, Tooltip, Icon } from 'patternfly-react';
3
+ import { Row, Col, Form, FormGroup, Button } from 'patternfly-react';
4
4
  import { LinkContainer } from 'react-router-bootstrap';
5
5
  import { noop } from 'foremanReact/common/helpers';
6
6
  import { translate as __ } from 'foremanReact/common/I18n';
@@ -67,18 +67,6 @@ const SubscriptionsToolbar = ({
67
67
  rel="noreferrer"
68
68
  >
69
69
  {__('Subscription Watch')}
70
- <OverlayTrigger
71
- overlay={
72
- <Tooltip id="sub-watch-tooltip">
73
- {__('Learn more about your overall subscription usage (opens in a new tab)')}
74
- </Tooltip>
75
- }
76
- placement="bottom"
77
- trigger={['hover', 'focus']}
78
- rootClose={false}
79
- >
80
- <Icon type="pf" name="info" />
81
- </OverlayTrigger>
82
70
  </a>
83
71
  }
84
72
 
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.17.3
4
+ version: 3.18.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-03-02 00:00:00.000000000 Z
11
+ date: 2020-11-04 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.0
93
90
  type: :runtime
94
91
  prerelease: false
95
92
  version_requirements: !ruby/object:Gem::Requirement
@@ -97,9 +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.0
103
97
  - !ruby/object:Gem::Dependency
104
98
  name: foreman_remote_execution
105
99
  requirement: !ruby/object:Gem::Requirement
@@ -269,7 +263,7 @@ dependencies:
269
263
  version: 3.6.0
270
264
  - - "<"
271
265
  - !ruby/object:Gem::Version
272
- version: 3.7.0
266
+ version: 3.8.0
273
267
  type: :runtime
274
268
  prerelease: false
275
269
  version_requirements: !ruby/object:Gem::Requirement
@@ -279,7 +273,7 @@ dependencies:
279
273
  version: 3.6.0
280
274
  - - "<"
281
275
  - !ruby/object:Gem::Version
282
- version: 3.7.0
276
+ version: 3.8.0
283
277
  - !ruby/object:Gem::Dependency
284
278
  name: pulp_file_client
285
279
  requirement: !ruby/object:Gem::Requirement
@@ -289,7 +283,7 @@ dependencies:
289
283
  version: 1.2.0
290
284
  - - "<"
291
285
  - !ruby/object:Gem::Version
292
- version: 1.3.0
286
+ version: 1.4.0
293
287
  type: :runtime
294
288
  prerelease: false
295
289
  version_requirements: !ruby/object:Gem::Requirement
@@ -299,7 +293,7 @@ dependencies:
299
293
  version: 1.2.0
300
294
  - - "<"
301
295
  - !ruby/object:Gem::Version
302
- version: 1.3.0
296
+ version: 1.4.0
303
297
  - !ruby/object:Gem::Dependency
304
298
  name: pulp_ansible_client
305
299
  requirement: !ruby/object:Gem::Requirement
@@ -309,7 +303,7 @@ dependencies:
309
303
  version: '0.2'
310
304
  - - "<"
311
305
  - !ruby/object:Gem::Version
312
- version: '0.4'
306
+ version: '0.5'
313
307
  type: :runtime
314
308
  prerelease: false
315
309
  version_requirements: !ruby/object:Gem::Requirement
@@ -319,7 +313,7 @@ dependencies:
319
313
  version: '0.2'
320
314
  - - "<"
321
315
  - !ruby/object:Gem::Version
322
- version: '0.4'
316
+ version: '0.5'
323
317
  - !ruby/object:Gem::Dependency
324
318
  name: pulp_container_client
325
319
  requirement: !ruby/object:Gem::Requirement
@@ -329,7 +323,7 @@ dependencies:
329
323
  version: 2.0.0
330
324
  - - "<"
331
325
  - !ruby/object:Gem::Version
332
- version: 2.1.0
326
+ version: 2.2.0
333
327
  type: :runtime
334
328
  prerelease: false
335
329
  version_requirements: !ruby/object:Gem::Requirement
@@ -339,47 +333,73 @@ dependencies:
339
333
  version: 2.0.0
340
334
  - - "<"
341
335
  - !ruby/object:Gem::Version
342
- version: 2.1.0
336
+ version: 2.2.0
337
+ - !ruby/object:Gem::Dependency
338
+ name: pulp_deb_client
339
+ requirement: !ruby/object:Gem::Requirement
340
+ requirements:
341
+ - - ">="
342
+ - !ruby/object:Gem::Version
343
+ version: 2.6.0
344
+ - - "<"
345
+ - !ruby/object:Gem::Version
346
+ version: 2.8.0
347
+ type: :runtime
348
+ prerelease: false
349
+ version_requirements: !ruby/object:Gem::Requirement
350
+ requirements:
351
+ - - ">="
352
+ - !ruby/object:Gem::Version
353
+ version: 2.6.0
354
+ - - "<"
355
+ - !ruby/object:Gem::Version
356
+ version: 2.8.0
343
357
  - !ruby/object:Gem::Dependency
344
358
  name: pulp_rpm_client
345
359
  requirement: !ruby/object:Gem::Requirement
346
360
  requirements:
347
361
  - - ">="
348
362
  - !ruby/object:Gem::Version
349
- version: 3.9.0
363
+ version: 3.6.2
350
364
  - - "<"
351
365
  - !ruby/object:Gem::Version
352
- version: 3.10.0
366
+ version: 3.8.0
353
367
  type: :runtime
354
368
  prerelease: false
355
369
  version_requirements: !ruby/object:Gem::Requirement
356
370
  requirements:
357
371
  - - ">="
358
372
  - !ruby/object:Gem::Version
359
- version: 3.9.0
373
+ version: 3.6.2
360
374
  - - "<"
361
375
  - !ruby/object:Gem::Version
362
- version: 3.10.0
376
+ version: 3.8.0
363
377
  - !ruby/object:Gem::Dependency
364
378
  name: pulp_2to3_migration_client
365
379
  requirement: !ruby/object:Gem::Requirement
366
380
  requirements:
367
381
  - - ">="
368
382
  - !ruby/object:Gem::Version
369
- version: 0.7.0
383
+ version: 0.3.0
370
384
  - - "<"
371
385
  - !ruby/object:Gem::Version
372
- version: 0.8.0
386
+ version: 0.6.0
387
+ - - "!="
388
+ - !ruby/object:Gem::Version
389
+ version: 0.4.0
373
390
  type: :runtime
374
391
  prerelease: false
375
392
  version_requirements: !ruby/object:Gem::Requirement
376
393
  requirements:
377
394
  - - ">="
378
395
  - !ruby/object:Gem::Version
379
- version: 0.7.0
396
+ version: 0.3.0
380
397
  - - "<"
381
398
  - !ruby/object:Gem::Version
382
- version: 0.8.0
399
+ version: 0.6.0
400
+ - - "!="
401
+ - !ruby/object:Gem::Version
402
+ version: 0.4.0
383
403
  - !ruby/object:Gem::Dependency
384
404
  name: pulp_certguard_client
385
405
  requirement: !ruby/object:Gem::Requirement
@@ -753,6 +773,7 @@ files:
753
773
  - app/controllers/katello/concerns/api/v2/content_overrides_controller.rb
754
774
  - app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
755
775
  - app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb
776
+ - app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
756
777
  - app/controllers/katello/concerns/api/v2/repository_content_controller.rb
757
778
  - app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb
758
779
  - app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb
@@ -888,6 +909,7 @@ files:
888
909
  - app/lib/actions/katello/host/update_content_overrides.rb
889
910
  - app/lib/actions/katello/host/update_content_view.rb
890
911
  - app/lib/actions/katello/host/update_release_version.rb
912
+ - app/lib/actions/katello/host/update_system_purpose.rb
891
913
  - app/lib/actions/katello/host/upload_package_profile.rb
892
914
  - app/lib/actions/katello/host/upload_profiles.rb
893
915
  - app/lib/actions/katello/organization/create.rb
@@ -1197,6 +1219,7 @@ files:
1197
1219
  - app/models/katello/ansible_tag.rb
1198
1220
  - app/models/katello/authorization/activation_key.rb
1199
1221
  - app/models/katello/authorization/content_view.rb
1222
+ - app/models/katello/authorization/content_view_component.rb
1200
1223
  - app/models/katello/authorization/content_view_environment.rb
1201
1224
  - app/models/katello/authorization/content_view_history.rb
1202
1225
  - app/models/katello/authorization/content_view_version.rb
@@ -1407,6 +1430,7 @@ files:
1407
1430
  - app/services/katello/candlepin/message_handler.rb
1408
1431
  - app/services/katello/candlepin/pool_service.rb
1409
1432
  - app/services/katello/candlepin/system_purpose.rb
1433
+ - app/services/katello/candlepin/upstream_consumer.rb
1410
1434
  - app/services/katello/candlepin_event_listener.rb
1411
1435
  - app/services/katello/event_daemon.rb
1412
1436
  - app/services/katello/event_monitor/poller_thread.rb
@@ -1452,6 +1476,7 @@ files:
1452
1476
  - app/services/katello/pulp/yum_metadata_file.rb
1453
1477
  - app/services/katello/pulp3/ansible_collection.rb
1454
1478
  - app/services/katello/pulp3/api/ansible_collection.rb
1479
+ - app/services/katello/pulp3/api/apt.rb
1455
1480
  - app/services/katello/pulp3/api/content_guard.rb
1456
1481
  - app/services/katello/pulp3/api/core.rb
1457
1482
  - app/services/katello/pulp3/api/docker.rb
@@ -1461,6 +1486,7 @@ files:
1461
1486
  - app/services/katello/pulp3/content_view_version/export.rb
1462
1487
  - app/services/katello/pulp3/content_view_version/import.rb
1463
1488
  - app/services/katello/pulp3/content_view_version/import_export_common.rb
1489
+ - app/services/katello/pulp3/deb.rb
1464
1490
  - app/services/katello/pulp3/distribution.rb
1465
1491
  - app/services/katello/pulp3/docker_blob.rb
1466
1492
  - app/services/katello/pulp3/docker_manifest.rb
@@ -1476,6 +1502,7 @@ files:
1476
1502
  - app/services/katello/pulp3/pulp_content_unit.rb
1477
1503
  - app/services/katello/pulp3/repository.rb
1478
1504
  - app/services/katello/pulp3/repository/ansible_collection.rb
1505
+ - app/services/katello/pulp3/repository/apt.rb
1479
1506
  - app/services/katello/pulp3/repository/docker.rb
1480
1507
  - app/services/katello/pulp3/repository/file.rb
1481
1508
  - app/services/katello/pulp3/repository/yum.rb
@@ -2092,6 +2119,9 @@ files:
2092
2119
  - db/migrate/20200820145217_add_download_concurrency_to_katello_root_repositories.rb
2093
2120
  - db/migrate/20200910140340_remove_distribution_uuid.rb
2094
2121
  - db/migrate/20200914200906_remove_auto_enabled.rb
2122
+ - db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb
2123
+ - db/migrate/20201012172713_remove_gpg_key_perms.rb
2124
+ - db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb
2095
2125
  - db/seeds.d/101-locations.rb
2096
2126
  - db/seeds.d/102-organizations.rb
2097
2127
  - db/seeds.d/104-proxy.rb
@@ -3927,6 +3957,7 @@ files:
3927
3957
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-release-version-modal.controller.js
3928
3958
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js
3929
3959
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js
3960
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js
3930
3961
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js
3931
3962
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
3932
3963
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-destroy-modal.html
@@ -3937,6 +3968,7 @@ files:
3937
3968
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
3938
3969
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
3939
3970
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
3971
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
3940
3972
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
3941
3973
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js
3942
3974
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js
@@ -4309,6 +4341,7 @@ files:
4309
4341
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
4310
4342
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js
4311
4343
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4344
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js
4312
4345
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/ostree-upstream-sync-policy.service.js
4313
4346
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.module.js
4314
4347
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js
@@ -4442,6 +4475,7 @@ files:
4442
4475
  - lib/katello/tasks/job_templates.rake
4443
4476
  - lib/katello/tasks/pulp3_content_switchover.rake
4444
4477
  - lib/katello/tasks/pulp3_migration.rake
4478
+ - lib/katello/tasks/pulp3_migration_stats.rake
4445
4479
  - lib/katello/tasks/pulp3_post_migration_check.rake
4446
4480
  - lib/katello/tasks/receptor/extract_orgs.rake
4447
4481
  - lib/katello/tasks/regenerate_ueber_certs.rake
@@ -4464,6 +4498,7 @@ files:
4464
4498
  - lib/katello/tasks/upgrades/3.15/reindex_rpm_modular.rake
4465
4499
  - lib/katello/tasks/upgrades/3.15/set_sub_facet_dmi_uuid.rake
4466
4500
  - lib/katello/tasks/upgrades/3.16/update_applicable_el8_hosts.rake
4501
+ - lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb
4467
4502
  - lib/katello/tasks/upgrades/3.8/clear_checksum_type.rake
4468
4503
  - lib/katello/tasks/virt_who_report.rake
4469
4504
  - lib/katello/url_constrained_cookie_store.rb
@@ -4765,6 +4800,14 @@ files:
4765
4800
  - webpack/scenes/ContentViews/Details/ContentViewDetails.js
4766
4801
  - webpack/scenes/ContentViews/Details/ContentViewInfo.js
4767
4802
  - webpack/scenes/ContentViews/Details/DetailsContainer.js
4803
+ - webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js
4804
+ - webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js
4805
+ - webpack/scenes/ContentViews/Details/Repositories/LastSync.js
4806
+ - webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js
4807
+ - webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js
4808
+ - webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js
4809
+ - webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json
4810
+ - webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js
4768
4811
  - webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js
4769
4812
  - webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json
4770
4813
  - webpack/scenes/ContentViews/Details/contentViewInfo.scss
@@ -5009,9 +5052,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
5009
5052
  version: '0'
5010
5053
  required_rubygems_version: !ruby/object:Gem::Requirement
5011
5054
  requirements:
5012
- - - ">="
5055
+ - - ">"
5013
5056
  - !ruby/object:Gem::Version
5014
- version: '0'
5057
+ version: 1.3.1
5015
5058
  requirements: []
5016
5059
  rubygems_version: 3.1.4
5017
5060
  signing_key: