topological_inventory-providers-common 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0d5e54970be70204d7ac119fdd23e0a68bbc01a3e1d3c64520ce3fc6129cfe7
|
4
|
+
data.tar.gz: 624c68af0b57940bc5436099f1a4238eb5405a9e9b87706911278b5c3fcf44e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac55e0263630b78533d49b061d972beab29e249911f785f536a8acbb3cada1d88e3935849d089791f9be001b87a0f3100b4e44bc3595527d169107ef14a5e9b0
|
7
|
+
data.tar.gz: df3b8288f73292d647a77629d5f5ae78a21dad4eeb206e6b1e4e2d077ffd475c60c705f0365311b374fd88544a81943403484089f829aa3611919e95d2ee734f
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
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
|
+
## [3.0.1] - 2021-04-30
|
7
|
+
More generic activesupport dependency #77
|
8
|
+
|
6
9
|
## [3.0.0] - 2021-03-08
|
7
10
|
Clowder migration #75
|
8
11
|
|
@@ -87,16 +90,17 @@ manageiq-loggers to >= 0.4.2 #20
|
|
87
90
|
## [1.0.0] - 2020-03-19
|
88
91
|
### Initial release to rubygems.org
|
89
92
|
|
90
|
-
[Unreleased]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v3.0.
|
91
|
-
[3.0.
|
92
|
-
[
|
93
|
-
[2.1.5]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.4...v2.1.5
|
94
|
-
[2.1.
|
95
|
-
[2.1.
|
96
|
-
[2.1.
|
97
|
-
[2.1.
|
98
|
-
[2.1.
|
99
|
-
[2.
|
93
|
+
[Unreleased]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v3.0.1.freeze...HEAD
|
94
|
+
[3.0.1]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v3.0.0.freeze...v3.0.1.freeze
|
95
|
+
[3.0.0]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.5.freeze...v3.0.0.freeze
|
96
|
+
[2.1.5]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.4.freeze...v2.1.5.freeze
|
97
|
+
[2.1.5]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.4.freeze...v2.1.5.freeze
|
98
|
+
[2.1.4]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.3.freeze...v2.1.4.freeze
|
99
|
+
[2.1.3]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.2.freeze...v2.1.3.freeze
|
100
|
+
[2.1.2]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.1.freeze...v2.1.2.freeze
|
101
|
+
[2.1.1]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.1.0.freeze...v2.1.1.freeze
|
102
|
+
[2.1.0]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v2.0.0.freeze...v2.1.0.freeze
|
103
|
+
[2.0.0]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v1.0.12...v2.0.0.freeze
|
100
104
|
[1.0.12]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v1.0.11...v1.0.12
|
101
105
|
[1.0.11]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v1.0.10...v1.0.11
|
102
106
|
[1.0.10]: https://github.com/RedHatInsights/topological_inventory-providers-common/compare/v1.0.9...v1.0.10
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
|
-
spec.add_runtime_dependency 'activesupport', '~> 5.2.4.3'
|
26
|
+
spec.add_runtime_dependency 'activesupport', '~> 5.2', '>= 5.2.4.3'
|
27
27
|
spec.add_runtime_dependency 'clowder-common-ruby', '~> 0.2.1'
|
28
28
|
spec.add_runtime_dependency 'config', '~> 1.7', '>= 1.7.2'
|
29
29
|
spec.add_runtime_dependency 'json', '~> 2.3'
|
metadata
CHANGED
@@ -1,20 +1,23 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: topological_inventory-providers-common
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Slemr
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '5.2'
|
20
|
+
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 5.2.4.3
|
20
23
|
type: :runtime
|
@@ -22,6 +25,9 @@ dependencies:
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '5.2'
|
30
|
+
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
32
|
version: 5.2.4.3
|
27
33
|
- !ruby/object:Gem::Dependency
|
@@ -373,7 +379,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
373
379
|
- !ruby/object:Gem::Version
|
374
380
|
version: '0'
|
375
381
|
requirements: []
|
376
|
-
rubygems_version: 3.0.3
|
382
|
+
rubygems_version: 3.0.3.1
|
377
383
|
signing_key:
|
378
384
|
specification_version: 4
|
379
385
|
summary: Common classes for topological-inventory collectors/operations
|