receptor_controller-client 0.0.9 → 0.0.10
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: f26e6265af3579c93cae3bd98e500a651ff6cf0157867bdf06927e6456dcae1f
|
|
4
|
+
data.tar.gz: 280011b3920f5076227fe640ac4874308ccfa7e8e84deb541648ee278499fd46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3aa43e239924c79c20ec41d21060cb8ea75d26e4feec52464e0cd22e63fec61eec396749f8da72a7a3c5485272180aa16b550d748d602989e28f5d00fbb0cb14
|
|
7
|
+
data.tar.gz: 2cfdc7db439e4cfa12e655dd6a7628efd8a259204b97650578d59aa7aed9b2066b0ba2fa7d0b12d3f45a5b267851038292b311f6fb9731dc18d09e0b6f3bf4fd
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
### [0.0.10]
|
|
9
|
+
- Configurable Receptor Client ID header fix #41
|
|
10
|
+
|
|
8
11
|
## [0.0.9]
|
|
9
12
|
- Fix rubocop yaml #39
|
|
10
13
|
- Configurable Receptor Client ID header #38
|
|
@@ -38,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
38
41
|
### Added
|
|
39
42
|
- Added extra logging for messages
|
|
40
43
|
|
|
41
|
-
[Unreleased]: https://github.com/RedHatInsights/receptor_controller-client-ruby/compare/v0.0.
|
|
44
|
+
[Unreleased]: https://github.com/RedHatInsights/receptor_controller-client-ruby/compare/v0.0.10.freeze...HEAD
|
|
45
|
+
[0.0.10]: https://github.com/RedHatInsights/receptor_controller-client-ruby/releases/tag/v0.0.10.freeze
|
|
42
46
|
[0.0.9]: https://github.com/RedHatInsights/receptor_controller-client-ruby/releases/tag/v0.0.9.freeze
|
|
43
47
|
[0.0.8]: https://github.com/RedHatInsights/receptor_controller-client-ruby/releases/tag/v0.0.8.freeze
|
|
44
48
|
[0.0.7]: https://github.com/RedHatInsights/receptor_controller-client-ruby/releases/tag/v0.0.7.freeze
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
module ReceptorController
|
|
2
2
|
class Client::Configuration
|
|
3
3
|
|
|
4
|
-
# x-rh-receptor-controller-client-id header for authentication with receptor controller (replaces x-rh-identity)
|
|
5
|
-
attr_reader :client_id_header
|
|
6
4
|
# Scheme of cloud receptor controller
|
|
7
5
|
attr_reader :controller_scheme
|
|
8
6
|
# Host name of cloud receptor controller
|
|
9
7
|
attr_reader :controller_host
|
|
10
8
|
|
|
9
|
+
# x-rh-receptor-controller-client-id header for authentication with receptor controller (replaces x-rh-identity)
|
|
10
|
+
attr_accessor :client_id_header
|
|
11
11
|
# Path to connection status requests
|
|
12
12
|
attr_accessor :connection_status_path
|
|
13
13
|
# Path to sending directive requests
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.license = "Apache-2.0"
|
|
20
20
|
s.required_ruby_version = ">= 2.5"
|
|
21
21
|
|
|
22
|
-
s.add_runtime_dependency 'activesupport', '~> 5.2'
|
|
22
|
+
s.add_runtime_dependency 'activesupport', '~> 5.2', '>= 5.2.4.3'
|
|
23
23
|
s.add_runtime_dependency 'concurrent-ruby', '~> 1.1', '>= 1.1.6'
|
|
24
24
|
s.add_runtime_dependency 'faraday', '~> 1.0'
|
|
25
25
|
s.add_runtime_dependency 'json', '~> 2.3', '>= 2.3.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: receptor_controller-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Slemr
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '5.2'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 5.2.4.3
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - "~>"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '5.2'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 5.2.4.3
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: concurrent-ruby
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|