katello 3.7.1.1 → 3.8.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (187) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/app/assets/javascripts/katello/common/index.js +0 -1
  4. data/app/assets/javascripts/katello/sync_management/index.js +0 -1
  5. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +477 -0
  6. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/activation_keys_controller.rb +2 -2
  8. data/app/controllers/katello/api/v2/api_controller.rb +3 -1
  9. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  11. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +15 -1
  12. data/app/controllers/katello/api/v2/environments_controller.rb +5 -2
  13. data/app/controllers/katello/api/v2/errata_controller.rb +48 -34
  14. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/host_collections_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/host_packages_controller.rb +5 -1
  17. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/packages_controller.rb +33 -22
  19. data/app/controllers/katello/api/v2/products_controller.rb +1 -1
  20. data/app/controllers/katello/api/v2/repositories_controller.rb +6 -5
  21. data/app/controllers/katello/api/v2/repository_sets_controller.rb +1 -10
  22. data/app/controllers/katello/api/v2/sync_plans_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +20 -12
  24. data/app/controllers/katello/remote_execution_controller.rb +6 -6
  25. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +9 -37
  26. data/app/lib/actions/katello/content_view/promote.rb +6 -2
  27. data/app/lib/actions/katello/content_view_version/after_promote_hook.rb +11 -0
  28. data/app/lib/actions/katello/content_view_version/before_promote_hook.rb +11 -0
  29. data/app/lib/actions/katello/host/remove_subscriptions.rb +1 -1
  30. data/app/lib/actions/pulp/consumer/abstract_content_action.rb +0 -12
  31. data/app/lib/actions/pulp/consumer/content_install.rb +1 -1
  32. data/app/lib/actions/pulp/consumer/content_uninstall.rb +1 -1
  33. data/app/lib/actions/pulp/consumer/content_update.rb +1 -1
  34. data/app/lib/katello/resources/registry.rb +40 -0
  35. data/app/lib/katello/util/package.rb +9 -4
  36. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
  37. data/app/models/katello/content_view.rb +4 -12
  38. data/app/models/katello/content_view_version.rb +26 -0
  39. data/app/models/katello/glue/candlepin/owner.rb +8 -0
  40. data/app/models/katello/glue/candlepin/pool.rb +11 -11
  41. data/app/models/katello/glue/candlepin/repository.rb +1 -1
  42. data/app/models/katello/glue/pulp/repos.rb +1 -0
  43. data/app/models/katello/host/content_facet.rb +1 -2
  44. data/app/models/katello/kt_environment.rb +6 -0
  45. data/app/models/katello/product_content.rb +1 -4
  46. data/app/models/katello/repository.rb +2 -0
  47. data/app/models/katello/rpm.rb +118 -14
  48. data/app/services/katello/puppet_class_importer_extensions.rb +17 -20
  49. data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +1 -3
  50. data/app/views/katello/api/v2/common/copy.json.rabl +3 -0
  51. data/app/views/katello/api/v2/environments/show.json.rabl +1 -1
  52. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -0
  53. data/app/views/katello/api/v2/repositories/show.json.rabl +4 -2
  54. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +3 -2
  55. data/config/katello.yaml +89 -0
  56. data/config/routes.rb +0 -1
  57. data/config/routes/api/registry.rb +29 -0
  58. data/config/routes/api/v2.rb +1 -1
  59. data/db/migrate/20180612163403_add_foreign_key_to_hypervisor_id.rb +0 -3
  60. data/db/migrate/20180614184822_add_unauthenticated_pull.rb +9 -0
  61. data/db/migrate/20180618195941_add_description_to_repository.rb +5 -0
  62. data/db/seeds.d/75-job_templates.rb +2 -5
  63. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +3 -4
  64. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -4
  65. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +1 -1
  66. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +1 -1
  67. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
  68. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -1
  69. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +1 -0
  70. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +32 -18
  71. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +1 -1
  72. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +2 -0
  73. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html +32 -23
  74. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +6 -0
  75. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +8 -0
  76. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +1 -1
  77. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  78. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +0 -5
  79. data/lib/katello/engine.rb +1 -0
  80. data/lib/katello/permission_creator.rb +2 -0
  81. data/lib/katello/permissions/registry_permissions.rb +20 -0
  82. data/lib/katello/plugin.rb +1 -0
  83. data/lib/katello/tasks/clean_backend_objects.rake +3 -12
  84. data/lib/katello/version.rb +1 -1
  85. data/package.json +7 -10
  86. data/webpack/components/Search/Search.test.js +1 -3
  87. data/webpack/containers/Application/config.js +2 -9
  88. data/webpack/containers/Application/index.js +2 -4
  89. data/webpack/mockRequest.js +3 -3
  90. data/webpack/move_to_foreman/common/helpers.js +8 -45
  91. data/webpack/move_to_foreman/components/common/{EmptyState → emptyState}/index.js +3 -16
  92. data/webpack/move_to_foreman/components/common/table/components/Table.js +1 -1
  93. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +2 -2
  94. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionCell.test.js.snap +1 -1
  95. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +1 -1
  96. data/webpack/move_to_pf/LoadingState/LoadingState.js +14 -27
  97. data/webpack/move_to_pf/LoadingState/LoadingState.test.js +4 -8
  98. data/webpack/move_to_pf/react-bootstrap-select/index.js +1 -12
  99. data/webpack/redux/actions/RedHatRepositories/enabled.js +1 -0
  100. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  101. data/webpack/redux/actions/RedHatRepositories/sets.js +1 -1
  102. data/webpack/redux/consts.js +0 -6
  103. data/webpack/redux/reducers/index.js +0 -2
  104. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +23 -14
  105. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +1 -1
  106. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +0 -1
  107. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -3
  108. data/webpack/scenes/RedHatRepositories/index.js +3 -7
  109. data/webpack/scenes/RedHatRepositories/index.scss +0 -1
  110. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +8 -3
  111. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +1 -30
  112. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +28 -111
  113. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js +1 -3
  114. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +1 -6
  115. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +424 -519
  116. data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +4 -7
  117. data/webpack/scenes/Subscriptions/Details/index.js +3 -5
  118. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +34 -78
  119. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +24 -5
  120. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +1 -9
  121. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -3
  122. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +8 -20
  123. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js +1 -3
  124. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +7 -34
  125. data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +16 -9
  126. data/webpack/scenes/Subscriptions/Manifest/index.js +0 -1
  127. data/webpack/scenes/Subscriptions/SubscriptionActions.js +26 -5
  128. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +0 -1
  129. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +0 -3
  130. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +4 -11
  131. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +36 -31
  132. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +12 -3
  133. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +27 -57
  134. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +3 -2
  135. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +5 -10
  136. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js +5 -10
  137. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +4 -49
  138. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +3 -8
  139. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +11 -21
  140. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js +8 -5
  141. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -2
  142. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +3 -9
  143. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +2 -14
  144. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +17 -11
  145. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +5 -8
  146. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +58 -45
  147. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +4 -11
  148. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
  149. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +3 -16
  150. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +365 -392
  151. data/webpack/scenes/Subscriptions/index.js +0 -1
  152. data/webpack/services/api/fixtures.js +353 -0
  153. data/webpack/services/api/index.js +1 -17
  154. data/webpack/test_setup.js +0 -2
  155. metadata +16 -37
  156. data/config/katello.yml +0 -59
  157. data/webpack/__mocks__/foremanReact/components/BreadcrumbBar.js +0 -3
  158. data/webpack/__mocks__/foremanReact/redux.js +0 -3
  159. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +0 -8
  160. data/webpack/components/SelectOrg/SelectOrg.scss +0 -3
  161. data/webpack/components/SelectOrg/SelectOrgAction.js +0 -41
  162. data/webpack/components/SelectOrg/SelectOrgReducer.js +0 -33
  163. data/webpack/components/SelectOrg/SetOrganization.js +0 -116
  164. data/webpack/components/WithOrganization/withOrganization.js +0 -28
  165. data/webpack/global_test_setup.js +0 -6
  166. data/webpack/helpers/caret.js +0 -6
  167. data/webpack/move_to_pf/Select/Select.js +0 -40
  168. data/webpack/scenes/Products/ProductActions.js +0 -24
  169. data/webpack/scenes/Products/ProductConstants.js +0 -3
  170. data/webpack/scenes/Products/__tests__/ProductActions.test.js +0 -40
  171. data/webpack/scenes/Products/__tests__/products.fixtures.js +0 -90
  172. data/webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js +0 -34
  173. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js +0 -36
  174. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js +0 -27
  175. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +0 -25
  176. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap +0 -47
  177. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js +0 -54
  178. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js +0 -29
  179. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss +0 -9
  180. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js +0 -18
  181. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js +0 -13
  182. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap +0 -45
  183. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap +0 -67
  184. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js +0 -110
  185. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +0 -228
  186. data/webpack/scenes/Tasks/helpers.js +0 -52
  187. data/webpack/services/api/testHelpers.js +0 -28
