manageiq-api-client 0.3.3 → 0.3.4

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
- SHA1:
3
- metadata.gz: 2d0d3f3ce8fc25dbe3eb412c9f82efc7e07d4d90
4
- data.tar.gz: d754567d212492dc118a9286aada8f9b15960a50
2
+ SHA256:
3
+ metadata.gz: 4b5611c6e6c305772201f24a75a0a16bb791e5b42ffb409d9f7f938341a4f5db
4
+ data.tar.gz: 45e79c10e760cb011e1511a80b99468f210755629a4f84d1349fbe210875476d
5
5
  SHA512:
6
- metadata.gz: 71f5a2a650e511fc920a4514b3f10593cdcba55a116e773a434aacdb2ecb2e3c012494d74de49ee4e2f19287042968bfbb38ccf7a99d6afd7136683ec7eb89a3
7
- data.tar.gz: e4049b966ed9439127d055c3346809ea30db207c67aebe58ba479e733a10ffa48594500ef26206b2ab718ab0e9d95c80faad114042d1aaeaa80fb4aab9e0c66f
6
+ metadata.gz: 626def642661d5be357c2383af88e1d949f233a407e3ce5817383c443b221bef6d9c6408fb4606f4a394fbada8d3d1b07e1c9c7da45b4e63277effa62ff73cde
7
+ data.tar.gz: e47bac3b833e0ab3dd91ac16d14feed6570bf72d25714c1d0f6c85ed839f906d944a6096f11a8a645dd6bd671e0bb65c1f96f70684fcb5ddb5e63d945b777ef1
data/CHANGELOG.md CHANGED
@@ -6,23 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- ## [0.3.3] - 2019-02-25
9
+ ## [0.3.4] - 2020-04-30
10
+ ### Changed
11
+ - Relax requirement as ActiveSupport::Concern is stable. [[#88](https://github.com/ManageIQ/manageiq-api-client/pull/88)]
12
+ - Allow ActiveSupport 5.2 [[#87](https://github.com/ManageIQ/manageiq-api-client/pull/87)]
10
13
 
14
+ ## [0.3.3] - 2019-02-25
11
15
  ### Fixed
12
16
  - Raise an error if not found when filtering by a single ID [[#85](https://github.com/ManageIQ/manageiq-api-client/pull/85)]
13
17
 
14
18
  ## [0.3.2] - 2018-11-08
15
-
16
19
  ### Fixed
17
20
  - Raise a ResourceNotFound error when response is a 404 [[#84](https://github.com/ManageIQ/manageiq-api-client/pull/84)]
18
21
 
19
22
  ## [0.3.1] - 2018-08-06
20
-
21
23
  ### Fixed
22
24
  - Raise a more specific error class [[#82](https://github.com/ManageIQ/manageiq-api-client/pull/82)]
23
25
 
24
26
  ## [0.3.0] - 2018-03-14
25
-
26
27
  ### Changed
27
28
  - Adding support for Faraday's open_timeout and timeout options [[#78](https://github.com/ManageIQ/manageiq-api-client/pull/78)]
28
29
  - Loosen dependency on activesupport [[#74](https://github.com/ManageIQ/manageiq-api-client/pull/74)]
@@ -34,7 +35,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
34
35
  - Improve query used when fetching collection actions [[#77](https://github.com/ManageIQ/manageiq-api-client/pull/77)]
35
36
 
36
37
  ## [0.2.0] - 2017-02-24
37
-
38
38
  ### Changed
39
39
  - **BREAKING** Client's `settings` is renamed to `user_settings` to avoid collision with API's `settings` collection [[#57](https://github.com/ManageIQ/manageiq-api-client/pull/57)]
40
40
  - Loosen ActiveSupport dependency [[#64](https://github.com/ManageIQ/manageiq-api-client/pull/64)]
@@ -44,12 +44,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
44
44
  - When fetching the entrypoint a / is appended to the URL [[#59](https://github.com/ManageIQ/manageiq-api-client/pull/59)]
45
45
 
46
46
  ## [0.1.1]
47
-
48
47
  ### Added
49
48
  - Add CHANGELOG.md
50
49
  - Update README with simple instructions reflecting the query interface.
51
50
 
52
- [Unreleased]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.3...HEAD
51
+ [Unreleased]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.4...HEAD
52
+ [0.3.4]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.3...v0.3.4
53
53
  [0.3.3]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.2...v0.3.3
54
54
  [0.3.2]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.1...v0.3.2
55
55
  [0.3.1]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.3.0...v0.3.1
@@ -1,7 +1,7 @@
1
1
  module ManageIQ
2
2
  module API
3
3
  class Client
4
- VERSION = "0.3.3".freeze
4
+ VERSION = "0.3.4".freeze
5
5
  end
6
6
  end
7
7
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency "rake", "~> 10.0"
28
28
  spec.add_development_dependency "rspec", "~> 3.0"
29
29
 
30
- spec.add_dependency "activesupport", ">= 5.0", "< 5.2"
30
+ spec.add_dependency "activesupport", ">= 5.0", "< 6.1"
31
31
  spec.add_dependency "faraday", "~> 0.9"
32
32
  spec.add_dependency "faraday_middleware", "~> 0.10.0"
33
33
  spec.add_dependency "json", "~> 2.1.0"
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.3.3
4
+ version: 0.3.4
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: 2019-02-25 00:00:00.000000000 Z
12
+ date: 2020-04-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -62,7 +62,7 @@ dependencies:
62
62
  version: '5.0'
63
63
  - - "<"
64
64
  - !ruby/object:Gem::Version
65
- version: '5.2'
65
+ version: '6.1'
66
66
  type: :runtime
67
67
  prerelease: false
68
68
  version_requirements: !ruby/object:Gem::Requirement
@@ -72,7 +72,7 @@ dependencies:
72
72
  version: '5.0'
73
73
  - - "<"
74
74
  - !ruby/object:Gem::Version
75
- version: '5.2'
75
+ version: '6.1'
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: faraday
78
78
  requirement: !ruby/object:Gem::Requirement
@@ -205,8 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  - !ruby/object:Gem::Version
206
206
  version: '0'
207
207
  requirements: []
208
- rubyforge_project:
209
- rubygems_version: 2.6.14.3
208
+ rubygems_version: 3.0.6
210
209
  signing_key:
211
210
  specification_version: 4
212
211
  summary: ManageIQ API Client