katello 4.0.3 → 4.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +0 -33
- data/app/assets/stylesheets/katello/contents.scss +1 -1
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -11
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -9
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -24
- data/app/controllers/katello/api/v2/api_controller.rb +15 -3
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_exports_controller.rb +1 -14
- data/app/controllers/katello/api/v2/content_imports_controller.rb +38 -15
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +22 -1
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +6 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -59
- data/app/controllers/katello/api/v2/content_views_controller.rb +3 -58
- data/app/controllers/katello/api/v2/host_errata_controller.rb +7 -6
- data/app/controllers/katello/api/v2/host_packages_controller.rb +4 -4
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +18 -22
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +16 -16
- data/app/controllers/katello/api/v2/organizations_controller.rb +2 -1
- data/app/controllers/katello/api/v2/package_groups_controller.rb +4 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +13 -12
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +50 -4
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +7 -1
- data/app/controllers/katello/concerns/api/api_controller.rb +10 -0
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +46 -0
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +8 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +31 -22
- data/app/controllers/katello/concerns/hosts_controller_extensions.rb +0 -8
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +1 -1
- data/app/controllers/katello/concerns/registration_commands_controller_extensions.rb +34 -0
- data/app/helpers/katello/katello_urls_helper.rb +23 -0
- data/app/lib/actions/candlepin/owner/import.rb +10 -3
- data/app/lib/actions/candlepin/product/content_update.rb +1 -1
- data/app/lib/actions/foreman/environment/destroy.rb +2 -2
- data/app/lib/actions/katello/agent_action.rb +1 -6
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +0 -7
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
- data/app/lib/actions/katello/content_view/add_to_environment.rb +9 -7
- data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -10
- data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -3
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -4
- data/app/lib/actions/katello/content_view/publish.rb +21 -31
- data/app/lib/actions/katello/content_view_environment/destroy.rb +0 -5
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +22 -0
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +22 -0
- data/app/lib/actions/katello/content_view_version/destroy.rb +0 -10
- data/app/lib/actions/katello/content_view_version/export.rb +20 -22
- data/app/lib/actions/katello/content_view_version/import.rb +27 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +4 -2
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +12 -67
- data/app/lib/actions/katello/content_view_version/republish_repositories.rb +0 -4
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +11 -0
- data/app/lib/actions/katello/foreman/content_update.rb +0 -3
- data/app/lib/actions/katello/host/auto_attach_subscriptions.rb +0 -4
- data/app/lib/actions/katello/organization/manifest_import.rb +7 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +28 -7
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +2 -2
- data/app/lib/actions/katello/product/create.rb +0 -1
- data/app/lib/actions/katello/repository/check_matching_content.rb +4 -3
- data/app/lib/actions/katello/repository/destroy.rb +1 -1
- data/app/lib/actions/katello/repository/discover.rb +1 -1
- data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -4
- data/app/lib/actions/katello/repository/import_upload.rb +0 -1
- data/app/lib/actions/katello/repository/update.rb +0 -1
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +0 -5
- data/app/lib/actions/pulp/repository/create.rb +1 -7
- data/app/lib/actions/pulp/repository/distributor_publish.rb +2 -10
- data/app/lib/actions/pulp/repository/sync.rb +1 -3
- data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
- data/app/lib/actions/pulp3/content_guard/refresh.rb +10 -6
- data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +57 -0
- data/app/lib/actions/pulp3/content_view_version/create_import_history.rb +34 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +34 -51
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +2 -2
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +13 -1
- data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/sync.rb +1 -0
- data/app/lib/actions/pulp3/repository/refresh_remote.rb +17 -0
- data/app/lib/katello/agent/client_message_handler.rb +3 -11
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +117 -3
- data/app/lib/katello/errors.rb +6 -11
- data/app/lib/katello/event_daemon/monitor.rb +0 -1
- data/app/lib/katello/event_daemon/runner.rb +2 -2
- data/app/lib/katello/event_daemon/services/agent_event_receiver.rb +10 -6
- data/app/lib/katello/http_resource.rb +1 -6
- data/app/lib/katello/logging.rb +11 -6
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/repo_discovery.rb +15 -1
- data/app/lib/katello/resources/candlepin/owner.rb +3 -2
- data/app/lib/katello/resources/candlepin/pool.rb +6 -2
- data/app/lib/katello/resources/candlepin.rb +10 -0
- data/app/lib/katello/util/package.rb +1 -1
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb +0 -6
- data/app/models/katello/authorization/content_view.rb +8 -0
- data/app/models/katello/authorization/content_view_version_import_history.rb +11 -0
- data/app/models/katello/concerns/content_facet_host_extensions.rb +1 -1
- data/app/models/katello/concerns/content_view_filter_rule_common.rb +2 -2
- data/app/models/katello/concerns/host_managed_extensions.rb +1 -32
- data/app/models/katello/concerns/hostgroup_extensions.rb +2 -9
- data/app/models/katello/concerns/http_proxy_extensions.rb +2 -4
- data/app/models/katello/concerns/location_extensions.rb +2 -25
- data/app/models/katello/concerns/operatingsystem_extensions.rb +0 -2
- data/app/models/katello/concerns/organization_extensions.rb +4 -18
- data/app/models/katello/concerns/redhat_extensions.rb +10 -18
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -31
- data/app/models/katello/content_view.rb +17 -113
- data/app/models/katello/content_view_component.rb +5 -0
- data/app/models/katello/content_view_docker_filter_rule.rb +1 -0
- data/app/models/katello/content_view_package_filter_rule.rb +4 -0
- data/app/models/katello/content_view_package_group_filter.rb +1 -0
- data/app/models/katello/content_view_repository.rb +4 -5
- data/app/models/katello/content_view_version.rb +9 -33
- data/app/models/katello/content_view_version_export_history.rb +18 -4
- data/app/models/katello/content_view_version_import_history.rb +42 -0
- data/app/models/katello/erratum.rb +1 -1
- data/app/models/katello/events/delete_pool.rb +19 -0
- data/app/models/katello/glue/candlepin/environment.rb +7 -0
- data/app/models/katello/glue/candlepin/owner.rb +12 -1
- data/app/models/katello/glue/candlepin/pool.rb +42 -25
- data/app/models/katello/glue/provider.rb +3 -6
- data/app/models/katello/glue/pulp/repo.rb +19 -9
- data/app/models/katello/host/content_facet.rb +1 -0
- data/app/models/katello/host/subscription_facet.rb +3 -1
- data/app/models/katello/kt_environment.rb +0 -6
- data/app/models/katello/package_group.rb +4 -0
- data/app/models/katello/ping.rb +15 -4
- data/app/models/katello/pool.rb +9 -0
- data/app/models/katello/product.rb +0 -6
- data/app/models/katello/product_content.rb +3 -1
- data/app/models/katello/pulp_sync_status.rb +0 -10
- data/app/models/katello/repository.rb +20 -35
- data/app/models/katello/root_repository.rb +0 -5
- data/app/models/katello/subscription.rb +10 -0
- data/app/models/katello/sync_plan.rb +7 -0
- data/app/models/setting/content.rb +7 -8
- data/app/presenters/katello/content_view_version_compare_presenter.rb +2 -6
- data/app/presenters/katello/product_content_presenter.rb +3 -5
- data/app/services/cert/certs.rb +3 -7
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/event_handler.rb +22 -22
- data/app/services/katello/candlepin/message_handler.rb +24 -15
- data/app/services/katello/content_view_manager.rb +24 -0
- data/app/services/katello/event_monitor/poller_thread.rb +25 -20
- data/app/services/katello/managed_content_medium_provider.rb +4 -0
- data/app/services/katello/organization_creator.rb +120 -0
- data/app/services/katello/product_content_finder.rb +5 -1
- data/app/services/katello/pulp/pulp_content_unit.rb +6 -6
- data/app/services/katello/pulp/smart_proxy_repository.rb +2 -17
- data/app/services/katello/pulp3/api/ansible_collection.rb +14 -2
- data/app/services/katello/pulp3/api/apt.rb +1 -1
- data/app/services/katello/pulp3/api/content_guard.rb +6 -40
- data/app/services/katello/pulp3/api/core.rb +27 -2
- data/app/services/katello/pulp3/api/docker.rb +1 -1
- data/app/services/katello/pulp3/api/file.rb +5 -1
- data/app/services/katello/pulp3/api/yum.rb +9 -1
- data/app/services/katello/pulp3/content_view_version/export.rb +18 -40
- data/app/services/katello/pulp3/content_view_version/import.rb +75 -30
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +32 -0
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +53 -21
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +47 -0
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +52 -0
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +99 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +1 -1
- data/app/services/katello/pulp3/repository/ansible_collection.rb +5 -1
- data/app/services/katello/pulp3/repository/apt.rb +2 -1
- data/app/services/katello/pulp3/repository/yum.rb +0 -16
- data/app/services/katello/pulp3/repository.rb +20 -1
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +12 -5
- data/app/services/katello/pulp3/task_group.rb +10 -5
- data/app/services/katello/smart_proxy_helper.rb +1 -8
- data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +0 -1
- data/app/services/katello/ui_notifications/system_error.rb +25 -0
- data/app/views/katello/api/v2/content_view_components/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_filters/show.json.rabl +0 -1
- data/app/views/katello/api/v2/{puppet_modules → content_view_version_import_histories}/index.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_version_import_histories/show.json.rabl +14 -0
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +2 -2
- data/app/views/katello/api/v2/content_view_versions/show.json.rabl +0 -7
- data/app/views/katello/api/v2/content_views/base.json.rabl +20 -9
- data/app/views/katello/api/v2/environments/show.json.rabl +0 -1
- data/app/views/katello/api/v2/package_groups/index.json.rabl +4 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +0 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repository_sets/index.json.rabl +4 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +22 -0
- data/app/views/katello/api/v2/subscriptions/show.json.rabl +1 -1
- data/app/views/overrides/activation_keys/_host_media_type_select.html.erb +1 -1
- data/app/views/overrides/smart_proxies/_download_policy.erb +1 -1
- data/config/initializers/monkeys.rb +0 -1
- data/config/katello.yaml.example +0 -1
- data/config/routes/api/v2.rb +9 -21
- data/config/routes/overrides.rb +1 -2
- data/db/migrate/20140422000001_update_products_add_organization.rb +3 -2
- data/db/migrate/20160701180402_add_sortable_version_to_puppet_modules.rb +2 -0
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +1 -1
- data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +14 -20
- data/db/migrate/20210224160921_remove_disabled_products_from_sync_plans.rb +6 -0
- data/db/migrate/20210302165636_remove_katello_puppet_modules.rb +62 -0
- data/db/migrate/20210309160925_create_katello_content_view_version_import_histories.rb +13 -0
- data/db/migrate/20210318204533_add_import_type_to_import_histories.rb +8 -0
- data/db/migrate/20210319123300_add_foreign_keys_to_import_export_histories.rb +6 -0
- data/db/migrate/20210322142311_add_auth_url_token_to_root_repositories.rb +6 -0
- data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +16 -0
- data/db/migrate/20210409033915_add_created_in_katello_to_taxonomy.rb +9 -0
- data/db/seeds.d/101-locations.rb +0 -3
- data/db/seeds.d/102-organizations.rb +1 -5
- data/db/seeds.d/109-katello-notification-blueprints.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +3 -2
- data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +325 -156
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-route/angular-route.js +3 -3
- data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +21 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +9 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +11 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +18 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +10 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-actions.controller.js +5 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +7 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +6 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +14 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +5 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +0 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js +9 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +2 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +3 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -56
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +2 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +2 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +21 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +71 -311
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +13 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +21 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +3 -3
- data/lib/katello/engine.rb +16 -15
- data/lib/katello/middleware/organization_created_enforcer.rb +22 -0
- data/lib/katello/permission_creator.rb +12 -28
- data/lib/katello/permissions/host_permissions.rb +3 -2
- data/lib/katello/plugin.rb +6 -19
- data/lib/katello/repository_types/ansible_collection.rb +1 -1
- data/lib/katello/repository_types/deb.rb +1 -1
- data/lib/katello/repository_types/docker.rb +1 -1
- data/lib/katello/repository_types/file.rb +1 -1
- data/lib/katello/repository_types/yum.rb +1 -1
- data/lib/katello/tasks/clean_backend_objects.rake +25 -0
- data/lib/katello/tasks/jenkins.rake +6 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -3
- data/lib/katello/tasks/reimport.rake +0 -1
- data/lib/katello/tasks/repository.rake +0 -30
- data/lib/katello/tasks/update_subscription_facet_backend_data.rake +3 -3
- data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +2 -4
- data/lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake +62 -0
- data/lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake +15 -0
- data/lib/katello/version.rb +1 -1
- data/lib/katello.rb +1 -1
- data/locale/action_names.rb +65 -63
- data/locale/bn/katello.edit.po +1357 -1606
- data/locale/bn/katello.po +465 -744
- data/locale/cs/katello.edit.po +1213 -1087
- data/locale/cs/katello.po +307 -219
- data/locale/de/katello.edit.po +1498 -1520
- data/locale/de/katello.po +589 -625
- data/locale/en/katello.edit.po +1198 -1074
- data/locale/en/katello.po +304 -213
- data/locale/es/katello.edit.po +2344 -2304
- data/locale/es/katello.po +1407 -1407
- data/locale/fr/katello.edit.po +2720 -2642
- data/locale/fr/katello.po +1703 -1750
- data/locale/gu/katello.edit.po +1546 -1797
- data/locale/gu/katello.po +654 -935
- data/locale/hi/katello.edit.po +1545 -1793
- data/locale/hi/katello.po +653 -931
- data/locale/it/katello.edit.po +1323 -1310
- data/locale/it/katello.po +407 -409
- data/locale/ja/katello.edit.po +2645 -2557
- data/locale/ja/katello.po +1646 -1664
- data/locale/katello.pot +1435 -1289
- data/locale/kn/katello.edit.po +1546 -1795
- data/locale/kn/katello.po +654 -933
- data/locale/ko/katello.edit.po +1464 -1449
- data/locale/ko/katello.po +554 -554
- data/locale/mr/katello.edit.po +1545 -1758
- data/locale/mr/katello.po +653 -896
- data/locale/or/katello.edit.po +1546 -1795
- data/locale/or/katello.po +654 -933
- data/locale/pa/katello.edit.po +1541 -1775
- data/locale/pa/katello.po +649 -913
- data/locale/pt/katello.edit.po +1289 -1255
- data/locale/pt/katello.po +398 -394
- data/locale/pt_BR/katello.edit.po +2370 -2315
- data/locale/pt_BR/katello.po +1435 -1421
- data/locale/ru/katello.edit.po +1611 -1608
- data/locale/ru/katello.po +704 -716
- data/locale/ta/katello.edit.po +1358 -1605
- data/locale/ta/katello.po +465 -742
- data/locale/te/katello.edit.po +1545 -1792
- data/locale/te/katello.po +653 -930
- data/locale/zh_CN/katello.edit.po +3052 -2930
- data/locale/zh_CN/katello.po +2055 -2039
- data/locale/zh_TW/katello.edit.po +1571 -1669
- data/locale/zh_TW/katello.po +649 -777
- data/package.json +2 -2
- data/webpack/{scenes/ContentViews/Details/Repositories/RepoAddedStatus.js → components/AddedStatusLabel.js} +5 -5
- data/webpack/components/RoutedTabs/RoutedTabs.js +91 -0
- data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +32 -0
- data/webpack/components/RoutedTabs/index.js +4 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageConstants.js +2 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageSelectors.js +21 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/ActivationKeys.test.js +18 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/Force.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/IgnoreSubmanErrors.test.js +9 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/LifeCycleEnvironment.test.js +11 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +58 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +25 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +27 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +99 -0
- data/webpack/components/extensions/RegistrationCommands/fields/Force.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +38 -0
- data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +56 -0
- data/webpack/components/extensions/RegistrationCommands/index.js +81 -0
- data/webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js +23 -24
- data/webpack/components/pf3Table/formatters/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +3 -1
- data/webpack/components/pf3Table/formatters/entitlementsValueFormatter.js +16 -0
- data/webpack/containers/Application/overrides.scss +3 -0
- data/webpack/fills_index.js +3 -0
- data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +0 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -1
- data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +28 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +45 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +124 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +161 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +163 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/unpublishedCVComponents.fixtures.json +64 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +67 -7
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +61 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +34 -11
- data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +33 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +117 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +115 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +7 -10
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +49 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +56 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +3 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterPackageGroups.fixtures.json +69 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +103 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +116 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json +147 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json +30 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +136 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json +370 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +94 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +0 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +106 -13
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +11 -5
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +5 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +138 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +1 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +57 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +73 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +31 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +64 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +8 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +105 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +728 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +154 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/emptyCVVersion.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -1
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Table/ContentViewVersionCell.js +33 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +17 -22
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +51 -102
- data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +5 -3
- data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +30 -5
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +95 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +11 -5
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +16 -0
- data/webpack/scenes/ContentViews/components/IconWithCount.js +1 -1
- data/webpack/scenes/ContentViews/components/InactiveText.js +15 -0
- data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +19 -1
- data/webpack/scenes/Subscriptions/Details/SubscriptionPurposeAttributes.js +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +1 -1
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +17 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +1 -1
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +144 -0
- data/webpack/scenes/Tasks/helpers.js +2 -2
- data/webpack/test-utils/react-testing-lib-wrapper.js +11 -3
- data/webpack/utils/__tests__/useParamsWithHash.test.js +22 -0
- data/webpack/utils/helpers.js +2 -0
- data/webpack/utils/paramsFromHash.js +16 -0
- data/webpack/utils/useUrlParams.js +14 -0
- metadata +122 -206
- data/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb +0 -82
- data/app/controllers/katello/api/v2/puppet_modules_controller.rb +0 -19
- data/app/controllers/katello/concerns/registration_controller_extensions.rb +0 -16
- data/app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb +0 -20
- data/app/lib/actions/candlepin/owner/create.rb +0 -16
- data/app/lib/actions/katello/content_view_puppet_environment/clear.rb +0 -11
- data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +0 -78
- data/app/lib/actions/katello/content_view_puppet_environment/clone_content_for_version.rb +0 -20
- data/app/lib/actions/katello/content_view_puppet_environment/create.rb +0 -34
- data/app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb +0 -23
- data/app/lib/actions/katello/content_view_puppet_environment/destroy.rb +0 -28
- data/app/lib/actions/katello/content_view_puppet_module/destroy.rb +0 -46
- data/app/lib/actions/katello/environment/library_create.rb +0 -35
- data/app/lib/actions/katello/organization/create.rb +0 -38
- data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +0 -36
- data/app/lib/actions/pulp/content_view_puppet_environment/index_content.rb +0 -19
- data/app/lib/actions/pulp/repository/presenters/puppet_presenter.rb +0 -54
- data/app/lib/actions/pulp3/content_migration.rb +0 -31
- data/app/lib/actions/pulp3/content_migration_presenter.rb +0 -59
- data/app/lib/actions/pulp3/content_migration_reset.rb +0 -22
- data/app/lib/katello/foreman.rb +0 -32
- data/app/lib/katello/mapping.rb +0 -31
- data/app/lib/katello/util/hostgroup_facets_helper.rb +0 -126
- data/app/lib/katello/validators/content_view_puppet_module_validator.rb +0 -32
- data/app/models/katello/concerns/environment_extensions.rb +0 -74
- data/app/models/katello/content_view_puppet_environment.rb +0 -116
- data/app/models/katello/content_view_puppet_environment_puppet_module.rb +0 -11
- data/app/models/katello/content_view_puppet_module.rb +0 -63
- data/app/models/katello/puppet_module.rb +0 -77
- data/app/models/katello/repository_puppet_module.rb +0 -7
- data/app/services/katello/pulp/puppet_module.rb +0 -21
- data/app/services/katello/pulp/repository/puppet.rb +0 -68
- data/app/services/katello/pulp3/migration.rb +0 -329
- data/app/services/katello/pulp3/migration_plan.rb +0 -178
- data/app/services/katello/pulp3/migration_switchover.rb +0 -126
- data/app/services/katello/puppet_class_importer_extensions.rb +0 -32
- data/app/views/foreman/hosts/_registration.html.erb +0 -12
- data/app/views/katello/api/v2/activation_keys/product_content.json.rabl +0 -30
- data/app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl +0 -3
- data/app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl +0 -7
- data/app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl +0 -9
- data/app/views/katello/api/v2/content_views/puppet_modules.json.rabl +0 -7
- data/app/views/katello/api/v2/host_subscriptions/content_override.json.rabl +0 -3
- data/app/views/katello/api/v2/host_subscriptions/product_content.json.rabl +0 -29
- data/app/views/katello/api/v2/puppet_modules/backend.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/base.json.rabl +0 -9
- data/app/views/katello/api/v2/puppet_modules/compare.json.rabl +0 -10
- data/app/views/katello/api/v2/puppet_modules/name.json.rabl +0 -3
- data/app/views/katello/api/v2/puppet_modules/names.json.rabl +0 -7
- data/app/views/katello/api/v2/puppet_modules/show.json.rabl +0 -4
- data/db/migrate/20210512192745_fix_red_hat_root_repository_arch.rb +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +0 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +0 -38
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +0 -45
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +0 -61
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js +0 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +0 -74
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html +0 -57
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html +0 -64
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html +0 -54
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html +0 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +0 -6903
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +0 -7094
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +0 -7303
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +0 -6895
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +0 -6865
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +0 -6720
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +0 -7077
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +0 -6832
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +0 -6766
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +0 -6703
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +0 -44
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html +0 -41
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html +0 -32
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html +0 -52
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html +0 -37
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +0 -35
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js +0 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js +0 -71
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html +0 -47
- data/lib/katello/repository_types/puppet.rb +0 -5
- data/lib/katello/tasks/fix_hostgroup_facets.rake +0 -8
- data/lib/katello/tasks/pulp3_content_switchover.rake +0 -32
- data/lib/katello/tasks/pulp3_migration.rake +0 -41
- data/lib/katello/tasks/pulp3_migration_abort.rake +0 -22
- data/lib/katello/tasks/pulp3_migration_reset.rake +0 -26
- data/lib/katello/tasks/pulp3_migration_stats.rake +0 -41
- data/lib/katello/tasks/pulp3_post_migration_check.rake +0 -51
- data/lib/monkeys/passenger_tee_input.rb +0 -20
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/webpack/components/TabWrapper/TabWrapper.js +0 -26
- data/webpack/components/TabWrapper/index.js +0 -3
- data/webpack/components/TabbedView/TabbedView.js +0 -38
- data/webpack/components/TabbedView/TabbedView.scss +0 -3
- data/webpack/components/TabbedView/index.js +0 -3
- data/webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js +0 -19
- data/webpack/scenes/ContentViews/expansions/VersionsExpansion.js +0 -11
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: 4.0.
|
4
|
+
version: 4.1.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- N/A
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -84,30 +84,16 @@ dependencies:
|
|
84
84
|
name: foreman-tasks
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '4.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- - "
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '4.0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: foreman-tasks-core
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - "<="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 0.3.5
|
104
|
-
type: :runtime
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "<="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: 0.3.5
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
98
|
name: foreman_remote_execution
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,9 +115,6 @@ dependencies:
|
|
129
115
|
- - ">="
|
130
116
|
- !ruby/object:Gem::Version
|
131
117
|
version: 1.2.0
|
132
|
-
- - "<"
|
133
|
-
- !ruby/object:Gem::Version
|
134
|
-
version: 1.6.0
|
135
118
|
type: :runtime
|
136
119
|
prerelease: false
|
137
120
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -139,9 +122,6 @@ dependencies:
|
|
139
122
|
- - ">="
|
140
123
|
- !ruby/object:Gem::Version
|
141
124
|
version: 1.2.0
|
142
|
-
- - "<"
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
version: 1.6.0
|
145
125
|
- !ruby/object:Gem::Dependency
|
146
126
|
name: activerecord-import
|
147
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -294,100 +274,100 @@ dependencies:
|
|
294
274
|
requirements:
|
295
275
|
- - ">="
|
296
276
|
- !ruby/object:Gem::Version
|
297
|
-
version: 3.
|
277
|
+
version: 3.11.0
|
298
278
|
- - "<"
|
299
279
|
- !ruby/object:Gem::Version
|
300
|
-
version: 3.
|
280
|
+
version: 3.12.0
|
301
281
|
type: :runtime
|
302
282
|
prerelease: false
|
303
283
|
version_requirements: !ruby/object:Gem::Requirement
|
304
284
|
requirements:
|
305
285
|
- - ">="
|
306
286
|
- !ruby/object:Gem::Version
|
307
|
-
version: 3.
|
287
|
+
version: 3.11.0
|
308
288
|
- - "<"
|
309
289
|
- !ruby/object:Gem::Version
|
310
|
-
version: 3.
|
290
|
+
version: 3.12.0
|
311
291
|
- !ruby/object:Gem::Dependency
|
312
292
|
name: pulp_file_client
|
313
293
|
requirement: !ruby/object:Gem::Requirement
|
314
294
|
requirements:
|
315
295
|
- - ">="
|
316
296
|
- !ruby/object:Gem::Version
|
317
|
-
version: 1.
|
297
|
+
version: 1.6.0
|
318
298
|
- - "<"
|
319
299
|
- !ruby/object:Gem::Version
|
320
|
-
version: 1.
|
300
|
+
version: 1.7.0
|
321
301
|
type: :runtime
|
322
302
|
prerelease: false
|
323
303
|
version_requirements: !ruby/object:Gem::Requirement
|
324
304
|
requirements:
|
325
305
|
- - ">="
|
326
306
|
- !ruby/object:Gem::Version
|
327
|
-
version: 1.
|
307
|
+
version: 1.6.0
|
328
308
|
- - "<"
|
329
309
|
- !ruby/object:Gem::Version
|
330
|
-
version: 1.
|
310
|
+
version: 1.7.0
|
331
311
|
- !ruby/object:Gem::Dependency
|
332
312
|
name: pulp_ansible_client
|
333
313
|
requirement: !ruby/object:Gem::Requirement
|
334
314
|
requirements:
|
335
315
|
- - ">="
|
336
316
|
- !ruby/object:Gem::Version
|
337
|
-
version: '0.
|
317
|
+
version: '0.7'
|
338
318
|
- - "<"
|
339
319
|
- !ruby/object:Gem::Version
|
340
|
-
version: '0.
|
320
|
+
version: '0.8'
|
341
321
|
type: :runtime
|
342
322
|
prerelease: false
|
343
323
|
version_requirements: !ruby/object:Gem::Requirement
|
344
324
|
requirements:
|
345
325
|
- - ">="
|
346
326
|
- !ruby/object:Gem::Version
|
347
|
-
version: '0.
|
327
|
+
version: '0.7'
|
348
328
|
- - "<"
|
349
329
|
- !ruby/object:Gem::Version
|
350
|
-
version: '0.
|
330
|
+
version: '0.8'
|
351
331
|
- !ruby/object:Gem::Dependency
|
352
332
|
name: pulp_container_client
|
353
333
|
requirement: !ruby/object:Gem::Requirement
|
354
334
|
requirements:
|
355
335
|
- - ">="
|
356
336
|
- !ruby/object:Gem::Version
|
357
|
-
version: 2.
|
337
|
+
version: 2.4.0
|
358
338
|
- - "<"
|
359
339
|
- !ruby/object:Gem::Version
|
360
|
-
version: 2.
|
340
|
+
version: 2.5.0
|
361
341
|
type: :runtime
|
362
342
|
prerelease: false
|
363
343
|
version_requirements: !ruby/object:Gem::Requirement
|
364
344
|
requirements:
|
365
345
|
- - ">="
|
366
346
|
- !ruby/object:Gem::Version
|
367
|
-
version: 2.
|
347
|
+
version: 2.4.0
|
368
348
|
- - "<"
|
369
349
|
- !ruby/object:Gem::Version
|
370
|
-
version: 2.
|
350
|
+
version: 2.5.0
|
371
351
|
- !ruby/object:Gem::Dependency
|
372
352
|
name: pulp_deb_client
|
373
353
|
requirement: !ruby/object:Gem::Requirement
|
374
354
|
requirements:
|
375
355
|
- - ">="
|
376
356
|
- !ruby/object:Gem::Version
|
377
|
-
version: 2.
|
357
|
+
version: 2.10.0
|
378
358
|
- - "<"
|
379
359
|
- !ruby/object:Gem::Version
|
380
|
-
version: 2.
|
360
|
+
version: 2.12.0
|
381
361
|
type: :runtime
|
382
362
|
prerelease: false
|
383
363
|
version_requirements: !ruby/object:Gem::Requirement
|
384
364
|
requirements:
|
385
365
|
- - ">="
|
386
366
|
- !ruby/object:Gem::Version
|
387
|
-
version: 2.
|
367
|
+
version: 2.10.0
|
388
368
|
- - "<"
|
389
369
|
- !ruby/object:Gem::Version
|
390
|
-
version: 2.
|
370
|
+
version: 2.12.0
|
391
371
|
- !ruby/object:Gem::Dependency
|
392
372
|
name: pulp_rpm_client
|
393
373
|
requirement: !ruby/object:Gem::Requirement
|
@@ -408,26 +388,6 @@ dependencies:
|
|
408
388
|
- - "<"
|
409
389
|
- !ruby/object:Gem::Version
|
410
390
|
version: 3.11.0
|
411
|
-
- !ruby/object:Gem::Dependency
|
412
|
-
name: pulp_2to3_migration_client
|
413
|
-
requirement: !ruby/object:Gem::Requirement
|
414
|
-
requirements:
|
415
|
-
- - ">="
|
416
|
-
- !ruby/object:Gem::Version
|
417
|
-
version: 0.7.0
|
418
|
-
- - "<"
|
419
|
-
- !ruby/object:Gem::Version
|
420
|
-
version: 1.0.0
|
421
|
-
type: :runtime
|
422
|
-
prerelease: false
|
423
|
-
version_requirements: !ruby/object:Gem::Requirement
|
424
|
-
requirements:
|
425
|
-
- - ">="
|
426
|
-
- !ruby/object:Gem::Version
|
427
|
-
version: 0.7.0
|
428
|
-
- - "<"
|
429
|
-
- !ruby/object:Gem::Version
|
430
|
-
version: 1.0.0
|
431
391
|
- !ruby/object:Gem::Dependency
|
432
392
|
name: pulp_certguard_client
|
433
393
|
requirement: !ruby/object:Gem::Requirement
|
@@ -756,7 +716,6 @@ files:
|
|
756
716
|
- app/controllers/katello/api/v2/content_view_filter_rules_controller.rb
|
757
717
|
- app/controllers/katello/api/v2/content_view_filters_controller.rb
|
758
718
|
- app/controllers/katello/api/v2/content_view_histories_controller.rb
|
759
|
-
- app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb
|
760
719
|
- app/controllers/katello/api/v2/content_view_repositories_controller.rb
|
761
720
|
- app/controllers/katello/api/v2/content_view_versions_controller.rb
|
762
721
|
- app/controllers/katello/api/v2/content_views_controller.rb
|
@@ -785,7 +744,6 @@ files:
|
|
785
744
|
- app/controllers/katello/api/v2/packages_controller.rb
|
786
745
|
- app/controllers/katello/api/v2/products_bulk_actions_controller.rb
|
787
746
|
- app/controllers/katello/api/v2/products_controller.rb
|
788
|
-
- app/controllers/katello/api/v2/puppet_modules_controller.rb
|
789
747
|
- app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb
|
790
748
|
- app/controllers/katello/api/v2/repositories_controller.rb
|
791
749
|
- app/controllers/katello/api/v2/repository_sets_controller.rb
|
@@ -804,6 +762,7 @@ files:
|
|
804
762
|
- app/controllers/katello/concerns/api/v2/content_overrides_controller.rb
|
805
763
|
- app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
|
806
764
|
- app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb
|
765
|
+
- app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb
|
807
766
|
- app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
|
808
767
|
- app/controllers/katello/concerns/api/v2/repository_content_controller.rb
|
809
768
|
- app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb
|
@@ -811,7 +770,7 @@ files:
|
|
811
770
|
- app/controllers/katello/concerns/filtered_auto_complete_search.rb
|
812
771
|
- app/controllers/katello/concerns/hosts_controller_extensions.rb
|
813
772
|
- app/controllers/katello/concerns/organizations_controller_extensions.rb
|
814
|
-
- app/controllers/katello/concerns/
|
773
|
+
- app/controllers/katello/concerns/registration_commands_controller_extensions.rb
|
815
774
|
- app/controllers/katello/concerns/smart_proxies_controller_extensions.rb
|
816
775
|
- app/controllers/katello/errata_controller.rb
|
817
776
|
- app/controllers/katello/http_errors.rb
|
@@ -820,7 +779,6 @@ files:
|
|
820
779
|
- app/controllers/katello/sync_management_controller.rb
|
821
780
|
- app/helpers/katello/application_helper.rb
|
822
781
|
- app/helpers/katello/concerns/dashboard_helper_extensions.rb
|
823
|
-
- app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb
|
824
782
|
- app/helpers/katello/concerns/smart_proxy_helper_extensions.rb
|
825
783
|
- app/helpers/katello/content_view_helper.rb
|
826
784
|
- app/helpers/katello/errata_mailer_helper.rb
|
@@ -852,7 +810,6 @@ files:
|
|
852
810
|
- app/lib/actions/candlepin/environment/create.rb
|
853
811
|
- app/lib/actions/candlepin/environment/destroy.rb
|
854
812
|
- app/lib/actions/candlepin/environment/set_content.rb
|
855
|
-
- app/lib/actions/candlepin/owner/create.rb
|
856
813
|
- app/lib/actions/candlepin/owner/destroy.rb
|
857
814
|
- app/lib/actions/candlepin/owner/destroy_imports.rb
|
858
815
|
- app/lib/actions/candlepin/owner/import.rb
|
@@ -906,14 +863,9 @@ files:
|
|
906
863
|
- app/lib/actions/katello/content_view/update.rb
|
907
864
|
- app/lib/actions/katello/content_view_environment/destroy.rb
|
908
865
|
- app/lib/actions/katello/content_view_environment/reassign_objects.rb
|
909
|
-
- app/lib/actions/katello/content_view_puppet_environment/clear.rb
|
910
|
-
- app/lib/actions/katello/content_view_puppet_environment/clone.rb
|
911
|
-
- app/lib/actions/katello/content_view_puppet_environment/clone_content_for_version.rb
|
912
|
-
- app/lib/actions/katello/content_view_puppet_environment/create.rb
|
913
|
-
- app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb
|
914
|
-
- app/lib/actions/katello/content_view_puppet_environment/destroy.rb
|
915
|
-
- app/lib/actions/katello/content_view_puppet_module/destroy.rb
|
916
866
|
- app/lib/actions/katello/content_view_version/after_promote_hook.rb
|
867
|
+
- app/lib/actions/katello/content_view_version/auto_create_products.rb
|
868
|
+
- app/lib/actions/katello/content_view_version/auto_create_repositories.rb
|
917
869
|
- app/lib/actions/katello/content_view_version/before_promote_hook.rb
|
918
870
|
- app/lib/actions/katello/content_view_version/create_repos.rb
|
919
871
|
- app/lib/actions/katello/content_view_version/destroy.rb
|
@@ -922,8 +874,8 @@ files:
|
|
922
874
|
- app/lib/actions/katello/content_view_version/import_library.rb
|
923
875
|
- app/lib/actions/katello/content_view_version/incremental_update.rb
|
924
876
|
- app/lib/actions/katello/content_view_version/republish_repositories.rb
|
877
|
+
- app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb
|
925
878
|
- app/lib/actions/katello/environment/destroy.rb
|
926
|
-
- app/lib/actions/katello/environment/library_create.rb
|
927
879
|
- app/lib/actions/katello/environment/publish_repositories.rb
|
928
880
|
- app/lib/actions/katello/foreman/abstract.rb
|
929
881
|
- app/lib/actions/katello/foreman/content_update.rb
|
@@ -952,7 +904,6 @@ files:
|
|
952
904
|
- app/lib/actions/katello/host/upload_profiles.rb
|
953
905
|
- app/lib/actions/katello/jail_concern/content_view.rb
|
954
906
|
- app/lib/actions/katello/jail_concern/organization.rb
|
955
|
-
- app/lib/actions/katello/organization/create.rb
|
956
907
|
- app/lib/actions/katello/organization/destroy.rb
|
957
908
|
- app/lib/actions/katello/organization/manifest_delete.rb
|
958
909
|
- app/lib/actions/katello/organization/manifest_import.rb
|
@@ -1048,8 +999,6 @@ files:
|
|
1048
999
|
- app/lib/actions/pulp/consumer/sync_capsule.rb
|
1049
1000
|
- app/lib/actions/pulp/consumer/unassociate_units.rb
|
1050
1001
|
- app/lib/actions/pulp/consumer/update.rb
|
1051
|
-
- app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb
|
1052
|
-
- app/lib/actions/pulp/content_view_puppet_environment/index_content.rb
|
1053
1002
|
- app/lib/actions/pulp/expect_one_task.rb
|
1054
1003
|
- app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb
|
1055
1004
|
- app/lib/actions/pulp/orchestration/repository/copy_all_units.rb
|
@@ -1081,7 +1030,6 @@ files:
|
|
1081
1030
|
- app/lib/actions/pulp/repository/presenters/docker_presenter.rb
|
1082
1031
|
- app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb
|
1083
1032
|
- app/lib/actions/pulp/repository/presenters/ostree_presenter.rb
|
1084
|
-
- app/lib/actions/pulp/repository/presenters/puppet_presenter.rb
|
1085
1033
|
- app/lib/actions/pulp/repository/presenters/yum_presenter.rb
|
1086
1034
|
- app/lib/actions/pulp/repository/refresh.rb
|
1087
1035
|
- app/lib/actions/pulp/repository/regenerate_applicability.rb
|
@@ -1095,15 +1043,15 @@ files:
|
|
1095
1043
|
- app/lib/actions/pulp3/abstract.rb
|
1096
1044
|
- app/lib/actions/pulp3/abstract_async_task.rb
|
1097
1045
|
- app/lib/actions/pulp3/capsule_content/generate_metadata.rb
|
1046
|
+
- app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb
|
1098
1047
|
- app/lib/actions/pulp3/capsule_content/refresh_distribution.rb
|
1099
1048
|
- app/lib/actions/pulp3/capsule_content/sync.rb
|
1100
1049
|
- app/lib/actions/pulp3/content_guard/refresh.rb
|
1101
1050
|
- app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb
|
1102
|
-
- app/lib/actions/pulp3/content_migration.rb
|
1103
|
-
- app/lib/actions/pulp3/content_migration_presenter.rb
|
1104
|
-
- app/lib/actions/pulp3/content_migration_reset.rb
|
1105
1051
|
- app/lib/actions/pulp3/content_view/delete_repository_references.rb
|
1052
|
+
- app/lib/actions/pulp3/content_view_version/create_export_history.rb
|
1106
1053
|
- app/lib/actions/pulp3/content_view_version/create_exporter.rb
|
1054
|
+
- app/lib/actions/pulp3/content_view_version/create_import_history.rb
|
1107
1055
|
- app/lib/actions/pulp3/content_view_version/create_importer.rb
|
1108
1056
|
- app/lib/actions/pulp3/content_view_version/destroy_exporter.rb
|
1109
1057
|
- app/lib/actions/pulp3/content_view_version/destroy_importer.rb
|
@@ -1151,6 +1099,7 @@ files:
|
|
1151
1099
|
- app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb
|
1152
1100
|
- app/lib/actions/pulp3/repository/presenters/repair_presenter.rb
|
1153
1101
|
- app/lib/actions/pulp3/repository/refresh_distribution.rb
|
1102
|
+
- app/lib/actions/pulp3/repository/refresh_remote.rb
|
1154
1103
|
- app/lib/actions/pulp3/repository/remove_units.rb
|
1155
1104
|
- app/lib/actions/pulp3/repository/repair.rb
|
1156
1105
|
- app/lib/actions/pulp3/repository/save_artifact.rb
|
@@ -1188,11 +1137,9 @@ files:
|
|
1188
1137
|
- app/lib/katello/event_daemon/monitor.rb
|
1189
1138
|
- app/lib/katello/event_daemon/runner.rb
|
1190
1139
|
- app/lib/katello/event_daemon/services/agent_event_receiver.rb
|
1191
|
-
- app/lib/katello/foreman.rb
|
1192
1140
|
- app/lib/katello/http_resource.rb
|
1193
1141
|
- app/lib/katello/lazy_accessor.rb
|
1194
1142
|
- app/lib/katello/logging.rb
|
1195
|
-
- app/lib/katello/mapping.rb
|
1196
1143
|
- app/lib/katello/messaging/connection.rb
|
1197
1144
|
- app/lib/katello/messaging/received_message.rb
|
1198
1145
|
- app/lib/katello/messaging/stomp_connection.rb
|
@@ -1224,7 +1171,6 @@ files:
|
|
1224
1171
|
- app/lib/katello/util/docker_manifest_clause_generator.rb
|
1225
1172
|
- app/lib/katello/util/errata.rb
|
1226
1173
|
- app/lib/katello/util/filter_clause_generator.rb
|
1227
|
-
- app/lib/katello/util/hostgroup_facets_helper.rb
|
1228
1174
|
- app/lib/katello/util/http_proxy.rb
|
1229
1175
|
- app/lib/katello/util/model.rb
|
1230
1176
|
- app/lib/katello/util/module_stream_clause_generator.rb
|
@@ -1245,7 +1191,6 @@ files:
|
|
1245
1191
|
- app/lib/katello/validators/content_view_environment_validator.rb
|
1246
1192
|
- app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
|
1247
1193
|
- app/lib/katello/validators/content_view_filter_version_validator.rb
|
1248
|
-
- app/lib/katello/validators/content_view_puppet_module_validator.rb
|
1249
1194
|
- app/lib/katello/validators/environment_docker_repositories_validator.rb
|
1250
1195
|
- app/lib/katello/validators/gpg_key_content_type_validator.rb
|
1251
1196
|
- app/lib/katello/validators/gpg_key_content_validator.rb
|
@@ -1280,6 +1225,7 @@ files:
|
|
1280
1225
|
- app/models/katello/authorization/content_view_history.rb
|
1281
1226
|
- app/models/katello/authorization/content_view_version.rb
|
1282
1227
|
- app/models/katello/authorization/content_view_version_export_history.rb
|
1228
|
+
- app/models/katello/authorization/content_view_version_import_history.rb
|
1283
1229
|
- app/models/katello/authorization/gpg_key.rb
|
1284
1230
|
- app/models/katello/authorization/host_collection.rb
|
1285
1231
|
- app/models/katello/authorization/host_tracer.rb
|
@@ -1297,7 +1243,6 @@ files:
|
|
1297
1243
|
- app/models/katello/concerns/audit_search.rb
|
1298
1244
|
- app/models/katello/concerns/content_facet_host_extensions.rb
|
1299
1245
|
- app/models/katello/concerns/content_view_filter_rule_common.rb
|
1300
|
-
- app/models/katello/concerns/environment_extensions.rb
|
1301
1246
|
- app/models/katello/concerns/host_managed_extensions.rb
|
1302
1247
|
- app/models/katello/concerns/hostgroup_extensions.rb
|
1303
1248
|
- app/models/katello/concerns/http_proxy_extensions.rb
|
@@ -1335,13 +1280,11 @@ files:
|
|
1335
1280
|
- app/models/katello/content_view_package_filter_rule.rb
|
1336
1281
|
- app/models/katello/content_view_package_group_filter.rb
|
1337
1282
|
- app/models/katello/content_view_package_group_filter_rule.rb
|
1338
|
-
- app/models/katello/content_view_puppet_environment.rb
|
1339
|
-
- app/models/katello/content_view_puppet_environment_puppet_module.rb
|
1340
|
-
- app/models/katello/content_view_puppet_module.rb
|
1341
1283
|
- app/models/katello/content_view_repository.rb
|
1342
1284
|
- app/models/katello/content_view_version.rb
|
1343
1285
|
- app/models/katello/content_view_version_component.rb
|
1344
1286
|
- app/models/katello/content_view_version_export_history.rb
|
1287
|
+
- app/models/katello/content_view_version_import_history.rb
|
1345
1288
|
- app/models/katello/cp_consumer_user.rb
|
1346
1289
|
- app/models/katello/deb.rb
|
1347
1290
|
- app/models/katello/distribution.rb
|
@@ -1360,6 +1303,7 @@ files:
|
|
1360
1303
|
- app/models/katello/event.rb
|
1361
1304
|
- app/models/katello/events/auto_publish_composite_view.rb
|
1362
1305
|
- app/models/katello/events/delete_host_agent_queue.rb
|
1306
|
+
- app/models/katello/events/delete_pool.rb
|
1363
1307
|
- app/models/katello/events/generate_host_applicability.rb
|
1364
1308
|
- app/models/katello/events/import_host_applicability.rb
|
1365
1309
|
- app/models/katello/events/import_pool.rb
|
@@ -1421,7 +1365,6 @@ files:
|
|
1421
1365
|
- app/models/katello/pulp3/repository_reference.rb
|
1422
1366
|
- app/models/katello/pulp_sync_status.rb
|
1423
1367
|
- app/models/katello/pulp_task_status.rb
|
1424
|
-
- app/models/katello/puppet_module.rb
|
1425
1368
|
- app/models/katello/purpose_addon.rb
|
1426
1369
|
- app/models/katello/purpose_addons_status.rb
|
1427
1370
|
- app/models/katello/purpose_role_status.rb
|
@@ -1441,7 +1384,6 @@ files:
|
|
1441
1384
|
- app/models/katello/repository_module_stream.rb
|
1442
1385
|
- app/models/katello/repository_ostree_branch.rb
|
1443
1386
|
- app/models/katello/repository_package_group.rb
|
1444
|
-
- app/models/katello/repository_puppet_module.rb
|
1445
1387
|
- app/models/katello/repository_rpm.rb
|
1446
1388
|
- app/models/katello/repository_srpm.rb
|
1447
1389
|
- app/models/katello/rhsm_fact_importer.rb
|
@@ -1492,11 +1434,13 @@ files:
|
|
1492
1434
|
- app/services/katello/candlepin/system_purpose.rb
|
1493
1435
|
- app/services/katello/candlepin/upstream_consumer.rb
|
1494
1436
|
- app/services/katello/candlepin_event_listener.rb
|
1437
|
+
- app/services/katello/content_view_manager.rb
|
1495
1438
|
- app/services/katello/event_monitor/poller_thread.rb
|
1496
1439
|
- app/services/katello/event_queue.rb
|
1497
1440
|
- app/services/katello/host_status_manager.rb
|
1498
1441
|
- app/services/katello/host_trace_manager.rb
|
1499
1442
|
- app/services/katello/managed_content_medium_provider.rb
|
1443
|
+
- app/services/katello/organization_creator.rb
|
1500
1444
|
- app/services/katello/product_content_finder.rb
|
1501
1445
|
- app/services/katello/product_content_importer.rb
|
1502
1446
|
- app/services/katello/proxy_status/pulp.rb
|
@@ -1518,13 +1462,11 @@ files:
|
|
1518
1462
|
- app/services/katello/pulp/package_category.rb
|
1519
1463
|
- app/services/katello/pulp/package_group.rb
|
1520
1464
|
- app/services/katello/pulp/pulp_content_unit.rb
|
1521
|
-
- app/services/katello/pulp/puppet_module.rb
|
1522
1465
|
- app/services/katello/pulp/repository.rb
|
1523
1466
|
- app/services/katello/pulp/repository/deb.rb
|
1524
1467
|
- app/services/katello/pulp/repository/docker.rb
|
1525
1468
|
- app/services/katello/pulp/repository/file.rb
|
1526
1469
|
- app/services/katello/pulp/repository/ostree.rb
|
1527
|
-
- app/services/katello/pulp/repository/puppet.rb
|
1528
1470
|
- app/services/katello/pulp/repository/yum.rb
|
1529
1471
|
- app/services/katello/pulp/rpm.rb
|
1530
1472
|
- app/services/katello/pulp/server.rb
|
@@ -1544,7 +1486,11 @@ files:
|
|
1544
1486
|
- app/services/katello/pulp3/content_view_version/export.rb
|
1545
1487
|
- app/services/katello/pulp3/content_view_version/import.rb
|
1546
1488
|
- app/services/katello/pulp3/content_view_version/import_export_common.rb
|
1489
|
+
- app/services/katello/pulp3/content_view_version/import_gpg_keys.rb
|
1547
1490
|
- app/services/katello/pulp3/content_view_version/import_validator.rb
|
1491
|
+
- app/services/katello/pulp3/content_view_version/importable_products.rb
|
1492
|
+
- app/services/katello/pulp3/content_view_version/importable_repositories.rb
|
1493
|
+
- app/services/katello/pulp3/content_view_version/metadata_generator.rb
|
1548
1494
|
- app/services/katello/pulp3/deb.rb
|
1549
1495
|
- app/services/katello/pulp3/distribution.rb
|
1550
1496
|
- app/services/katello/pulp3/docker_blob.rb
|
@@ -1553,9 +1499,6 @@ files:
|
|
1553
1499
|
- app/services/katello/pulp3/docker_tag.rb
|
1554
1500
|
- app/services/katello/pulp3/erratum.rb
|
1555
1501
|
- app/services/katello/pulp3/file_unit.rb
|
1556
|
-
- app/services/katello/pulp3/migration.rb
|
1557
|
-
- app/services/katello/pulp3/migration_plan.rb
|
1558
|
-
- app/services/katello/pulp3/migration_switchover.rb
|
1559
1502
|
- app/services/katello/pulp3/module_stream.rb
|
1560
1503
|
- app/services/katello/pulp3/package_group.rb
|
1561
1504
|
- app/services/katello/pulp3/pulp_content_unit.rb
|
@@ -1573,7 +1516,6 @@ files:
|
|
1573
1516
|
- app/services/katello/pulp3/task.rb
|
1574
1517
|
- app/services/katello/pulp3/task_group.rb
|
1575
1518
|
- app/services/katello/pulp3/yum_metadata_file.rb
|
1576
|
-
- app/services/katello/puppet_class_importer_extensions.rb
|
1577
1519
|
- app/services/katello/pxe_files_downloader.rb
|
1578
1520
|
- app/services/katello/registration_manager.rb
|
1579
1521
|
- app/services/katello/repository_type.rb
|
@@ -1594,6 +1536,7 @@ files:
|
|
1594
1536
|
- app/services/katello/ui_notifications/subscriptions/sca_disable_success.rb
|
1595
1537
|
- app/services/katello/ui_notifications/subscriptions/sca_enable_error.rb
|
1596
1538
|
- app/services/katello/ui_notifications/subscriptions/sca_enable_success.rb
|
1539
|
+
- app/services/katello/ui_notifications/system_error.rb
|
1597
1540
|
- app/services/katello/ui_notifications/task_notification.rb
|
1598
1541
|
- app/services/katello/upstream_connection_checker.rb
|
1599
1542
|
- app/views/common/400.html
|
@@ -1603,7 +1546,6 @@ files:
|
|
1603
1546
|
- app/views/dashboard/_subscription_status_widget.html.erb
|
1604
1547
|
- app/views/dashboard/_subscription_widget.html.erb
|
1605
1548
|
- app/views/dashboard/_sync_widget.html.erb
|
1606
|
-
- app/views/foreman/hosts/_registration.html.erb
|
1607
1549
|
- app/views/foreman/job_templates/install_errata.erb
|
1608
1550
|
- app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb
|
1609
1551
|
- app/views/foreman/job_templates/install_group.erb
|
@@ -1627,7 +1569,6 @@ files:
|
|
1627
1569
|
- app/views/katello/api/v2/activation_keys/available_releases.json.rabl
|
1628
1570
|
- app/views/katello/api/v2/activation_keys/base.json.rabl
|
1629
1571
|
- app/views/katello/api/v2/activation_keys/index.json.rabl
|
1630
|
-
- app/views/katello/api/v2/activation_keys/product_content.json.rabl
|
1631
1572
|
- app/views/katello/api/v2/activation_keys/show.json.rabl
|
1632
1573
|
- app/views/katello/api/v2/activation_keys/subscriptions.json.rabl
|
1633
1574
|
- app/views/katello/api/v2/ansible_collections/base.json.rabl
|
@@ -1665,19 +1606,17 @@ files:
|
|
1665
1606
|
- app/views/katello/api/v2/content_view_filters/show.json.rabl
|
1666
1607
|
- app/views/katello/api/v2/content_view_histories/index.json.rabl
|
1667
1608
|
- app/views/katello/api/v2/content_view_histories/show.json.rabl
|
1668
|
-
- app/views/katello/api/v2/content_view_puppet_modules/create.json.rabl
|
1669
|
-
- app/views/katello/api/v2/content_view_puppet_modules/index.json.rabl
|
1670
|
-
- app/views/katello/api/v2/content_view_puppet_modules/show.json.rabl
|
1671
1609
|
- app/views/katello/api/v2/content_view_repositories/show_all.json.rabl
|
1672
1610
|
- app/views/katello/api/v2/content_view_version_export_histories/index.json.rabl
|
1673
1611
|
- app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl
|
1612
|
+
- app/views/katello/api/v2/content_view_version_import_histories/index.json.rabl
|
1613
|
+
- app/views/katello/api/v2/content_view_version_import_histories/show.json.rabl
|
1674
1614
|
- app/views/katello/api/v2/content_view_versions/base.json.rabl
|
1675
1615
|
- app/views/katello/api/v2/content_view_versions/index.json.rabl
|
1676
1616
|
- app/views/katello/api/v2/content_view_versions/show.json.rabl
|
1677
1617
|
- app/views/katello/api/v2/content_views/base.json.rabl
|
1678
1618
|
- app/views/katello/api/v2/content_views/copy.json.rabl
|
1679
1619
|
- app/views/katello/api/v2/content_views/index.json.rabl
|
1680
|
-
- app/views/katello/api/v2/content_views/puppet_modules.json.rabl
|
1681
1620
|
- app/views/katello/api/v2/content_views/show.json.rabl
|
1682
1621
|
- app/views/katello/api/v2/content_views/version.json.rabl
|
1683
1622
|
- app/views/katello/api/v2/debs/base.json.rabl
|
@@ -1732,10 +1671,8 @@ files:
|
|
1732
1671
|
- app/views/katello/api/v2/host_packages/base.json.rabl
|
1733
1672
|
- app/views/katello/api/v2/host_packages/index.json.rabl
|
1734
1673
|
- app/views/katello/api/v2/host_subscriptions/available_release_versions.json.rabl
|
1735
|
-
- app/views/katello/api/v2/host_subscriptions/content_override.json.rabl
|
1736
1674
|
- app/views/katello/api/v2/host_subscriptions/events.json.rabl
|
1737
1675
|
- app/views/katello/api/v2/host_subscriptions/index.json.rabl
|
1738
|
-
- app/views/katello/api/v2/host_subscriptions/product_content.json.rabl
|
1739
1676
|
- app/views/katello/api/v2/host_tracer/base.json.rabl
|
1740
1677
|
- app/views/katello/api/v2/host_tracer/index.json.rabl
|
1741
1678
|
- app/views/katello/api/v2/hostgroups_extensions/show.json.rabl
|
@@ -1785,13 +1722,6 @@ files:
|
|
1785
1722
|
- app/views/katello/api/v2/providers/index.json.rabl
|
1786
1723
|
- app/views/katello/api/v2/providers/products.json.rabl
|
1787
1724
|
- app/views/katello/api/v2/providers/show.json.rabl
|
1788
|
-
- app/views/katello/api/v2/puppet_modules/backend.json.rabl
|
1789
|
-
- app/views/katello/api/v2/puppet_modules/base.json.rabl
|
1790
|
-
- app/views/katello/api/v2/puppet_modules/compare.json.rabl
|
1791
|
-
- app/views/katello/api/v2/puppet_modules/index.json.rabl
|
1792
|
-
- app/views/katello/api/v2/puppet_modules/name.json.rabl
|
1793
|
-
- app/views/katello/api/v2/puppet_modules/names.json.rabl
|
1794
|
-
- app/views/katello/api/v2/puppet_modules/show.json.rabl
|
1795
1725
|
- app/views/katello/api/v2/repositories/base.json.rabl
|
1796
1726
|
- app/views/katello/api/v2/repositories/index.json.rabl
|
1797
1727
|
- app/views/katello/api/v2/repositories/package_group_categories.json.rabl
|
@@ -2186,7 +2116,14 @@ files:
|
|
2186
2116
|
- db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb
|
2187
2117
|
- db/migrate/20210208213920_add_available_module_stream_context.rb
|
2188
2118
|
- db/migrate/20210218214048_change_default_content_view_version_export_history.rb
|
2189
|
-
- db/migrate/
|
2119
|
+
- db/migrate/20210224160921_remove_disabled_products_from_sync_plans.rb
|
2120
|
+
- db/migrate/20210302165636_remove_katello_puppet_modules.rb
|
2121
|
+
- db/migrate/20210309160925_create_katello_content_view_version_import_histories.rb
|
2122
|
+
- db/migrate/20210318204533_add_import_type_to_import_histories.rb
|
2123
|
+
- db/migrate/20210319123300_add_foreign_keys_to_import_export_histories.rb
|
2124
|
+
- db/migrate/20210322142311_add_auth_url_token_to_root_repositories.rb
|
2125
|
+
- db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
|
2126
|
+
- db/migrate/20210409033915_add_created_in_katello_to_taxonomy.rb
|
2190
2127
|
- db/seeds.d/101-locations.rb
|
2191
2128
|
- db/seeds.d/102-organizations.rb
|
2192
2129
|
- db/seeds.d/104-proxy.rb
|
@@ -4036,9 +3973,6 @@ files:
|
|
4036
3973
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
|
4037
3974
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
|
4038
3975
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js
|
4039
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-client.directive.js
|
4040
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js
|
4041
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js
|
4042
3976
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
|
4043
3977
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js
|
4044
3978
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js
|
@@ -4084,10 +4018,6 @@ files:
|
|
4084
4018
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
|
4085
4019
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-tasks.html
|
4086
4020
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
|
4087
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
|
4088
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html
|
4089
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html
|
4090
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html
|
4091
4021
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html
|
4092
4022
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-view.factory.js
|
4093
4023
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js
|
@@ -4114,7 +4044,6 @@ files:
|
|
4114
4044
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js
|
4115
4045
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js
|
4116
4046
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js
|
4117
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-puppet-modules.controller.js
|
4118
4047
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js
|
4119
4048
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js
|
4120
4049
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
|
@@ -4169,13 +4098,6 @@ files:
|
|
4169
4098
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
|
4170
4099
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js
|
4171
4100
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
|
4172
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js
|
4173
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js
|
4174
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module.factory.js
|
4175
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js
|
4176
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
|
4177
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-versions.html
|
4178
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-modules.html
|
4179
4101
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
|
4180
4102
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
|
4181
4103
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html
|
@@ -4205,7 +4127,6 @@ files:
|
|
4205
4127
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html
|
4206
4128
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
|
4207
4129
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
|
4208
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-puppet-modules.html
|
4209
4130
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
|
4210
4131
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
|
4211
4132
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html
|
@@ -4246,7 +4167,6 @@ files:
|
|
4246
4167
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
|
4247
4168
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html
|
4248
4169
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
|
4249
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-puppet-modules.html
|
4250
4170
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
|
4251
4171
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
|
4252
4172
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environment.factory.js
|
@@ -4325,16 +4245,6 @@ files:
|
|
4325
4245
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/http-proxies/http-proxy.factory.js
|
4326
4246
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README
|
4327
4247
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot
|
4328
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po
|
4329
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po
|
4330
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po
|
4331
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po
|
4332
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po
|
4333
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po
|
4334
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po
|
4335
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po
|
4336
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po
|
4337
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po
|
4338
4248
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js
|
4339
4249
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/zanata.xml
|
4340
4250
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js
|
@@ -4404,7 +4314,6 @@ files:
|
|
4404
4314
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ostree-branches.html
|
4405
4315
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-package-groups.html
|
4406
4316
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
|
4407
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-puppet-modules.html
|
4408
4317
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-tasks.html
|
4409
4318
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/download-policy.service.js
|
4410
4319
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
|
@@ -4441,18 +4350,6 @@ files:
|
|
4441
4350
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js
|
4442
4351
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/partials/product-table-sync-status.html
|
4443
4352
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html
|
4444
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js
|
4445
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js
|
4446
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module.controller.js
|
4447
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-content-views.html
|
4448
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-info.html
|
4449
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module-repositories.html
|
4450
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/views/puppet-module.html
|
4451
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-module.factory.js
|
4452
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js
|
4453
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.module.js
|
4454
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.routes.js
|
4455
|
-
- engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/views/puppet-modules.html
|
4456
4353
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/repository-sets/content-override-helper.service.js
|
4457
4354
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/repository-sets/repository-set.factory.js
|
4458
4355
|
- engines/bastion_katello/app/assets/javascripts/bastion_katello/repository-sets/repository-sets-enabled.filter.js
|
@@ -4518,6 +4415,7 @@ files:
|
|
4518
4415
|
- lib/katello/apipie/validators.rb
|
4519
4416
|
- lib/katello/engine.rb
|
4520
4417
|
- lib/katello/middleware/event_daemon.rb
|
4418
|
+
- lib/katello/middleware/organization_created_enforcer.rb
|
4521
4419
|
- lib/katello/permission_creator.rb
|
4522
4420
|
- lib/katello/permissions.rb
|
4523
4421
|
- lib/katello/permissions/host_permissions.rb
|
@@ -4534,24 +4432,16 @@ files:
|
|
4534
4432
|
- lib/katello/repository_types/docker.rb
|
4535
4433
|
- lib/katello/repository_types/file.rb
|
4536
4434
|
- lib/katello/repository_types/ostree.rb
|
4537
|
-
- lib/katello/repository_types/puppet.rb
|
4538
4435
|
- lib/katello/repository_types/yum.rb
|
4539
4436
|
- lib/katello/scheduled_jobs.rb
|
4540
4437
|
- lib/katello/tasks/clean_backend_objects.rake
|
4541
4438
|
- lib/katello/tasks/clean_old_file_repos.rake
|
4542
4439
|
- lib/katello/tasks/clean_published_repo_directories.rake
|
4543
4440
|
- lib/katello/tasks/delete_orphaned_content.rake
|
4544
|
-
- lib/katello/tasks/fix_hostgroup_facets.rake
|
4545
4441
|
- lib/katello/tasks/import_applicability.rake
|
4546
4442
|
- lib/katello/tasks/import_subscriptions.rake
|
4547
4443
|
- lib/katello/tasks/jenkins.rake
|
4548
4444
|
- lib/katello/tasks/job_templates.rake
|
4549
|
-
- lib/katello/tasks/pulp3_content_switchover.rake
|
4550
|
-
- lib/katello/tasks/pulp3_migration.rake
|
4551
|
-
- lib/katello/tasks/pulp3_migration_abort.rake
|
4552
|
-
- lib/katello/tasks/pulp3_migration_reset.rake
|
4553
|
-
- lib/katello/tasks/pulp3_migration_stats.rake
|
4554
|
-
- lib/katello/tasks/pulp3_post_migration_check.rake
|
4555
4445
|
- lib/katello/tasks/receptor/extract_orgs.rake
|
4556
4446
|
- lib/katello/tasks/regenerate_ueber_certs.rake
|
4557
4447
|
- lib/katello/tasks/reimport.rake
|
@@ -4564,107 +4454,86 @@ files:
|
|
4564
4454
|
- lib/katello/tasks/update_subscription_facet_backend_data.rake
|
4565
4455
|
- lib/katello/tasks/upgrade_check.rake
|
4566
4456
|
- lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake
|
4457
|
+
- lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake
|
4458
|
+
- lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake
|
4567
4459
|
- lib/katello/tasks/virt_who_report.rake
|
4568
4460
|
- lib/katello/url_constrained_cookie_store.rb
|
4569
4461
|
- lib/katello/version.rb
|
4570
4462
|
- lib/monkeys/anemone.rb
|
4571
4463
|
- lib/monkeys/ar_postgres_evr_t.rb
|
4572
4464
|
- lib/monkeys/fx_sqlite_skip.rb
|
4573
|
-
- lib/monkeys/passenger_tee_input.rb
|
4574
4465
|
- lib/proxy_api/container_gateway.rb
|
4575
4466
|
- lib/proxy_api/pulp.rb
|
4576
4467
|
- lib/proxy_api/pulp_node.rb
|
4577
4468
|
- locale/Makefile
|
4578
4469
|
- locale/README
|
4579
4470
|
- locale/action_names.rb
|
4580
|
-
- locale/bn/LC_MESSAGES/katello.mo
|
4581
4471
|
- locale/bn/katello.edit.po
|
4582
4472
|
- locale/bn/katello.po
|
4583
4473
|
- locale/bn/katello.po.time_stamp
|
4584
|
-
- locale/cs/LC_MESSAGES/katello.mo
|
4585
4474
|
- locale/cs/katello.edit.po
|
4586
4475
|
- locale/cs/katello.po
|
4587
4476
|
- locale/cs/katello.po.time_stamp
|
4588
|
-
- locale/de/LC_MESSAGES/katello.mo
|
4589
4477
|
- locale/de/katello.edit.po
|
4590
4478
|
- locale/de/katello.po
|
4591
4479
|
- locale/de/katello.po.time_stamp
|
4592
|
-
- locale/en/LC_MESSAGES/katello.mo
|
4593
4480
|
- locale/en/katello.edit.po
|
4594
4481
|
- locale/en/katello.po
|
4595
4482
|
- locale/en/katello.po.time_stamp
|
4596
|
-
- locale/es/LC_MESSAGES/katello.mo
|
4597
4483
|
- locale/es/katello.edit.po
|
4598
4484
|
- locale/es/katello.po
|
4599
4485
|
- locale/es/katello.po.time_stamp
|
4600
|
-
- locale/fr/LC_MESSAGES/katello.mo
|
4601
4486
|
- locale/fr/katello.edit.po
|
4602
4487
|
- locale/fr/katello.po
|
4603
4488
|
- locale/fr/katello.po.time_stamp
|
4604
|
-
- locale/gu/LC_MESSAGES/katello.mo
|
4605
4489
|
- locale/gu/katello.edit.po
|
4606
4490
|
- locale/gu/katello.po
|
4607
4491
|
- locale/gu/katello.po.time_stamp
|
4608
|
-
- locale/hi/LC_MESSAGES/katello.mo
|
4609
4492
|
- locale/hi/katello.edit.po
|
4610
4493
|
- locale/hi/katello.po
|
4611
4494
|
- locale/hi/katello.po.time_stamp
|
4612
|
-
- locale/it/LC_MESSAGES/katello.mo
|
4613
4495
|
- locale/it/katello.edit.po
|
4614
4496
|
- locale/it/katello.po
|
4615
4497
|
- locale/it/katello.po.time_stamp
|
4616
|
-
- locale/ja/LC_MESSAGES/katello.mo
|
4617
4498
|
- locale/ja/katello.edit.po
|
4618
4499
|
- locale/ja/katello.po
|
4619
4500
|
- locale/ja/katello.po.time_stamp
|
4620
4501
|
- locale/katello.pot
|
4621
|
-
- locale/kn/LC_MESSAGES/katello.mo
|
4622
4502
|
- locale/kn/katello.edit.po
|
4623
4503
|
- locale/kn/katello.po
|
4624
4504
|
- locale/kn/katello.po.time_stamp
|
4625
|
-
- locale/ko/LC_MESSAGES/katello.mo
|
4626
4505
|
- locale/ko/katello.edit.po
|
4627
4506
|
- locale/ko/katello.po
|
4628
4507
|
- locale/ko/katello.po.time_stamp
|
4629
|
-
- locale/mr/LC_MESSAGES/katello.mo
|
4630
4508
|
- locale/mr/katello.edit.po
|
4631
4509
|
- locale/mr/katello.po
|
4632
4510
|
- locale/mr/katello.po.time_stamp
|
4633
|
-
- locale/or/LC_MESSAGES/katello.mo
|
4634
4511
|
- locale/or/katello.edit.po
|
4635
4512
|
- locale/or/katello.po
|
4636
4513
|
- locale/or/katello.po.time_stamp
|
4637
|
-
- locale/pa/LC_MESSAGES/katello.mo
|
4638
4514
|
- locale/pa/katello.edit.po
|
4639
4515
|
- locale/pa/katello.po
|
4640
4516
|
- locale/pa/katello.po.time_stamp
|
4641
|
-
- locale/pt/LC_MESSAGES/katello.mo
|
4642
4517
|
- locale/pt/katello.edit.po
|
4643
4518
|
- locale/pt/katello.po
|
4644
4519
|
- locale/pt/katello.po.time_stamp
|
4645
|
-
- locale/pt_BR/LC_MESSAGES/katello.mo
|
4646
4520
|
- locale/pt_BR/katello.edit.po
|
4647
4521
|
- locale/pt_BR/katello.po
|
4648
4522
|
- locale/pt_BR/katello.po.time_stamp
|
4649
|
-
- locale/ru/LC_MESSAGES/katello.mo
|
4650
4523
|
- locale/ru/katello.edit.po
|
4651
4524
|
- locale/ru/katello.po
|
4652
4525
|
- locale/ru/katello.po.time_stamp
|
4653
|
-
- locale/ta/LC_MESSAGES/katello.mo
|
4654
4526
|
- locale/ta/katello.edit.po
|
4655
4527
|
- locale/ta/katello.po
|
4656
4528
|
- locale/ta/katello.po.time_stamp
|
4657
|
-
- locale/te/LC_MESSAGES/katello.mo
|
4658
4529
|
- locale/te/katello.edit.po
|
4659
4530
|
- locale/te/katello.po
|
4660
4531
|
- locale/te/katello.po.time_stamp
|
4661
4532
|
- locale/update-i18n
|
4662
4533
|
- locale/zanata.xml
|
4663
|
-
- locale/zh_CN/LC_MESSAGES/katello.mo
|
4664
4534
|
- locale/zh_CN/katello.edit.po
|
4665
4535
|
- locale/zh_CN/katello.po
|
4666
4536
|
- locale/zh_CN/katello.po.time_stamp
|
4667
|
-
- locale/zh_TW/LC_MESSAGES/katello.mo
|
4668
4537
|
- locale/zh_TW/katello.edit.po
|
4669
4538
|
- locale/zh_TW/katello.po
|
4670
4539
|
- locale/zh_TW/katello.po.time_stamp
|
@@ -4737,6 +4606,7 @@ files:
|
|
4737
4606
|
- webpack/__mocks__/react-intl/locale-data/en.js
|
4738
4607
|
- webpack/common_index.js
|
4739
4608
|
- webpack/components/ActionableDetail.js
|
4609
|
+
- webpack/components/AddedStatusLabel.js
|
4740
4610
|
- webpack/components/Content/ContentPage.js
|
4741
4611
|
- webpack/components/Content/ContentTable.js
|
4742
4612
|
- webpack/components/Content/Details/ContentDetailInfo.js
|
@@ -4769,6 +4639,9 @@ files:
|
|
4769
4639
|
- webpack/components/OptionTooltip/__tests__/OptionTooltip.test.js
|
4770
4640
|
- webpack/components/OptionTooltip/__tests__/__snapshots__/OptionTooltip.test.js.snap
|
4771
4641
|
- webpack/components/OptionTooltip/index.js
|
4642
|
+
- webpack/components/RoutedTabs/RoutedTabs.js
|
4643
|
+
- webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js
|
4644
|
+
- webpack/components/RoutedTabs/index.js
|
4772
4645
|
- webpack/components/Search/Search.js
|
4773
4646
|
- webpack/components/Search/Search.test.js
|
4774
4647
|
- webpack/components/Search/__snapshots__/Search.test.js.snap
|
@@ -4783,11 +4656,6 @@ files:
|
|
4783
4656
|
- webpack/components/SelectableDropdown/SelectableDropdown.js
|
4784
4657
|
- webpack/components/SelectableDropdown/__tests__/SelectableDropdown.test.js
|
4785
4658
|
- webpack/components/SelectableDropdown/index.js
|
4786
|
-
- webpack/components/TabWrapper/TabWrapper.js
|
4787
|
-
- webpack/components/TabWrapper/index.js
|
4788
|
-
- webpack/components/TabbedView/TabbedView.js
|
4789
|
-
- webpack/components/TabbedView/TabbedView.scss
|
4790
|
-
- webpack/components/TabbedView/index.js
|
4791
4659
|
- webpack/components/Table/EmptyStateMessage.js
|
4792
4660
|
- webpack/components/Table/MainTable.js
|
4793
4661
|
- webpack/components/Table/TableWrapper.js
|
@@ -4812,6 +4680,22 @@ files:
|
|
4812
4680
|
- webpack/components/WithOrganization/__snapshots__/withOrganization.test.js.snap
|
4813
4681
|
- webpack/components/WithOrganization/withOrganization.js
|
4814
4682
|
- webpack/components/WithOrganization/withOrganization.test.js
|
4683
|
+
- webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageConstants.js
|
4684
|
+
- webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
|
4685
|
+
- webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageSelectors.js
|
4686
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/ActivationKeys.test.js
|
4687
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/Force.test.js
|
4688
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/IgnoreSubmanErrors.test.js
|
4689
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/LifeCycleEnvironment.test.js
|
4690
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap
|
4691
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap
|
4692
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap
|
4693
|
+
- webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap
|
4694
|
+
- webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js
|
4695
|
+
- webpack/components/extensions/RegistrationCommands/fields/Force.js
|
4696
|
+
- webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js
|
4697
|
+
- webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js
|
4698
|
+
- webpack/components/extensions/RegistrationCommands/index.js
|
4815
4699
|
- webpack/components/extensions/about/SystemStatuses.js
|
4816
4700
|
- webpack/components/extensions/about/SystemStatusesActions.js
|
4817
4701
|
- webpack/components/extensions/about/SystemStatusesConsts.js
|
@@ -4850,6 +4734,7 @@ files:
|
|
4850
4734
|
- webpack/components/pf3Table/formatters/cellFormatter.js
|
4851
4735
|
- webpack/components/pf3Table/formatters/collapseableAndSelectionCellFormatter.js
|
4852
4736
|
- webpack/components/pf3Table/formatters/ellipsisCellFormatter.js
|
4737
|
+
- webpack/components/pf3Table/formatters/entitlementsValueFormatter.js
|
4853
4738
|
- webpack/components/pf3Table/formatters/headerFormatter.js
|
4854
4739
|
- webpack/components/pf3Table/formatters/index.js
|
4855
4740
|
- webpack/components/pf3Table/formatters/selectionCellFormatter.js
|
@@ -4942,27 +4827,58 @@ files:
|
|
4942
4827
|
- webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json
|
4943
4828
|
- webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js
|
4944
4829
|
- webpack/scenes/ContentViews/Create/index.js
|
4830
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js
|
4831
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js
|
4832
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js
|
4833
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json
|
4834
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js
|
4835
|
+
- webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/unpublishedCVComponents.fixtures.json
|
4945
4836
|
- webpack/scenes/ContentViews/Details/ContentViewDetailActions.js
|
4946
4837
|
- webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js
|
4947
4838
|
- webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js
|
4948
4839
|
- webpack/scenes/ContentViews/Details/ContentViewDetails.js
|
4949
4840
|
- webpack/scenes/ContentViews/Details/ContentViewInfo.js
|
4950
4841
|
- webpack/scenes/ContentViews/Details/DetailsContainer.js
|
4842
|
+
- webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js
|
4843
|
+
- webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js
|
4844
|
+
- webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js
|
4951
4845
|
- webpack/scenes/ContentViews/Details/Filters/ContentType.js
|
4846
|
+
- webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js
|
4847
|
+
- webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js
|
4952
4848
|
- webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js
|
4849
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js
|
4850
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterPackageGroups.fixtures.json
|
4851
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json
|
4852
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js
|
4953
4853
|
- webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json
|
4954
4854
|
- webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js
|
4855
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json
|
4856
|
+
- webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterRules.fixtures.json
|
4857
|
+
- webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js
|
4858
|
+
- webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.fixtures.json
|
4859
|
+
- webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js
|
4955
4860
|
- webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js
|
4956
4861
|
- webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js
|
4957
4862
|
- webpack/scenes/ContentViews/Details/Repositories/LastSync.js
|
4958
|
-
- webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js
|
4959
4863
|
- webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js
|
4864
|
+
- webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js
|
4960
4865
|
- webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json
|
4961
4866
|
- webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js
|
4867
|
+
- webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json
|
4868
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js
|
4869
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js
|
4870
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js
|
4871
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss
|
4872
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js
|
4873
|
+
- webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js
|
4874
|
+
- webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json
|
4875
|
+
- webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js
|
4876
|
+
- webpack/scenes/ContentViews/Details/Versions/__tests__/emptyCVVersion.fixtures.json
|
4962
4877
|
- webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js
|
4963
4878
|
- webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json
|
4964
4879
|
- webpack/scenes/ContentViews/Details/contentViewInfo.scss
|
4965
4880
|
- webpack/scenes/ContentViews/Details/index.js
|
4881
|
+
- webpack/scenes/ContentViews/Table/ContentViewVersionCell.js
|
4966
4882
|
- webpack/scenes/ContentViews/Table/ContentViewsTable.js
|
4967
4883
|
- webpack/scenes/ContentViews/Table/index.js
|
4968
4884
|
- webpack/scenes/ContentViews/Table/tableDataGenerator.js
|
@@ -4970,12 +4886,12 @@ files:
|
|
4970
4886
|
- webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json
|
4971
4887
|
- webpack/scenes/ContentViews/__tests__/contentViewPage.test.js
|
4972
4888
|
- webpack/scenes/ContentViews/components/ContentViewIcon.js
|
4889
|
+
- webpack/scenes/ContentViews/components/EnvironmentLabels.js
|
4973
4890
|
- webpack/scenes/ContentViews/components/IconWithCount.js
|
4974
4891
|
- webpack/scenes/ContentViews/components/IconWithCount.scss
|
4892
|
+
- webpack/scenes/ContentViews/components/InactiveText.js
|
4975
4893
|
- webpack/scenes/ContentViews/components/contentViewIcon.scss
|
4976
4894
|
- webpack/scenes/ContentViews/expansions/DetailsExpansion.js
|
4977
|
-
- webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js
|
4978
|
-
- webpack/scenes/ContentViews/expansions/VersionsExpansion.js
|
4979
4895
|
- webpack/scenes/ContentViews/helpers.js
|
4980
4896
|
- webpack/scenes/ContentViews/index.js
|
4981
4897
|
- webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js
|
@@ -5194,32 +5110,32 @@ files:
|
|
5194
5110
|
- webpack/test-utils/nockWrapper.js
|
5195
5111
|
- webpack/test-utils/react-testing-lib-wrapper.js
|
5196
5112
|
- webpack/test_setup.js
|
5113
|
+
- webpack/utils/__tests__/useParamsWithHash.test.js
|
5197
5114
|
- webpack/utils/helpers.js
|
5115
|
+
- webpack/utils/paramsFromHash.js
|
5198
5116
|
- webpack/utils/useEventListener.js
|
5117
|
+
- webpack/utils/useUrlParams.js
|
5199
5118
|
homepage: http://www.katello.org
|
5200
5119
|
licenses:
|
5201
5120
|
- GPL-2.0
|
5202
5121
|
metadata: {}
|
5203
|
-
post_install_message:
|
5122
|
+
post_install_message:
|
5204
5123
|
rdoc_options: []
|
5205
5124
|
require_paths:
|
5206
5125
|
- lib
|
5207
5126
|
required_ruby_version: !ruby/object:Gem::Requirement
|
5208
5127
|
requirements:
|
5209
|
-
- - "
|
5210
|
-
- !ruby/object:Gem::Version
|
5211
|
-
version: 2.5.0
|
5212
|
-
- - "<"
|
5128
|
+
- - "~>"
|
5213
5129
|
- !ruby/object:Gem::Version
|
5214
|
-
version: 2.
|
5130
|
+
version: '2.5'
|
5215
5131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
5216
5132
|
requirements:
|
5217
|
-
- - "
|
5133
|
+
- - ">"
|
5218
5134
|
- !ruby/object:Gem::Version
|
5219
|
-
version:
|
5135
|
+
version: 1.3.1
|
5220
5136
|
requirements: []
|
5221
|
-
rubygems_version: 3.1.
|
5222
|
-
signing_key:
|
5137
|
+
rubygems_version: 3.1.2
|
5138
|
+
signing_key:
|
5223
5139
|
specification_version: 4
|
5224
5140
|
summary: Content and Subscription Management plugin for Foreman
|
5225
5141
|
test_files: []
|