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.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/api_controller.rb +2 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
- data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
- data/app/lib/actions/katello/content_view/publish.rb +3 -4
- data/app/lib/actions/katello/content_view_version/import.rb +4 -3
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +2 -1
- data/app/lib/actions/katello/repository/update.rb +4 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_version_export_history.rb +2 -0
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/root_repository.rb +26 -1
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
- data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/erratum.rb +1 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +4 -0
- data/app/services/katello/pulp3/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/repository.rb +11 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +3 -3
- data/app/services/katello/pulp3/task_group.rb +0 -6
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +1 -0
- data/lib/katello/permission_creator.rb +68 -59
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +4 -1
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
- data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
- data/lib/katello/tasks/reports.rake +1 -4
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +54 -47
- data/locale/bn/katello.po +165 -26
- data/locale/cs/katello.po +164 -24
- data/locale/de/katello.po +165 -26
- data/locale/en/katello.po +164 -23
- data/locale/es/katello.po +165 -25
- data/locale/fr/katello.po +165 -25
- data/locale/gu/katello.po +165 -26
- data/locale/hi/katello.po +165 -26
- data/locale/it/katello.po +165 -25
- data/locale/ja/katello.po +165 -26
- data/locale/katello.pot +1036 -802
- data/locale/kn/katello.po +165 -26
- data/locale/ko/katello.po +165 -25
- data/locale/mr/katello.po +165 -26
- data/locale/or/katello.po +165 -26
- data/locale/pa/katello.po +165 -26
- data/locale/pt/katello.po +164 -23
- data/locale/pt_BR/katello.po +165 -25
- data/locale/ru/katello.po +165 -25
- data/locale/ta/katello.po +165 -26
- data/locale/te/katello.po +165 -26
- data/locale/zh_CN/katello.po +165 -25
- data/locale/zh_TW/katello.po +165 -26
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- metadata +69 -26
data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap
CHANGED
|
@@ -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
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
363
|
+
version: 3.6.2
|
|
350
364
|
- - "<"
|
|
351
365
|
- !ruby/object:Gem::Version
|
|
352
|
-
version: 3.
|
|
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.
|
|
373
|
+
version: 3.6.2
|
|
360
374
|
- - "<"
|
|
361
375
|
- !ruby/object:Gem::Version
|
|
362
|
-
version: 3.
|
|
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.
|
|
383
|
+
version: 0.3.0
|
|
370
384
|
- - "<"
|
|
371
385
|
- !ruby/object:Gem::Version
|
|
372
|
-
version: 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.
|
|
396
|
+
version: 0.3.0
|
|
380
397
|
- - "<"
|
|
381
398
|
- !ruby/object:Gem::Version
|
|
382
|
-
version: 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:
|
|
5057
|
+
version: 1.3.1
|
|
5015
5058
|
requirements: []
|
|
5016
5059
|
rubygems_version: 3.1.4
|
|
5017
5060
|
signing_key:
|