@@ -11,7 +11,6 @@ import SubscriptionsPage from './SubscriptionsPage';
11
11
 
12
12
  // map state to props
13
13
  const mapStateToProps = state => ({
14
- organization: state.katello.organization,
15
14
  subscriptions: state.katello.subscriptions,
16
15
  tasks: state.katello.subscriptions.tasks,
17
16
  });
@@ -0,0 +1,353 @@
1
+ export default [
2
+ {
3
+ path: '/katello/api/v2/products/:id/repository_sets/:repo_set_id/enable',
4
+ searchRegex: /\/katello\/api\/v2\/products\/\d+\/repository_sets\/\d+\/enable/,
5
+ type: 'PUT',
6
+ response: () => {
7
+ const types = ['yum', 'source_rpm', 'debug', 'iso', 'beta', 'kickstart'];
8
+
9
+ const output = {
10
+ id: Math.round(Math.random() * 500),
11
+ name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
12
+ content_type: types[Math.floor(Math.random() * types.length)],
13
+ };
14
+
15
+ return [
16
+ 200,
17
+ {
18
+ id: 'd4a4432e-4987-4206-aa99-615b5b15fbf8',
19
+ label: 'Actions::Katello::RepositorySet::EnableRepository',
20
+ pending: false,
21
+ username: 'admin',
22
+ started_at: '2017-12-19 14:33:41 UTC',
23
+ ended_at: '2017-12-19 14:33:44 UTC',
24
+ state: 'stopped',
25
+ result: 'success',
26
+ progress: 1.0,
27
+ input: {
28
+ services_checked: ['pulp', 'pulp_auth', 'candlepin', 'candlepin_auth'],
29
+ repository: {
30
+ id: 7,
31
+ name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
32
+ label: 'Red_Hat_Enterprise_Linux_6_2_Server_for_RHS_2_VSA_Beta_RPMs_from_RHUI_x86_64',
33
+ },
34
+ product: {
35
+ id: 155,
36
+ name: 'Red Hat Storage',
37
+ label: 'Red_Hat_Storage',
38
+ cp_id: '171',
39
+ },
40
+ provider: {
41
+ id: 2,
42
+ name: 'Red Hat',
43
+ },
44
+ organization: {
45
+ id: 1,
46
+ name: 'Default Organization',
47
+ label: 'Default_Organization',
48
+ },
49
+ },
50
+ output,
51
+ humanized: {
52
+ action: 'Enable',
53
+ input: [],
54
+ output: '',
55
+ errors: [],
56
+ },
57
+ cli_example: null,
58
+ },
59
+ ];
60
+ },
61
+ },
62
+ {
63
+ path: '/katello/api/v2/products/:id/repository_sets/:repo_set_id/disable',
64
+ searchRegex: /\/katello\/api\/v2\/products\/\d+\/repository_sets\/\d+\/disable/,
65
+ type: 'PUT',
66
+ response: () => [
67
+ 200,
68
+ {
69
+ id: 'd4a4432e-4987-4206-aa99-615b5b15fbf8',
70
+ label: 'Actions::Katello::RepositorySet::DisableRepository',
71
+ pending: false,
72
+ username: 'admin',
73
+ started_at: '2017-12-19 14:33:41 UTC',
74
+ ended_at: '2017-12-19 14:33:44 UTC',
75
+ state: 'stopped',
76
+ result: 'success',
77
+ progress: 1.0,
78
+ input: {
79
+ services_checked: ['pulp', 'pulp_auth', 'candlepin', 'candlepin_auth'],
80
+ repository: {
81
+ id: 7,
82
+ name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
83
+ label: 'Red_Hat_Enterprise_Linux_6_2_Server_for_RHS_2_VSA_Beta_RPMs_from_RHUI_x86_64',
84
+ },
85
+ product: {
86
+ id: 155,
87
+ name: 'Red Hat Storage',
88
+ label: 'Red_Hat_Storage',
89
+ cp_id: '171',
90
+ },
91
+ provider: {
92
+ id: 2,
93
+ name: 'Red Hat',
94
+ },
95
+ organization: {
96
+ id: 1,
97
+ name: 'Default Organization',
98
+ label: 'Default_Organization',
99
+ },
100
+ },
101
+ output: {},
102
+ humanized: {
103
+ action: 'Disable',
104
+ input: [],
105
+ output: '',
106
+ errors: [],
107
+ },
108
+ cli_example: null,
109
+ },
110
+ ],
111
+ },
112
+ {
113
+ path: '/organizations/:id/repository_sets',
114
+ searchRegex: /\/organizations\/\d+\/repository_sets$/,
115
+ response: () => [
116
+ 200,
117
+ {
118
+ total: 5,
119
+ subtotal: 5,
120
+ page: null,
121
+ per_page: null,
122
+ error: null,
123
+ search: null,
124
+ sort: {
125
+ by: null,
126
+ order: null,
127
+ },
128
+ results: [
129
+ {
130
+ repositories: [],
131
+ product: {
132
+ name: 'Red hat Enterprise Linux Server 7',
133
+ id: 5,
134
+ },
135
+ type: 'file',
136
+ vendor: 'Red Hat',
137
+ gpgUrl: 'http://',
138
+ contentUrl: '/content/dist/rhel/server/7///source/iso',
139
+ id: '2457',
140
+ name: 'Red Hat Enterprise Linux 7 Server (Source ISOs)',
141
+ label: 'rhel-7-server-source-isos',
142
+ },
143
+ {
144
+ repositories: [],
145
+ type: 'yum',
146
+ product: {
147
+ name: 'Red hat Enterprise Linux Server 7',
148
+ id: 5,
149
+ },
150
+ vendor: 'Red Hat',
151
+ gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
152
+ contentUrl: '/content/dist/rhel/server/6/6Server//sat-tools/6.1/source/SRPMS',
153
+ id: '4187',
154
+ name: 'Red Hat Satellite Tools 6.1 (for RHEL 6 Server) (Source RPMs)',
155
+ label: 'rhel-6-server-satellite-tools-6.1-source-rpms',
156
+ },
157
+ {
158
+ repositories: [],
159
+ type: 'yum',
160
+ product: {
161
+ name: 'Red hat Enterprise Linux Server 7',
162
+ id: 5,
163
+ },
164
+ vendor: 'Red Hat',
165
+ gpgUrl:
166
+ 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
167
+ contentUrl: '/content/beta/rhel/server/6/6Server//rh-common/os',
168
+ id: '3076',
169
+ name: 'Red Hat Enterprise Linux 6 Server - RH Common Beta (RPMs)',
170
+ label: 'rhel-6-server-rh-common-beta-rpms',
171
+ },
172
+ {
173
+ repositories: [],
174
+ type: 'yum',
175
+ product: {
176
+ name: 'Red hat Enterprise Linux Server 7',
177
+ id: 5,
178
+ },
179
+ vendor: 'Red Hat',
180
+ gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
181
+ contentUrl: '/content/dist/rhel/server/6///rhev-agent/3/os',
182
+ id: '1699',
183
+ name: 'Red Hat Enterprise Virtualization Agents for RHEL 6 Server (RPMs)',
184
+ label: 'rhel-6-server-rhev-agent-rpms',
185
+ },
186
+ {
187
+ repositories: [
188
+ {
189
+ id: 631,
190
+ name: 'Red Hat Enterprise Linux 6 Server Kickstart x86_64 6.8',
191
+ releasever: '6.8',
192
+ arch: 'x86_64',
193
+ },
194
+ ],
195
+ product: {
196
+ name: 'Red hat Enterprise Linux Server 7',
197
+ id: 5,
198
+ },
199
+ type: 'kickstart',
200
+ vendor: 'Red Hat',
201
+ gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
202
+ contentUrl: '/content/dist/rhel/server/6///kickstart',
203
+ id: '1952',
204
+ name: 'Red Hat Enterprise Linux 6 Server (Kickstart)',
205
+ label: 'rhel-6-server-kickstart',
206
+ },
207
+ ],
208
+ },
209
+ ],
210
+ },
211
+ {
212
+ // Returns the currently enabled repositories
213
+ path: '/repository_sets?organization_id=:id',
214
+ searchRegex: /\/organizations\/\d+\/repository_sets/,
215
+ response: () => [
216
+ 200,
217
+ {
218
+ total: 5,
219
+ subtotal: 5,
220
+ page: null,
221
+ per_page: null,
222
+ error: null,
223
+ search: null,
224
+ sort: {
225
+ by: null,
226
+ order: null,
227
+ },
228
+ results: [
229
+ {
230
+ repositories: [
231
+ {
232
+ id: 631,
233
+ name: 'Red Hat Enterprise Linux 6 Server Kickstart x86_64 6.8',
234
+ releasever: '6.8',
235
+ arch: 'x86_64',
236
+ },
237
+ ],
238
+ product: {
239
+ name: 'Red hat Enterprise Linux Server 7',
240
+ id: 5,
241
+ },
242
+ type: 'kickstart',
243
+ vendor: 'Red Hat',
244
+ gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
245
+ contentUrl: '/content/dist/rhel/server/6///kickstart',
246
+ id: '1952',
247
+ name: 'Red Hat Enterprise Linux 6 Server (Kickstart)',
248
+ label: 'rhel-6-server-kickstart',
249
+ },
250
+ ],
251
+ },
252
+ ],
253
+ },
254
+ {
255
+ path: '/products/:product_id/repository_sets/:content_id/available_repositories',
256
+ searchRegex: /\/products\/\d+\/repository_sets\/\d+\/available_repositories/,
257
+ response: () => [
258
+ 200,
259
+ {
260
+ total: 6,
261
+ subtotal: 6,
262
+ page: null,
263
+ per_page: null,
264
+ error: null,
265
+ search: null,
266
+ sort: {
267
+ by: null,
268
+ order: null,
269
+ },
270
+ results: [
271
+ {
272
+ substitutions: {
273
+ releasever: '7.0',
274
+ basearch: 'x86_64',
275
+ },
276
+ path: '/content/dist/rhel/server/7/7.0/x86_64/supplementary/os',
277
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.0',
278
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
279
+ pulp_id:
280
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_0',
281
+ enabled: false,
282
+ promoted: false,
283
+ },
284
+ {
285
+ substitutions: {
286
+ releasever: '7.1',
287
+ basearch: 'x86_64',
288
+ },
289
+ path: '/content/dist/rhel/server/7/7.1/x86_64/supplementary/os',
290
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.1',
291
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
292
+ pulp_id:
293
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_1',
294
+ enabled: false,
295
+ promoted: false,
296
+ },
297
+ {
298
+ substitutions: {
299
+ releasever: '7.2',
300
+ basearch: 'x86_64',
301
+ },
302
+ path: '/content/dist/rhel/server/7/7.2/x86_64/supplementary/os',
303
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.2',
304
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
305
+ pulp_id:
306
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_2',
307
+ enabled: false,
308
+ promoted: false,
309
+ },
310
+ {
311
+ substitutions: {
312
+ releasever: '7.3',
313
+ basearch: 'x86_64',
314
+ },
315
+ path: '/content/dist/rhel/server/7/7.3/x86_64/supplementary/os',
316
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.3',
317
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
318
+ pulp_id:
319
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_3',
320
+ enabled: false,
321
+ promoted: false,
322
+ },
323
+ {
324
+ substitutions: {
325
+ releasever: '7.4',
326
+ basearch: 'x86_64',
327
+ },
328
+ path: '/content/dist/rhel/server/7/7.4/x86_64/supplementary/os',
329
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.4',
330
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
331
+ pulp_id:
332
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_4',
333
+ enabled: false,
334
+ promoted: false,
335
+ },
336
+ {
337
+ substitutions: {
338
+ releasever: '7Server',
339
+ basearch: 'x86_64',
340
+ },
341
+ path: '/content/dist/rhel/server/7/7Server/x86_64/supplementary/os',
342
+ repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7Server',
343
+ name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
344
+ pulp_id:
345
+ 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7Server',
346
+ enabled: false,
347
+ promoted: false,
348
+ },
349
+ ],
350
+ },
351
+ ],
352
+ },
353
+ ];
@@ -1,6 +1,5 @@
1
1
  import axios from 'axios';
