katello 3.16.0.rc3.1 → 3.16.0

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 (120) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +39 -23
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  4. data/app/controllers/katello/api/v2/api_controller.rb +9 -4
  5. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +5 -1
  6. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +3 -0
  7. data/app/controllers/katello/api/v2/content_views_controller.rb +7 -0
  8. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +13 -1
  10. data/app/controllers/katello/concerns/api/v2/associations_permission_check.rb +67 -0
  11. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -0
  12. data/app/helpers/katello/content_view_helper.rb +15 -0
  13. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +4 -0
  14. data/app/lib/actions/katello/capsule_content/sync.rb +0 -4
  15. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -16
  16. data/app/lib/actions/katello/content_view/incremental_updates.rb +8 -1
  17. data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -1
  18. data/app/lib/actions/katello/content_view/publish.rb +55 -16
  19. data/app/lib/actions/katello/content_view_version/incremental_update.rb +120 -26
  20. data/app/lib/actions/katello/host/attach_subscriptions.rb +5 -1
  21. data/app/lib/actions/katello/repository/multi_clone_contents.rb +66 -0
  22. data/app/lib/actions/katello/repository/multi_clone_to_version.rb +30 -0
  23. data/app/lib/actions/katello/sync_plan/run.rb +1 -1
  24. data/app/lib/actions/pulp/abstract_async_task.rb +1 -0
  25. data/app/lib/actions/pulp/consumer/sync_capsule.rb +8 -0
  26. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +2 -2
  27. data/app/lib/actions/pulp3/abstract_async_task.rb +62 -58
  28. data/app/lib/actions/pulp3/content_migration.rb +4 -0
  29. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -2
  30. data/app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb +36 -0
  31. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +28 -0
  32. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +55 -0
  33. data/app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb +1 -1
  34. data/app/lib/actions/pulp3/repository/save_version.rb +11 -3
  35. data/app/lib/actions/pulp3/repository/save_versions.rb +73 -0
  36. data/app/lib/katello/concerns/base_template_scope_extensions.rb +0 -14
  37. data/app/lib/katello/errors.rb +26 -15
  38. data/app/lib/katello/resources/candlepin.rb +1 -1
  39. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  40. data/app/models/katello/concerns/host_managed_extensions.rb +7 -0
  41. data/app/models/katello/concerns/organization_extensions.rb +14 -0
  42. data/app/models/katello/content_view.rb +18 -6
  43. data/app/models/katello/content_view_erratum_filter.rb +13 -0
  44. data/app/models/katello/content_view_filter.rb +4 -0
  45. data/app/models/katello/content_view_module_stream_filter.rb +30 -3
  46. data/app/models/katello/glue/pulp/repo.rb +1 -0
  47. data/app/models/katello/host/content_facet.rb +10 -5
  48. data/app/models/katello/module_stream.rb +1 -1
  49. data/app/models/katello/pulp3/content_guard.rb +1 -1
  50. data/app/models/katello/repository.rb +11 -0
  51. data/app/models/setting/content.rb +3 -1
  52. data/app/presenters/katello/sync_status_presenter.rb +4 -2
  53. data/app/services/katello/candlepin/message_handler.rb +2 -3
  54. data/app/services/katello/pulp/repository/yum.rb +2 -1
  55. data/app/services/katello/pulp3/api/core.rb +4 -0
  56. data/app/services/katello/pulp3/erratum.rb +3 -1
  57. data/app/services/katello/pulp3/migration.rb +9 -4
  58. data/app/services/katello/pulp3/migration_plan.rb +6 -6
  59. data/app/services/katello/pulp3/repository.rb +17 -1
  60. data/app/services/katello/pulp3/repository/yum.rb +187 -25
  61. data/app/services/katello/pulp3/task.rb +100 -0
  62. data/app/services/katello/pulp3/task_group.rb +79 -0
  63. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +20 -8
  64. data/app/services/katello/upstream_connection_checker.rb +48 -0
  65. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +4 -0
  66. data/app/views/katello/api/v2/srpms/backend.json.rabl +11 -0
  67. data/app/views/katello/api/v2/srpms/base.json.rabl +5 -0
  68. data/app/views/katello/api/v2/srpms/compare.json.rabl +10 -0
  69. data/app/views/katello/api/v2/srpms/index.json.rabl +1 -1
  70. data/app/views/katello/api/v2/srpms/show.json.rabl +3 -3
  71. data/config/routes/api/v2.rb +2 -0
  72. data/db/migrate/20200709021250_add_original_modules_to_content_view_module_stream_filter.rb +5 -0
  73. data/db/migrate/20200721142707_remove_duplicate_katello_pools_index.rb +5 -0
  74. data/db/seeds.d/109-katello-notification-blueprints.rb +1 -1
  75. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.routes.js +1 -13
  76. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +17 -4
  77. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +17 -0
  78. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.routes.js +1 -1
  79. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +4 -0
  80. data/lib/katello/engine.rb +0 -1
  81. data/lib/katello/permission_creator.rb +1 -1
  82. data/lib/katello/plugin.rb +2 -0
  83. data/lib/katello/tasks/reports.rake +16 -0
  84. data/lib/katello/version.rb +1 -1
  85. data/package.json +3 -3
  86. data/webpack/components/Content/ContentTable.js +2 -0
  87. data/webpack/components/Content/Details/ContentDetails.js +3 -0
  88. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  89. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +3 -0
  90. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +3 -0
  91. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  92. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -0
  93. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/RepositorySetRepository.js +2 -0
  94. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +2 -0
  95. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProductContent.js +2 -0
  96. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js +2 -0
  97. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +2 -0
  98. data/webpack/scenes/Subscriptions/SubscriptionActions.js +8 -8
  99. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +3 -1
  100. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +15 -1
  101. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +54 -7
  102. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  103. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +15 -1
  104. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/{UpstreamSubscriptionsContstants.js → UpstreamSubscriptionsConstants.js} +3 -0
  105. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +2 -0
  106. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +1 -1
  107. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +1 -1
  108. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsActions.test.js +0 -13
  109. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +6 -1
  110. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +6 -4
  111. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsReducer.test.js.snap +26 -25
  112. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +0 -58
  113. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +10 -4
  114. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +1 -0
  115. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +1 -68
  116. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/UpdateDialog.js +1 -1
  117. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js +4 -4
  118. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +12 -10
  119. data/webpack/scenes/Subscriptions/index.js +6 -3
  120. metadata +44 -27
