foreman_rh_cloud 12.2.7 → 12.2.8

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: fa3670133f6dd32aaab98f365d7fa78cd19f011af4f44c63d6fa0877bdfb5399
4
- data.tar.gz: ad6b6a1912b22ad2c9392c89b5307bb577476b77e099b95ee8a6234861dc769b
3
+ metadata.gz: 38498696c8d02e84313b43772ce7bdb72dc2acdbe13531fa2791461b57197f57
4
+ data.tar.gz: 988fe5f03e6f151e3030b76086cb88d93882fd2e636a0a3af4cbe9424ff6b237
5
5
  SHA512:
6
- metadata.gz: 58f9f0a15c108f50e1caf9e070455cd1c89f8fff373df97657506dd952827cb953c3708543db8c13f599faa205fefed5ab6fcb474efb26ee5ef3002ddf5c51c6
7
- data.tar.gz: 8d4de0a8e5653fd52ca3238090158c94a4107dabfd6cd0097329bcb2d1648adc90a8901975ebca9a9f54aa1d2a34f8adef400e87d34dc33810c2a5ca0786b766
6
+ metadata.gz: 9e5df4e3ae29100c018dfa8ed7b3398e4c37b4eab0af566b2310835e45eca0741ccc645ce343791f81b955ef502ee40b4372038311cddf010ee8ed71ceeda1b1
7
+ data.tar.gz: 5d49315537875841245a6cc17ddfc560e2721bccde4bf55cd42a01d71c91b7bbdf21b34225b142374cce46763bf7eae37f06708c3e4ebe81eee95741de8a75db
@@ -115,23 +115,20 @@ module ForemanRhCloud
115
115
  if defined?(Katello) && !Foreman.in_setup_db_rake?
116
116
  Katello::Api::V2::OrganizationsController.include Foreman::Controller::SmartProxyAuth
117
117
  # patch the callbacks order for :download_debug_certificate, since local_find_taxonomy has to run after the user is already initialized
118
- Katello::Api::V2::OrganizationsController.skip_before_action(:local_find_taxonomy, only: :download_debug_certificate)
119
- Katello::Api::V2::OrganizationsController.add_smart_proxy_filters(
120
- [:index, :download_debug_certificate],
121
- features: ForemanRhCloud.on_prem_smart_proxy_features
122
- )
123
- Katello::Api::V2::OrganizationsController.before_action(:local_find_taxonomy, only: :download_debug_certificate)
124
-
118
+ Katello::Api::V2::OrganizationsController.before_find_taxonomy_actions do
119
+ Katello::Api::V2::OrganizationsController.add_smart_proxy_filters(
120
+ [:index, :download_debug_certificate],
121
+ features: ForemanRhCloud.on_prem_smart_proxy_features
122
+ )
123
+ end
125
124
  Katello::Api::V2::RepositoriesController.include Foreman::Controller::SmartProxyAuth
126
125
  # patch the callbacks order for :index, since find_product has to run after the user is already initialized
127
- Katello::Api::V2::RepositoriesController.skip_before_action(:find_product, only: :index)
128
- Katello::Api::V2::RepositoriesController.skip_before_action(:find_optional_organization, only: :index)
129
- Katello::Api::V2::RepositoriesController.add_smart_proxy_filters(
130
- :index,
131
- features: ForemanRhCloud.on_prem_smart_proxy_features
132
- )
133
- Katello::Api::V2::RepositoriesController.before_action(:find_product, only: :index)
134
- Katello::Api::V2::RepositoriesController.before_action(:find_optional_organization, only: :index)
126
+ Katello::Api::V2::RepositoriesController.before_index_actions do
127
+ Katello::Api::V2::RepositoriesController.add_smart_proxy_filters(
128
+ :index,
129
+ features: ForemanRhCloud.on_prem_smart_proxy_features
130
+ )
131
+ end
135
132
  end
136
133
  end
137
134
 
@@ -1,3 +1,3 @@
1
1
  module ForemanRhCloud
2
- VERSION = '12.2.7'.freeze
2
+ VERSION = '12.2.8'.freeze
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_rh_cloud",
3
- "version": "12.2.7",
3
+ "version": "12.2.8",
4
4
  "description": "Inventory Upload =============",
5
5
  "main": "index.js",
6
6
  "scripts": {
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_rh_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.2.7
4
+ version: 12.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Red Hat Cloud team
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-09-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: foreman_ansible
@@ -44,14 +43,14 @@ dependencies:
44
43
  requirements:
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 4.14.0.rc1.1
46
+ version: '4.18'
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - ">="
53
52
  - !ruby/object:Gem::Version
54
- version: 4.14.0.rc1.1
53
+ version: '4.18'
55
54
  - !ruby/object:Gem::Dependency
56
55
  name: rdoc
57
56
  requirement: !ruby/object:Gem::Requirement
@@ -676,7 +675,6 @@ homepage: https://github.com/theforeman/foreman_rh_cloud
676
675
  licenses:
677
676
  - GPL-3.0
678
677
  metadata: {}
679
- post_install_message:
680
678
  rdoc_options: []
681
679
  require_paths:
682
680
  - lib
@@ -694,8 +692,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
694
692
  - !ruby/object:Gem::Version
695
693
  version: '0'
696
694
  requirements: []
697
- rubygems_version: 3.2.33
698
- signing_key:
695
+ rubygems_version: 3.6.9
699
696
  specification_version: 4
700
697
  summary: Summary of ForemanRhCloud.
701
698
  test_files: