katello 3.13.2 → 3.13.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c5b6c6608f07015895a301db87b3921050b0d2e1982f24e7bb772f48ebb986b
4
- data.tar.gz: 1bde260d489d40d422b97523c672cd543a7c1caeb3ae3ea93800ff61407b5786
3
+ metadata.gz: 0ed82fcf9fa41985a6c9803c9f8e44c06e67dd75fdf1f23c217f157d5a234c00
4
+ data.tar.gz: a2e84eac33cbfa82b5905e5d3cb05c5bbf2f5ff18e1048274135746dd5c6149e
5
5
  SHA512:
6
- metadata.gz: b318b92c158a02013b8f20dca2cb9c0560e8695bdeb1df89c959754df0970ca55bee491f6dccc073d358fd7b9f242f6174472754e0a2da4d396a3593bd29a2e0
7
- data.tar.gz: bb01b642b56e725d4bc28d5e6bca91c5cfaaaec87236133c7bb1d45b618008a9a6e11018a1bfac22fe85718b3670f86f23137600607b5d86433043f7abe23ec4
6
+ metadata.gz: 1fa0ebaa815d61c43df9dc1764554f0311950211d368c6287e56a81ea92b0ec4210088c8e3dba820ac673f0631eb88edff19e8abd76fac75aae4c4831c075be8
7
+ data.tar.gz: a1034ffcf1051573a484db297d435811ab5c441202260501fc66992c6fea6e18a9166775d6abebb286370b721efc8655ab2449648378fe7fdfb9299833d244ac
@@ -4,7 +4,9 @@ module Actions
4
4
  class Destroy < Actions::EntryAction
5
5
  def plan(puppet_env)
6
6
  action_subject(puppet_env)
7
- plan_action(Pulp::Repository::Destroy, content_view_puppet_environment_id: puppet_env.id)
7
+ if ::Katello::RepositoryTypeManager.enabled?('puppet')
8
+ plan_action(Pulp::Repository::Destroy, content_view_puppet_environment_id: puppet_env.id)
9
+ end
8
10
  plan_self
9
11
  end
10
12
 
@@ -24,7 +24,6 @@ namespace :katello do
24
24
  Katello::Srpm,
25
25
  Katello::ModuleStream,
26
26
  Katello::YumMetadataFile,
27
- Katello::Deb,
28
27
  Katello::FileUnit,
29
28
  Katello::Subscription,
30
29
  Katello::Pool,
@@ -35,6 +34,7 @@ namespace :katello do
35
34
  Katello::Content]
36
35
 
37
36
  models << Katello::OstreeBranch if Katello::RepositoryTypeManager.find(Katello::Repository::OSTREE_TYPE).present?
37
+ models << Katello::Deb if Katello::RepositoryTypeManager.find(Katello::Repository::DEB_TYPE).present?
38
38
 
39
39
  models.each do |model|
40
40
  print "Importing #{model.name}\n"
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.13.2".freeze
2
+ VERSION = "3.13.3".freeze
3
3
  end
@@ -7,7 +7,7 @@ exports[`Module stream details page rendering renders with loading state 1`] = `
7
7
  loadingText="Loading"
8
8
  timeout={300}
9
9
  >
10
- <Uncontrolled(TabContainer)
10
+ <ForwardRef
11
11
  defaultActiveKey={1}
12
12
  id="module-stream-tabs-container"
13
13
  >
@@ -160,7 +160,7 @@ exports[`Module stream details page rendering renders with loading state 1`] = `
160
160
  </TabPane>
161
161
  </TabContent>
162
162
  </Grid>
163
- </Uncontrolled(TabContainer)>
163
+ </ForwardRef>
164
164
  </LoadingState>
165
165
  </div>
166
166
  `;
@@ -194,7 +194,7 @@ exports[`Module stream details page rendering renders with module stream provide
194
194
  loadingText="Loading"
195
195
  timeout={300}
196
196
  >
197
- <Uncontrolled(TabContainer)
197
+ <ForwardRef
198
198
  defaultActiveKey={1}
199
199
  id="module-stream-tabs-container"
200
200
  >
@@ -546,7 +546,7 @@ exports[`Module stream details page rendering renders with module stream provide
546
546
  </TabPane>
547
547
  </TabContent>
548
548
  </Grid>
549
- </Uncontrolled(TabContainer)>
549
+ </ForwardRef>
550
550
  </LoadingState>
551
551
  </div>
552
552
  `;
@@ -24,7 +24,7 @@ exports[`subscriptions details page should render and contain appropiate compone
24
24
  }
25
25
  onSwitcherItemClick={[Function]}
26
26
  />
27
- <Uncontrolled(TabContainer)
27
+ <ForwardRef
28
28
  defaultActiveKey={1}
29
29
  id="subscription-tabs-container"
30
30
  >
@@ -531,6 +531,6 @@ exports[`subscriptions details page should render and contain appropiate compone
531
531
  </Grid>
532
532
  </LoadingState>
533
533
  </div>
534
- </Uncontrolled(TabContainer)>
534
+ </ForwardRef>
535
535
  </div>
536
536
  `;
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.13.2
4
+ version: 3.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-05 00:00:00.000000000 Z
11
+ date: 2019-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -4493,8 +4493,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
4493
4493
  - !ruby/object:Gem::Version
4494
4494
  version: '0'
4495
4495
  requirements: []
4496
- rubyforge_project:
4497
- rubygems_version: 2.7.6.2
4496
+ rubygems_version: 3.0.3
4498
4497
  signing_key:
4499
4498
  specification_version: 4
4500
4499
  summary: Content and Subscription Management plugin for Foreman