foreman_rh_cloud 2.0.18 → 2.0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e0cb65a3f6b1e94ef76531b38c7553a4f935d38cea6a26567f78eb563451a3d
|
|
4
|
+
data.tar.gz: 0f15f66bbf6595fc7049606a1ad19c5cedb8a9181f4abd47d1897c72db25e148
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0db95fe4391d434965539c5a379a318e015d00f3b251af3a6ea03eb57db024fad68a98c804f1e7fe185f8f787b28cc2ec24e4e63d1ac7e0d0bb42aa73ed4f3a0
|
|
7
|
+
data.tar.gz: 6d7583b031a7bed576456a8eeed8b8e948a5af9e243c93975be51801f862211a7a311a683300c23da696ca4d0e06dc4339bf4d5c70914dd840b6c52475c036bc
|
data/config/Gemfile.lock.gh_test
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
class AddUniqueToInsightsFacet < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
|
+
# Remove duplicate records
|
|
4
|
+
InsightsFacet.where.not(id: InsightsFacet.select('max(id)').group(:host_id)).delete_all
|
|
5
|
+
|
|
6
|
+
# remove old index
|
|
7
|
+
remove_index :insights_facets, [:host_id]
|
|
8
|
+
# add unique constraint
|
|
9
|
+
add_index :insights_facets, [:host_id], unique: true
|
|
10
|
+
end
|
|
11
|
+
end
|
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_rh_cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.18
|
|
4
|
+
version: 2.0.18.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Foreman Red Hat Cloud team
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: katello
|
|
@@ -134,6 +134,7 @@ files:
|
|
|
134
134
|
- db/migrate/20200727111529_add_uuid_column_to_insights_facets.foreman_rh_cloud.rb
|
|
135
135
|
- db/migrate/20201007115752_add_hits_count_to_insights_facets_table.foreman_rh_cloud.rb
|
|
136
136
|
- db/migrate/20201007121540_setup_hits_count_cache.foreman_rh_cloud.rb
|
|
137
|
+
- db/migrate/20210307000001_add_unique_to_insights_facet.foreman_rh_cloud.rb
|
|
137
138
|
- lib/foreman_inventory_upload.rb
|
|
138
139
|
- lib/foreman_inventory_upload/async/async_helpers.rb
|
|
139
140
|
- lib/foreman_inventory_upload/async/generate_all_reports_job.rb
|
|
@@ -528,7 +529,7 @@ homepage: https://github.com/theforeman/foreman_rh_cloud
|
|
|
528
529
|
licenses:
|
|
529
530
|
- GPL-3.0
|
|
530
531
|
metadata: {}
|
|
531
|
-
post_install_message:
|
|
532
|
+
post_install_message:
|
|
532
533
|
rdoc_options: []
|
|
533
534
|
require_paths:
|
|
534
535
|
- lib
|
|
@@ -543,25 +544,25 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
543
544
|
- !ruby/object:Gem::Version
|
|
544
545
|
version: '0'
|
|
545
546
|
requirements: []
|
|
546
|
-
rubygems_version: 3.
|
|
547
|
-
signing_key:
|
|
547
|
+
rubygems_version: 3.0.6
|
|
548
|
+
signing_key:
|
|
548
549
|
specification_version: 4
|
|
549
550
|
summary: Summary of ForemanRhCloud.
|
|
550
551
|
test_files:
|
|
551
|
-
- test/controllers/
|
|
552
|
+
- test/controllers/uploads_controller_test.rb
|
|
552
553
|
- test/controllers/insights_sync/settings_controller_test.rb
|
|
554
|
+
- test/controllers/accounts_controller_test.rb
|
|
553
555
|
- test/controllers/reports_controller_test.rb
|
|
554
|
-
- test/
|
|
555
|
-
- test/
|
|
556
|
-
- test/factories/inventory_upload_factories.rb
|
|
556
|
+
- test/test_plugin_helper.rb
|
|
557
|
+
- test/jobs/upload_report_job_test.rb
|
|
557
558
|
- test/jobs/insights_full_sync_test.rb
|
|
558
559
|
- test/jobs/inventory_full_sync_test.rb
|
|
559
|
-
- test/
|
|
560
|
-
- test/
|
|
561
|
-
- test/unit/
|
|
562
|
-
- test/unit/fact_helpers_test.rb
|
|
563
|
-
- test/unit/insights_facet_test.rb
|
|
560
|
+
- test/factories/inventory_upload_factories.rb
|
|
561
|
+
- test/factories/insights_factories.rb
|
|
562
|
+
- test/unit/shell_process_job_test.rb
|
|
564
563
|
- test/unit/metadata_generator_test.rb
|
|
564
|
+
- test/unit/insights_facet_test.rb
|
|
565
565
|
- test/unit/rh_cloud_http_proxy_test.rb
|
|
566
|
-
- test/unit/
|
|
566
|
+
- test/unit/fact_helpers_test.rb
|
|
567
|
+
- test/unit/archived_report_generator_test.rb
|
|
567
568
|
- test/unit/slice_generator_test.rb
|