manageiq-api-client 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yaml +9 -4
- data/CHANGELOG.md +6 -1
- data/Gemfile +5 -5
- data/lib/manageiq/api/client/version.rb +1 -1
- data/manageiq-api-client.gemspec +3 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d88e73d2514e155572b97745897b17079a1928a940594689d46be83e9ac627c
|
4
|
+
data.tar.gz: b71650d13b819c6583d65b551e73d3567fb7073579dea3797ca3400348be7193
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a20a206b5d392b4215f16a306c199b789327fb8471d8e7283e6c8b4715d5edfd8fbe420ef6fcf9ef7645376e614f5a04590cab535832862b54e8c702616c068a
|
7
|
+
data.tar.gz: c1b0a4910db51962290a3a24eb306678bc16cc3d79533ad1b1e7810f3c4e05eb2f1fc325f73b42521160379fa9b55d8e065760566de7347861d78b5660e8a889
|
data/.github/workflows/ci.yaml
CHANGED
@@ -14,10 +14,15 @@ jobs:
|
|
14
14
|
ruby-version:
|
15
15
|
- '3.0'
|
16
16
|
- '3.1'
|
17
|
+
- '3.2'
|
18
|
+
- '3.3'
|
17
19
|
rails-version:
|
18
|
-
- '6.0'
|
19
|
-
- '6.1'
|
20
20
|
- '7.0'
|
21
|
+
- '7.1'
|
22
|
+
- '7.2'
|
23
|
+
exclude:
|
24
|
+
- ruby-version: '3.0'
|
25
|
+
rails-version: '7.2'
|
21
26
|
env:
|
22
27
|
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
|
23
28
|
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
@@ -32,6 +37,6 @@ jobs:
|
|
32
37
|
- name: Run tests
|
33
38
|
run: bundle exec rake
|
34
39
|
- name: Report code coverage
|
35
|
-
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.
|
40
|
+
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' && matrix.rails-version == '7.0' }}
|
36
41
|
continue-on-error: true
|
37
|
-
uses: paambaati/codeclimate-action@
|
42
|
+
uses: paambaati/codeclimate-action@v9
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.6.0] - 2025-01-03
|
10
|
+
### Changed
|
11
|
+
- Add rails 7.1 support, drop rails 6.0-6.1 and rubies less than 3.0. [[#129]](https://github.com/ManageIQ/manageiq-api-client/pull/129)
|
12
|
+
|
9
13
|
## [0.5.0] - 2024-05-13
|
10
14
|
### Changed
|
11
15
|
- Support faraday 1.0 and 2.0 [[#124]](https://github.com/ManageIQ/manageiq-api-client/pull/124)
|
@@ -79,7 +83,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
79
83
|
- Add CHANGELOG.md
|
80
84
|
- Update README with simple instructions reflecting the query interface.
|
81
85
|
|
82
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.
|
86
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.6.0...HEAD
|
87
|
+
[0.6.0]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.5.0...v0.6.0
|
83
88
|
[0.5.0]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.4.1...v0.5.0
|
84
89
|
[0.4.1]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.4.0...v0.4.1
|
85
90
|
[0.4.0]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.7...v0.4.0
|
data/Gemfile
CHANGED
@@ -9,12 +9,12 @@ eval_gemfile(dev_gemfile) if File.exist?(dev_gemfile)
|
|
9
9
|
|
10
10
|
minimum_version =
|
11
11
|
case ENV['TEST_RAILS_VERSION']
|
12
|
-
when "
|
13
|
-
"~>
|
14
|
-
when "7.
|
15
|
-
"~>7.
|
12
|
+
when "7.2"
|
13
|
+
"~>7.2.1"
|
14
|
+
when "7.1"
|
15
|
+
"~>7.1.4"
|
16
16
|
else
|
17
|
-
"~>
|
17
|
+
"~>7.0.8"
|
18
18
|
end
|
19
19
|
|
20
20
|
gem "activesupport", minimum_version
|
data/manageiq-api-client.gemspec
CHANGED
@@ -23,7 +23,9 @@ 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.
|
26
|
+
spec.required_ruby_version = '>= 3.0'
|
27
|
+
|
28
|
+
spec.add_dependency "activesupport", ">= 7.0", "<8.0"
|
27
29
|
spec.add_dependency "faraday", ">= 1.0", "< 3.0"
|
28
30
|
spec.add_dependency "faraday-follow_redirects"
|
29
31
|
spec.add_dependency "json", "~> 2.3"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manageiq-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alberto Bellotti
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-01-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -17,20 +17,20 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '7.0'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '8.0'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
27
|
requirements:
|
28
28
|
- - ">="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
version: '
|
30
|
+
version: '7.0'
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '8.0'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: faraday
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -238,14 +238,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
238
238
|
requirements:
|
239
239
|
- - ">="
|
240
240
|
- !ruby/object:Gem::Version
|
241
|
-
version: '0'
|
241
|
+
version: '3.0'
|
242
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
243
243
|
requirements:
|
244
244
|
- - ">="
|
245
245
|
- !ruby/object:Gem::Version
|
246
246
|
version: '0'
|
247
247
|
requirements: []
|
248
|
-
rubygems_version: 3.
|
248
|
+
rubygems_version: 3.5.22
|
249
249
|
signing_key:
|
250
250
|
specification_version: 4
|
251
251
|
summary: ManageIQ API Client
|