katello 3.16.0.rc2.1 → 3.16.0.rc3

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: 07abcc2d0e780bd3bfee4cd44b73ef4183e0a50daebe6a32cd056e162e3fde52
4
- data.tar.gz: 6c95fe44a013f6e74d36098c3e96f8e669f5670925620a9dc26e6ed674cc2abb
3
+ metadata.gz: 04f2764c53787c361c263472071b3b7cedcda99968c243aff92e1926496a22eb
4
+ data.tar.gz: 80fc78542e71113498942a3140fbb9849fc125fbfc238fff286f91f2cf847995
5
5
  SHA512:
6
- metadata.gz: 17dece7796e9c33d88970ed5eaba5d810db5b84c76ddc03d0767c8bf426013ac9c3e29f14a3bb3be6663e0233e8968551294f51000fb4161e348028add9ecb0b
7
- data.tar.gz: c8b139917779fb48e642270141eb4418c4f668433307cb8097661b581985edc7163f67524328f13368c5cf80d7fc51ef2c856816eacb19ff9a720f40cef595d8
6
+ metadata.gz: 4fc2fd3c56d2358234aa3465ff162cfc8101cca2ca8c7547b4144ef4baf088fbb39135dbde488cb3a26b7f19a838756772615561c72112ad2c75db52ec984bbf
7
+ data.tar.gz: 11d16330661cce5539773defa022d2a362367c072f610f975c6315387e72cec20fb71757cf9ec49f261e827f9d28ed0fa126f5c291223568a6e05da1a493153b
@@ -61,6 +61,10 @@ module Katello
61
61
  os_attributes[:release_name] = release_name
62
62
  end
63
63
 
64
+ if facts['distribution.name'] == 'Red Hat Enterprise Linux Workstation'
65
+ os_attributes[:name] = os_name + '_Workstation'
66
+ end
67
+
64
68
  ::Operatingsystem.find_by(os_attributes) || ::Operatingsystem.create!(os_attributes)
65
69
  end
66
70
  end
@@ -36,10 +36,12 @@ class EncryptRootRepositoryUpstreamPassword < ActiveRecord::Migration[6.0]
36
36
  end
37
37
 
38
38
  def up
39
+ change_column :katello_root_repositories, :upstream_password, :text
39
40
  modify_root_repository_upstream_password(:encrypt)
40
41
  end
41
42
 
42
43
  def down
43
44
  modify_root_repository_upstream_password(:decrypt)
45
+ change_column :katello_root_repositories, :upstream_password, :string
44
46
  end
45
47
  end
@@ -75,7 +75,7 @@
75
75
  <tr class="grey-table-row" bst-table-row ng-repeat-end ng-repeat="productRepoSet in table.rows | filter:repositorySetFilter" row-select="productRepoSet">
76
76
  <td bst-table-cell>{{ productRepoSet.content.name }}</td>
77
77
  <td bst-table-cell>
78
- <a ui-sref="product.info({productId: id})">
78
+ <a ui-sref="product.info({productId: productRepoSet.product.id})">
79
79
  {{ productRepoSet.product.name }}
80
80
  </a>
81
81
  </td>
@@ -9,10 +9,10 @@
9
9
  * Provides a BastionResource for interacting with Content View Versions.
10
10
  */
11
11
  angular.module('Bastion.content-views.versions').factory('ContentViewVersion',
12
- ['BastionResource', function (BastionResource) {
12
+ ['BastionResource', 'CurrentOrganization', function (BastionResource, CurrentOrganization) {
13
13
 
14
14
  return BastionResource('katello/api/v2/content_view_versions/:id/:action',
15
- {id: '@id'},
15
+ {id: '@id', 'organization_id': CurrentOrganization},
16
16
  {
17
17
  autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}},
18
18
  update: {method: 'PUT'},
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.16.0.rc2.1".freeze
2
+ VERSION = "3.16.0.rc3".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.16.0.rc2.1
4
+ version: 3.16.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-08 00:00:00.000000000 Z
11
+ date: 2020-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -4871,7 +4871,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
4871
4871
  - !ruby/object:Gem::Version
4872
4872
  version: 1.3.1
4873
4873
  requirements: []
4874
- rubygems_version: 3.1.2
4874
+ rubygems_version: 3.0.3
4875
4875
  signing_key:
4876
4876
  specification_version: 4
4877
4877
  summary: Content and Subscription Management plugin for Foreman