2
2
  import Immutable from 'seamless-immutable';
3
- import store from 'foremanReact/redux';
4
3
 
5
4
  const getcsrfToken = () => {
6
5
  const token = document.querySelector('meta[name="csrf-token"]');
@@ -100,22 +99,7 @@ class ForemanTasksApi extends Api {
100
99
 
101
100
  export const foremanTasksApi = new ForemanTasksApi();
102
101
 
103
- class ForemanEndpoint extends Api {
104
- constructor() {
105
- super();
106
- this.baseApiPath = '/';
107
- }
108
- }
109
-
110
- export const foremanEndpoint = new ForemanEndpoint();
111
-
112
102
  // eslint-disable-next-line import/prefer-default-export
113
103
  const orgNode = () => document.getElementById('organization-id');
114
104
  // This node does not exist while testing
115
- export const orgId = () => {
116
- const node = orgNode();
117
- const id = node && node.dataset.id;
118
- const { katello: { setOrganization: { currentId } } } = store.getState();
119
-
120
- return id === '' ? currentId : id;
121
- };
105
+ export const orgId = () => (orgNode() ? orgNode().dataset.id : '1');
@@ -3,10 +3,8 @@
3
3
  import 'babel-polyfill';
4
4
  import { configure } from 'enzyme';
5
5
  import Adapter from 'enzyme-adapter-react-16';
6
- import * as Services from './services/api';
7
6
 
8
7
  configure({ adapter: new Adapter() });
9
8
 
10
9
  // Mocking translation function
11
10
  global.__ = text => text; // eslint-disable-line
12
- Services.orgId = () => 1;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.1.1
4
+ version: 3.8.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-11 00:00:00.000000000 Z
11
+ date: 2018-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -459,6 +459,7 @@ files:
459
459
  - app/assets/stylesheets/katello/widgets/_chosen.scss
460
460
  - app/assets/stylesheets/katello/widgets/tabs.scss
461
461
  - app/controllers/katello/api/api_controller.rb
462
+ - app/controllers/katello/api/registry/registry_proxies_controller.rb
462
463
  - app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb
463
464
  - app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb
464
465
  - app/controllers/katello/api/v2/activation_keys_controller.rb
@@ -617,6 +618,8 @@ files:
617
618
  - app/lib/actions/katello/content_view_puppet_environment/create_for_version.rb
618
619
  - app/lib/actions/katello/content_view_puppet_environment/destroy.rb
619
620
  - app/lib/actions/katello/content_view_puppet_module/destroy.rb
621
+ - app/lib/actions/katello/content_view_version/after_promote_hook.rb
622
+ - app/lib/actions/katello/content_view_version/before_promote_hook.rb
620
623
  - app/lib/actions/katello/content_view_version/destroy.rb
621
624
  - app/lib/actions/katello/content_view_version/export.rb
622
625
  - app/lib/actions/katello/content_view_version/incremental_update.rb
@@ -838,6 +841,7 @@ files:
838
841
  - app/lib/katello/resources/candlepin/upstream_owner.rb
839
842
  - app/lib/katello/resources/candlepin/upstream_pool.rb
840
843
  - app/lib/katello/resources/cdn.rb
844
+ - app/lib/katello/resources/registry.rb
841
845
  - app/lib/katello/util/cdn_var_substitutor.rb
842
846
  - app/lib/katello/util/data.rb
843
847
  - app/lib/katello/util/docker_manifest_clause_generator.rb
@@ -1128,6 +1132,7 @@ files:
1128
1132
  - app/views/katello/api/v2/common/async.json.rabl
1129
1133
  - app/views/katello/api/v2/common/bulk_action.json.rabl
1130
1134
  - app/views/katello/api/v2/common/bulk_async.json.rabl
1135
+ - app/views/katello/api/v2/common/copy.json.rabl
1131
1136
  - app/views/katello/api/v2/common/create.json.rabl
1132
1137
  - app/views/katello/api/v2/common/destroy.json.rabl
1133
1138
  - app/views/katello/api/v2/common/index.json.rabl
@@ -1340,8 +1345,8 @@ files:
1340
1345
  - config/initializers/pagelets.rb
1341
1346
  - config/initializers/rabl_init.rb
1342
1347
  - config/initializers/runcible.rb
1348
+ - config/katello.yaml
1343
1349
  - config/katello.yaml.example
1344
- - config/katello.yml
1345
1350
  - config/locales/README
1346
1351
  - config/locales/bn.yml
1347
1352
  - config/locales/compare_upstream.sh
@@ -1368,6 +1373,7 @@ files:
1368
1373
  - config/locales/zh-CN.yml
1369
1374
  - config/locales/zh-TW.yml
1370
1375
  - config/routes.rb
1376
+ - config/routes/api/registry.rb
1371
1377
  - config/routes/api/rhsm.rb
1372
1378
  - config/routes/api/v2.rb
1373
1379
  - config/routes/mount_engine.rb
@@ -1560,6 +1566,8 @@ files:
1560
1566
  - db/migrate/20180612163403_add_foreign_key_to_hypervisor_id.rb
1561
1567
  - db/migrate/20180612164926_add_content_org_id.rb
1562
1568
  - db/migrate/20180612165011_remove_content_fields_from_host.rb
1569
+ - db/migrate/20180614184822_add_unauthenticated_pull.rb
1570
+ - db/migrate/20180618195941_add_description_to_repository.rb
1563
1571
  - db/migrate/20180626160422_add_upstream_pool_id_to_katello_pool.rb
1564
1572
  - db/seeds.d/101-locations.rb
1565
1573
  - db/seeds.d/102-organizations.rb
@@ -2116,6 +2124,7 @@ files:
2116
2124
  - lib/katello/permissions.rb
2117
2125
  - lib/katello/permissions/host_permissions.rb
2118
2126
  - lib/katello/permissions/organization_permissions.rb
2127
+ - lib/katello/permissions/registry_permissions.rb
2119
2128
  - lib/katello/permissions/roles_permissions.rb
2120
2129
  - lib/katello/permissions/user_permissions.rb
2121
2130
  - lib/katello/plugin.rb
@@ -2256,10 +2265,7 @@ files:
2256
2265
  - vendor/assets/stylesheets/katello/jquery.treeTable.css.scss
2257
2266
  - vendor/assets/stylesheets/katello/ui.spinner.css.scss
2258
2267
  - webpack/__mocks__/foremanReact/common/helpers.js
2259
- - webpack/__mocks__/foremanReact/components/BreadcrumbBar.js
2260
2268
  - webpack/__mocks__/foremanReact/components/common/table.js
2261
- - webpack/__mocks__/foremanReact/redux.js
2262
- - webpack/__mocks__/foremanReact/redux/actions/toasts.js
2263
2269
  - webpack/__mocks__/react-bootstrap-tooltip-button.js
2264
2270
  - webpack/components/MultiSelect/index.js
2265
2271
  - webpack/components/PaginationRow/PaginationRow.test.js
@@ -2269,17 +2275,10 @@ files:
2269
2275
  - webpack/components/Search/__snapshots__/Search.test.js.snap
2270
2276
  - webpack/components/Search/helpers.js
2271
2277
  - webpack/components/Search/index.js
2272
- - webpack/components/SelectOrg/SelectOrg.scss
2273
- - webpack/components/SelectOrg/SelectOrgAction.js
2274
- - webpack/components/SelectOrg/SelectOrgReducer.js
2275
- - webpack/components/SelectOrg/SetOrganization.js
2276
- - webpack/components/WithOrganization/withOrganization.js
2277
2278
  - webpack/containers/Application/Routes.js
2278
2279
  - webpack/containers/Application/config.js
2279
2280
  - webpack/containers/Application/index.js
2280
2281
  - webpack/containers/Application/overrides.scss
2281
- - webpack/global_test_setup.js
2282
- - webpack/helpers/caret.js
2283
2282
  - webpack/index.js
2284
2283
  - webpack/mockRequest.js
2285
2284
  - webpack/move_to_foreman/Settings/SettingsActions.js
@@ -2296,12 +2295,12 @@ files:
2296
2295
  - webpack/move_to_foreman/components/common/Dialog/__tests__/Dialog.test.js
2297
2296
  - webpack/move_to_foreman/components/common/Dialog/__tests__/__snapshots__/Dialog.test.js.snap
2298
2297
  - webpack/move_to_foreman/components/common/Dialog/index.js
2299
- - webpack/move_to_foreman/components/common/EmptyState/index.js
2300
2298
  - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.js
2301
2299
  - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.scss
2302
2300
  - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/ModalProgressBar.test.js
2303
2301
  - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/__snapshots__/ModalProgressBar.test.js.snap
2304
2302
  - webpack/move_to_foreman/components/common/ModalProgressBar/index.js
2303
+ - webpack/move_to_foreman/components/common/emptyState/index.js
2305
2304
  - webpack/move_to_foreman/components/common/table/components/CollapseSubscriptionGroupButton.js
2306
2305
  - webpack/move_to_foreman/components/common/table/components/CollapseSubscriptionGroupButton.test.js
2307
2306
  - webpack/move_to_foreman/components/common/table/components/Table.js
@@ -2336,7 +2335,6 @@ files:
2336
2335
  - webpack/move_to_pf/LoadingState/LoadingState.test.js
2337
2336
  - webpack/move_to_pf/LoadingState/__snapshots__/LoadingState.test.js.snap
2338
2337
  - webpack/move_to_pf/LoadingState/index.js
2339
- - webpack/move_to_pf/Select/Select.js
2340
2338
  - webpack/move_to_pf/TypeAhead/TypeAhead.js
2341
2339
  - webpack/move_to_pf/TypeAhead/TypeAhead.scss
2342
2340
  - webpack/move_to_pf/TypeAhead/TypeAheadInput.js
@@ -2368,13 +2366,8 @@ files:
2368
2366
  - webpack/scenes/Organizations/__tests__/OrganizationActions.test.js
2369
2367
  - webpack/scenes/Organizations/__tests__/OrganizationReducer.test.js
2370
2368
  - webpack/scenes/Organizations/__tests__/organizations.fixtures.js
2371
- - webpack/scenes/Products/ProductActions.js
2372
- - webpack/scenes/Products/ProductConstants.js
2373
- - webpack/scenes/Products/__tests__/ProductActions.test.js
2374
- - webpack/scenes/Products/__tests__/products.fixtures.js
2375
2369
  - webpack/scenes/RedHatRepositories/components/EnabledRepository.js
2376
2370
  - webpack/scenes/RedHatRepositories/components/EnabledRepository.stories.js
2377
- - webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js
2378
2371
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js
2379
2372
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.scss
2380
2373
  - webpack/scenes/RedHatRepositories/components/RepositorySet.js
@@ -2383,12 +2376,8 @@ files:
2383
2376
  - webpack/scenes/RedHatRepositories/components/RepositoryTypeIcon.js
2384
2377
  - webpack/scenes/RedHatRepositories/components/Search.js
2385
2378
  - webpack/scenes/RedHatRepositories/components/SearchBar.js
2386
- - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js
2387
- - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js
2388
2379
  - webpack/scenes/RedHatRepositories/components/__tests__/RecommendedRepositorySetsToggler.test.js
2389
2380
  - webpack/scenes/RedHatRepositories/components/__tests__/RepositoryTypeIcon.test.js
2390
- - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap
2391
- - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap
2392
2381
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap
2393
2382
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositoryTypeIcon.test.js.snap
2394
2383
  - webpack/scenes/RedHatRepositories/helpers.js
@@ -2398,25 +2387,18 @@ files:
2398
2387
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js
2399
2388
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js
2400
2389
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailConstants.js
2401
- - webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js
2402
2390
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js
2403
- - webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js
2404
2391
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js
2405
2392
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js
2406
2393
  - webpack/scenes/Subscriptions/Details/SubscriptionDetails.js
2407
- - webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss
2408
2394
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailActions.test.js
2409
2395
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailAssociations.test.js
2410
- - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js
2411
2396
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailInfo.test.js
2412
- - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js
2413
2397
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProducts.test.js
2414
2398
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js
2415
2399
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js
2416
2400
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap
2417
- - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap
2418
2401
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap
2419
- - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap
2420
2402
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProducts.test.js.snap
2421
2403
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap
2422
2404
  - webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js
@@ -2462,9 +2444,7 @@ files:
2462
2444
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js
2463
2445
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js
2464
2446
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js
2465
- - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js
2466
2447
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js
2467
- - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap
2468
2448
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap
2469
2449
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/index.js
2470
2450
  - webpack/scenes/Subscriptions/index.js
@@ -2472,10 +2452,9 @@ files:
2472
2452
  - webpack/scenes/Tasks/TaskConstants.js
2473
2453
  - webpack/scenes/Tasks/__tests__/TaskActions.test.js
2474
2454
  - webpack/scenes/Tasks/__tests__/task.fixtures.js
2475
- - webpack/scenes/Tasks/helpers.js
2455
+ - webpack/services/api/fixtures.js
2476
2456
  - webpack/services/api/index.js
2477
2457
  - webpack/services/api/setupMocks.js
2478
- - webpack/services/api/testHelpers.js
2479
2458
  - webpack/services/index.js
2480
2459
  - webpack/stories/index.js
2481
2460
  - webpack/test_setup.js
@@ -2493,9 +2472,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
2493
2472
  version: '0'
2494
2473
  required_rubygems_version: !ruby/object:Gem::Requirement
2495
2474
  requirements:
2496
- - - ">="
2475
+ - - ">"
2497
2476
  - !ruby/object:Gem::Version
2498
- version: '0'
2477
+ version: 1.3.1
2499
2478
  requirements: []
2500
2479
  rubyforge_project:
2501
2480
  rubygems_version: 2.6.14.1