@@ -77,6 +77,7 @@ describe('subscriptions table', () => {
77
77
  emptyState={{}}
78
78
  selectedRows={[]}
79
79
  onSelectedRowsChange={() => {}}
80
+ selectionEnabled
80
81
  />
81
82
  </MemoryRouter>);
82
83
  expect(page.find('#select1').is('[disabled]')).toBe(true);
@@ -2,13 +2,13 @@
2
2
 
3
3
  exports[`subscriptions table should render a loading state 1`] = `
4
4
  <SubscriptionsTable
5
- canManageSubscriptionAllocations={false}
6
5
  emptyState={Object {}}
7
6
  loadSubscriptions={[Function]}
8
7
  onDeleteSubscriptions={[Function]}
9
8
  onSelectedRowsChange={[Function]}
10
9
  onSubscriptionDeleteModalClose={[Function]}
11
10
  selectedRows={Array []}
11
+ selectionEnabled={false}
12
12
  subscriptionDeleteModalOpen={false}
13
13
  subscriptions={
14
14
  Object {
@@ -74,21 +74,6 @@ exports[`subscriptions table should render a table 1`] = `
74
74
  <tr
75
75
  class=""
76
76
  >
77
- <th
78
- aria-label="Select all rows"
79
- class="table-view-pf-select"
80
- >
81
- <label
82
- class="control-label sr-only"
83
- for="selectAll"
84
- >
85
- Select all rows
86
- </label>
87
- <input
88
- id="selectAll"
89
- type="checkbox"
90
- />
91
- </th>
92
77
  <th
93
78
  class=""
94
79
  >
@@ -120,20 +105,6 @@ exports[`subscriptions table should render a table 1`] = `
120
105
  <tr
121
106
  class=""
122
107
  >
123
- <td
124
- class="table-view-pf-select"
125
- >
126
- <label
127
- class="control-label sr-only"
128
- for="select0"
129
- >
130
- Select row
131
- </label>
132
- <input
133
- id="select0"
134
- type="checkbox"
135
- />
136
- </td>
137
108
  <td>
138
109
  <a
139
110
  href="/subscriptions/3/"
@@ -163,21 +134,6 @@ exports[`subscriptions table should render a table 1`] = `
163
134
  <tr
164
135
  class=""
165
136
  >
166
- <td
167
- class="table-view-pf-select"
168
- >
169
- <label
170
- class="control-label sr-only"
171
- for="select1"
172
- >
173
- Select row
174
- </label>
175
- <input
176
- disabled=""
177
- id="select1"
178
- type="checkbox"
179
- />
180
- </td>
181
137
  <td>
182
138
  <a
183
139
  href="/subscriptions/4/"
@@ -224,21 +180,6 @@ exports[`subscriptions table should render subscription name without hyperlink f
224
180
  <tr
225
181
  class=""
226
182
  >
227
- <th
228
- aria-label="Select all rows"
229
- class="table-view-pf-select"
230
- >
231
- <label
232
- class="control-label sr-only"
233
- for="selectAll"
234
- >
235
- Select all rows
236
- </label>
237
- <input
238
- id="selectAll"
239
- type="checkbox"
240
- />
241
- </th>
242
183
  <th
243
184
  class=""
244
185
  >
@@ -270,14 +211,6 @@ exports[`subscriptions table should render subscription name without hyperlink f
270
211
  <tr
271
212
  class=""
272
213
  >
273
- <td
274
- class="table-view-pf-select"
275
- >
276
- <span
277
- aria-hidden="true"
278
- class="fa fa-angle-right collapse-subscription-group-button"
279
- />
280
- </td>
281
214
  <td>
282
215
  hsdfhsdh
283
216
  </td>
@@ -47,7 +47,7 @@ const UpdateDialog = ({
47
47
  UpdateDialog.propTypes = {
48
48
  show: PropTypes.bool.isRequired,
49
49
  updateQuantity: PropTypes.func.isRequired,
50
- updatedQuantity: PropTypes.shape(PropTypes.Object).isRequired,
50
+ updatedQuantity: PropTypes.shape({}).isRequired,
51
51
  showUpdateConfirm: PropTypes.func.isRequired,
52
52
  enableEditing: PropTypes.func.isRequired,
53
53
  };
@@ -17,10 +17,10 @@ const Dialogs = ({
17
17
  );
18
18
 
19
19
  Dialogs.propTypes = {
20
- updateDialog: PropTypes.shape(UpdateDialog.propTypes).isRequired,
21
- unsavedChangesDialog: PropTypes.shape(UnsavedChangesDialog.propTypes).isRequired,
22
- inputsErrorsDialog: PropTypes.shape(InputsErrorsDialog.propTypes).isRequired,
23
- deleteDialog: PropTypes.shape(DeleteDialog.propTypes).isRequired,
20
+ updateDialog: PropTypes.shape({}).isRequired,
21
+ unsavedChangesDialog: PropTypes.shape({}).isRequired,
22
+ inputsErrorsDialog: PropTypes.shape({}).isRequired,
23
+ deleteDialog: PropTypes.shape({}).isRequired,
24
24
  };
25
25
 
26
26
  export default Dialogs;
@@ -15,9 +15,9 @@ const Table = ({
15
15
  inlineEditController,
16
16
  rows,
17
17
  editing,
18
+ selectionEnabled,
18
19
  groupedSubscriptions,
19
20
  toggleSubscriptionGroup,
20
- canManageSubscriptionAllocations,
21
21
  }) => {
22
22
  const allSubscriptionResults = subscriptions.results;
23
23
 
@@ -28,18 +28,23 @@ const Table = ({
28
28
 
29
29
  const groupingController = {
30
30
  isCollapseable: ({ rowData }) =>
31
- // the group contains more then one subscription
31
+ // the group contains more than one subscription
32
32
  rowData.collapsible,
33
33
  isCollapsed: ({ rowData }) => !groupedSubscriptions[rowData.product_id].open,
34
34
  toggle: ({ rowData }) => toggleSubscriptionGroup(rowData.product_id),
35
35
  };
36
36
 
37
- const alwaysDisplayColumns = ['select'];
37
+ const alwaysDisplayColumns = [];
38
+
39
+ if (selectionEnabled) {
40
+ alwaysDisplayColumns.push('select');
41
+ }
42
+
38
43
  const columnsDefinition = createSubscriptionsTableSchema(
39
44
  inlineEditController,
40
45
  selectionController,
41
46
  groupingController,
42
- canManageSubscriptionAllocations,
47
+ selectionEnabled,
43
48
  ).filter(column => tableColumns.includes(column.property) ||
44
49
  alwaysDisplayColumns.includes(column.property));
45
50
 
@@ -88,13 +93,14 @@ const Table = ({
88
93
  };
89
94
 
90
95
  Table.propTypes = {
91
- canManageSubscriptionAllocations: PropTypes.bool,
92
96
  emptyState: PropTypes.shape({}).isRequired,
93
97
  tableColumns: PropTypes.arrayOf(PropTypes.string).isRequired,
94
98
  subscriptions: PropTypes.shape({
95
99
  searchIsActive: PropTypes.bool,
96
100
  itemCount: PropTypes.number,
97
101
  pagination: PropTypes.shape({}),
102
+ // Disabling rule as existing code failed due to an eslint-plugin-react update
103
+ // eslint-disable-next-line react/forbid-prop-types
98
104
  results: PropTypes.array,
99
105
  }).isRequired,
100
106
  loadSubscriptions: PropTypes.func.isRequired,
@@ -107,11 +113,7 @@ Table.propTypes = {
107
113
  groupedSubscriptions: PropTypes.shape({}).isRequired,
108
114
  editing: PropTypes.bool.isRequired,
109
115
  rows: PropTypes.arrayOf(PropTypes.object).isRequired,
110
-
111
- };
112
-
113
- Table.defaultProps = {
114
- canManageSubscriptionAllocations: false,
116
+ selectionEnabled: PropTypes.bool.isRequired,
115
117
  };
116
118
 
117
119
  export default Table;
@@ -16,10 +16,11 @@ import {
16
16
  selectActivePermissions,
17
17
  selectTableSettings,
18
18
  selectIsTaskPending,
19
+ selectHasUpstreamConnection,
19
20
  } from './SubscriptionsSelectors';
20
21
  import { selectIsPollingTask } from '../Tasks/TaskSelectors';
21
- import { selectSimpleContentAccessEnabled } from '../Organizations/OrganizationSelectors';
22
-
22
+ import { selectOrganizationState, selectSimpleContentAccessEnabled } from '../Organizations/OrganizationSelectors';
23
+ import { pingUpstreamSubscriptions } from './UpstreamSubscriptions/UpstreamSubscriptionsActions';
23
24
  import reducer from './SubscriptionReducer';
24
25
  import { SUBSCRIPTION_TABLE_NAME, SUBSCRIPTIONS } from './SubscriptionConstants';
25
26
  import SubscriptionsPage from './SubscriptionsPage';
@@ -34,18 +35,20 @@ const mapStateToProps = (state) => {
34
35
  subscriptionTableSettings,
35
36
  activePermissions: selectActivePermissions(state),
36
37
  simpleContentAccess: selectSimpleContentAccessEnabled(state),
38
+ hasUpstreamConnection: selectHasUpstreamConnection(state),
37
39
  task: selectSubscriptionsTask(state),
38
40
  isTaskPending: selectIsTaskPending(state),
39
41
  isPollingTask: selectIsPollingTask(state, SUBSCRIPTIONS),
40
42
  searchQuery: selectSearchQuery(state),
41
43
  deleteModalOpened: selectDeleteModalOpened(state),
42
44
  deleteButtonDisabled: selectDeleteButtonDisabled(state),
43
- organization: state.katello.organization,
45
+ organization: selectOrganizationState(state),
44
46
  };
45
47
  };
46
48
 
47
49
  // map action dispatchers to props
48
50
  const actions = {
51
+ pingUpstreamSubscriptions,
49
52
  ...subscriptionActions,
50
53
  ...taskActions,
51
54
  ...settingActions,
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.16.0.rc3.1
4
+ version: 3.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-24 00:00:00.000000000 Z
11
+ date: 2020-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -218,40 +218,40 @@ dependencies:
218
218
  requirements:
219
219
  - - ">="
220
220
  - !ruby/object:Gem::Version
221
- version: 3.3.0
221
+ version: 3.4.0
222
222
  - - "<"
223
223
  - !ruby/object:Gem::Version
224
- version: 3.4.0
224
+ version: 3.5.0
225
225
  type: :runtime
226
226
  prerelease: false
227
227
  version_requirements: !ruby/object:Gem::Requirement
228
228
  requirements:
229
229
  - - ">="
230
230
  - !ruby/object:Gem::Version
231
- version: 3.3.0
231
+ version: 3.4.0
232
232
  - - "<"
233
233
  - !ruby/object:Gem::Version
234
- version: 3.4.0
234
+ version: 3.5.0
235
235
  - !ruby/object:Gem::Dependency
236
236
  name: pulp_file_client
237
237
  requirement: !ruby/object:Gem::Requirement
238
238
  requirements:
239
239
  - - ">="
240
240
  - !ruby/object:Gem::Version
241
- version: 0.3.0
241
+ version: 1.0.0
242
242
  - - "<"
243
243
  - !ruby/object:Gem::Version
244
- version: 0.4.0
244
+ version: 1.1.0
245
245
  type: :runtime
246
246
  prerelease: false
247
247
  version_requirements: !ruby/object:Gem::Requirement
248
248
  requirements:
249
249
  - - ">="
250
250
  - !ruby/object:Gem::Version
251
- version: 0.3.0
251
+ version: 1.0.0
252
252
  - - "<"
253
253
  - !ruby/object:Gem::Version
254
- version: 0.4.0
254
+ version: 1.1.0
255
255
  - !ruby/object:Gem::Dependency
256
256
  name: pulp_ansible_client
257
257
  requirement: !ruby/object:Gem::Requirement
@@ -261,7 +261,7 @@ dependencies:
261
261
  version: '0.1'
262
262
  - - "<"
263
263
  - !ruby/object:Gem::Version
264
- version: 0.3.0
264
+ version: 0.2.0b15
265
265
  type: :runtime
266
266
  prerelease: false
267
267
  version_requirements: !ruby/object:Gem::Requirement
@@ -271,54 +271,54 @@ dependencies:
271
271
  version: '0.1'
272
272
  - - "<"
273
273
  - !ruby/object:Gem::Version
274
- version: 0.3.0
274
+ version: 0.2.0b15
275
275
  - !ruby/object:Gem::Dependency
276
276
  name: pulp_container_client
277
277
  requirement: !ruby/object:Gem::Requirement
278
278
  requirements:
279
279
  - - ">="
280
280
  - !ruby/object:Gem::Version
281
- version: 1.3.0
281
+ version: 1.4.0
282
282
  - - "<"
283
283
  - !ruby/object:Gem::Version
284
- version: 1.4.0
284
+ version: 1.5.0
285
285
  type: :runtime
286
286
  prerelease: false
287
287
  version_requirements: !ruby/object:Gem::Requirement
288
288
  requirements:
289
289
  - - ">="
290
290
  - !ruby/object:Gem::Version
291
- version: 1.3.0
291
+ version: 1.4.0
292
292
  - - "<"
293
293
  - !ruby/object:Gem::Version
294
- version: 1.4.0
294
+ version: 1.5.0
295
295
  - !ruby/object:Gem::Dependency
296
296
  name: pulp_rpm_client
297
297
  requirement: !ruby/object:Gem::Requirement
298
298
  requirements:
299
299
  - - ">="
300
300
  - !ruby/object:Gem::Version
301
- version: 3.3.0
301
+ version: 3.5.0
302
302
  - - "<"
303
303
  - !ruby/object:Gem::Version
304
- version: 3.4.0
304
+ version: 3.6.0
305
305
  type: :runtime
306
306
  prerelease: false
307
307
  version_requirements: !ruby/object:Gem::Requirement
308
308
  requirements:
309
309
  - - ">="
310
310
  - !ruby/object:Gem::Version
311
- version: 3.3.0
311
+ version: 3.5.0
312
312
  - - "<"
313
313
  - !ruby/object:Gem::Version
314
- version: 3.4.0
314
+ version: 3.6.0
315
315
  - !ruby/object:Gem::Dependency
316
316
  name: pulp_2to3_migration_client
317
317
  requirement: !ruby/object:Gem::Requirement
318
318
  requirements:
319
- - - ">"
319
+ - - ">="
320
320
  - !ruby/object:Gem::Version
321
- version: '0.1'
321
+ version: 0.2.0b6
322
322
  - - "<"
323
323
  - !ruby/object:Gem::Version
324
324
  version: 0.3.0
@@ -326,9 +326,9 @@ dependencies:
326
326
  prerelease: false
327
327
  version_requirements: !ruby/object:Gem::Requirement
328
328
  requirements:
329
- - - ">"
329
+ - - ">="
330
330
  - !ruby/object:Gem::Version
331
- version: '0.1'
331
+ version: 0.2.0b6
332
332
  - - "<"
333
333
  - !ruby/object:Gem::Version
334
334
  version: 0.3.0
@@ -699,6 +699,7 @@ files:
699
699
  - app/controllers/katello/application_controller.rb
700
700
  - app/controllers/katello/auto_complete_search_controller.rb
701
701
  - app/controllers/katello/concerns/api/api_controller.rb
702
+ - app/controllers/katello/concerns/api/v2/associations_permission_check.rb
702
703
  - app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
703
704
  - app/controllers/katello/concerns/api/v2/content_overrides_controller.rb
704
705
  - app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
@@ -719,6 +720,7 @@ files:
719
720
  - app/helpers/katello/concerns/dashboard_helper_extensions.rb
720
721
  - app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb
721
722
  - app/helpers/katello/concerns/smart_proxy_helper_extensions.rb
723
+ - app/helpers/katello/content_view_helper.rb
722
724
  - app/helpers/katello/errata_mailer_helper.rb
723
725
  - app/helpers/katello/hosts_and_hostgroups_helper.rb
724
726
  - app/helpers/katello/katello_url_helper.rb
@@ -881,6 +883,8 @@ files:
881
883
  - app/lib/actions/katello/repository/index_package_groups.rb
882
884
  - app/lib/actions/katello/repository/instance_update.rb
883
885
  - app/lib/actions/katello/repository/metadata_generate.rb
886
+ - app/lib/actions/katello/repository/multi_clone_contents.rb
887
+ - app/lib/actions/katello/repository/multi_clone_to_version.rb
884
888
  - app/lib/actions/katello/repository/purge_empty_content.rb
885
889
  - app/lib/actions/katello/repository/refresh_repository.rb
886
890
  - app/lib/actions/katello/repository/remove_content.rb
@@ -991,6 +995,7 @@ files:
991
995
  - app/lib/actions/pulp3/orchestration/repository/delete.rb
992
996
  - app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb
993
997
  - app/lib/actions/pulp3/orchestration/repository/import_upload.rb
998
+ - app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb
994
999
  - app/lib/actions/pulp3/orchestration/repository/refresh_if_needed.rb
995
1000
  - app/lib/actions/pulp3/orchestration/repository/refresh_repos.rb
996
1001
  - app/lib/actions/pulp3/orchestration/repository/remove_units.rb
@@ -1014,6 +1019,8 @@ files:
1014
1019
  - app/lib/actions/pulp3/repository/delete_remote.rb
1015
1020
  - app/lib/actions/pulp3/repository/delete_version.rb
1016
1021
  - app/lib/actions/pulp3/repository/import_upload.rb
1022
+ - app/lib/actions/pulp3/repository/multi_copy_content.rb
1023
+ - app/lib/actions/pulp3/repository/multi_copy_units.rb
1017
1024
  - app/lib/actions/pulp3/repository/presenters/abstract_sync_presenter.rb
1018
1025
  - app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb
1019
1026
  - app/lib/actions/pulp3/repository/refresh_distribution.rb
@@ -1022,6 +1029,7 @@ files:
1022
1029
  - app/lib/actions/pulp3/repository/save_distribution_references.rb
1023
1030
  - app/lib/actions/pulp3/repository/save_publication.rb
1024
1031
  - app/lib/actions/pulp3/repository/save_version.rb
1032
+ - app/lib/actions/pulp3/repository/save_versions.rb
1025
1033
  - app/lib/actions/pulp3/repository/sync.rb
1026
1034
  - app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb
1027
1035
  - app/lib/actions/pulp3/repository/update_distributions.rb
@@ -1399,6 +1407,8 @@ files:
1399
1407
  - app/services/katello/pulp3/smart_proxy_mirror_repository.rb
1400
1408
  - app/services/katello/pulp3/smart_proxy_repository.rb
1401
1409
  - app/services/katello/pulp3/srpm.rb
1410
+ - app/services/katello/pulp3/task.rb
1411
+ - app/services/katello/pulp3/task_group.rb
1402
1412
  - app/services/katello/pulp3/yum_metadata_file.rb
1403
1413
  - app/services/katello/puppet_class_importer_extensions.rb
1404
1414
  - app/services/katello/pxe_files_downloader.rb
@@ -1418,6 +1428,7 @@ files:
1418
1428
  - app/services/katello/ui_notifications/subscriptions/manifest_refresh_error.rb
1419
1429
  - app/services/katello/ui_notifications/subscriptions/manifest_refresh_success.rb
1420
1430
  - app/services/katello/ui_notifications/task_notification.rb
1431
+ - app/services/katello/upstream_connection_checker.rb
1421
1432
  - app/views/common/400.html
1422
1433
  - app/views/dashboard/_content_views_widget.html.erb
1423
1434
  - app/views/dashboard/_errata_widget.html.erb
@@ -1621,6 +1632,9 @@ files:
1621
1632
  - app/views/katello/api/v2/repository_sets/show.json.rabl
1622
1633
  - app/views/katello/api/v2/root/resource_list.json.rabl
1623
1634
  - app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl
1635
+ - app/views/katello/api/v2/srpms/backend.json.rabl
1636
+ - app/views/katello/api/v2/srpms/base.json.rabl
1637
+ - app/views/katello/api/v2/srpms/compare.json.rabl
1624
1638
  - app/views/katello/api/v2/srpms/index.json.rabl
1625
1639
  - app/views/katello/api/v2/srpms/show.json.rabl
1626
1640
  - app/views/katello/api/v2/subscription_facet/base.json.rabl
@@ -1981,6 +1995,8 @@ files:
1981
1995
  - db/migrate/20200506163345_add_applicability_indicesto_katello_host_available_module_streams.rb
1982
1996
  - db/migrate/20200511204005_create_katello_host_queue_elements.rb
1983
1997
  - db/migrate/20200526200422_encrypt_root_repository_upstream_password.rb
1998
+ - db/migrate/20200709021250_add_original_modules_to_content_view_module_stream_filter.rb
1999
+ - db/migrate/20200721142707_remove_duplicate_katello_pools_index.rb
1984
2000
  - db/seeds.d/101-locations.rb
1985
2001
  - db/seeds.d/102-organizations.rb
1986
2002
  - db/seeds.d/104-proxy.rb
@@ -4335,6 +4351,7 @@ files:
4335
4351
  - lib/katello/tasks/receptor/extract_orgs.rake
4336
4352
  - lib/katello/tasks/regenerate_ueber_certs.rake
4337
4353
  - lib/katello/tasks/reimport.rake
4354
+ - lib/katello/tasks/reports.rake
4338
4355
  - lib/katello/tasks/repository.rake
4339
4356
  - lib/katello/tasks/reset.rake
4340
4357
  - lib/katello/tasks/rubocop.rake
@@ -4792,7 +4809,7 @@ files:
4792
4809
  - webpack/scenes/Subscriptions/SubscriptionsPage.scss
4793
4810
  - webpack/scenes/Subscriptions/SubscriptionsSelectors.js
4794
4811
  - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js
4795
- - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsContstants.js
4812
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsConstants.js
4796
4813
  - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js
4797
4814
  - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js
4798
4815
  - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js
@@ -4868,9 +4885,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
4868
4885
  version: '0'
4869
4886
  required_rubygems_version: !ruby/object:Gem::Requirement
4870
4887
  requirements:
4871
- - - ">"
4888
+ - - ">="
4872
4889
  - !ruby/object:Gem::Version
4873
- version: 1.3.1
4890
+ version: '0'
4874
4891
  requirements: []
4875
4892
  rubygems_version: 3.0.3
4876
4893
  signing_key: