File tree 6 files changed +13
-11
lines changed
6 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.17.0] - 2022-01-11
9
+
10
+ ### Changed
11
+
12
+ - Set the order allocatations array as optional.
13
+
8
14
## [ 1.16.1] - 2022-01-07
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- patch_ruby (1.16.1 )
4
+ patch_ruby (1.17.0 )
5
5
typhoeus (~> 1.0 , >= 1.0.1 )
6
6
7
7
GEM
22
22
ffi (>= 1.15.0 )
23
23
factory_bot (6.2.0 )
24
24
activesupport (>= 5.0.0 )
25
- ffi (1.15.4 )
25
+ ffi (1.15.5 )
26
26
i18n (1.8.10 )
27
27
concurrent-ruby (~> 1.0 )
28
28
jaro_winkler (1.5.4 )
71
71
72
72
PLATFORMS
73
73
arm64-darwin-20
74
+ arm64-darwin-21
74
75
x86_64-darwin-20
75
76
76
77
DEPENDENCIES
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class ApiClient
31
31
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
32
32
def initialize ( config = Configuration . default )
33
33
@config = config
34
- @user_agent = "patch-ruby/1.16.1 "
34
+ @user_agent = "patch-ruby/1.17.0 "
35
35
@default_headers = {
36
36
'Content-Type' => 'application/json' ,
37
37
'User-Agent' => @user_agent
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class Order
39
39
# The Patch Fee in cents USD for this order.
40
40
attr_accessor :patch_fee_cents_usd
41
41
42
- # An array containing the inventory allocations for this order.
42
+ # DEPRECATED. An array containing the inventory allocations for this order.
43
43
attr_accessor :allocations
44
44
45
45
# The url of this order in the public registry.
@@ -223,10 +223,6 @@ def list_invalid_properties
223
223
invalid_properties . push ( 'invalid value for "allocation_state", allocation_state cannot be nil.' )
224
224
end
225
225
226
- if @allocations . nil?
227
- invalid_properties . push ( 'invalid value for "allocations", allocations cannot be nil.' )
228
- end
229
-
230
226
if @metadata . nil?
231
227
invalid_properties . push ( 'invalid value for "metadata", metadata cannot be nil.' )
232
228
end
@@ -248,7 +244,6 @@ def valid?
248
244
return false if @allocation_state . nil?
249
245
allocation_state_validator = EnumAttributeValidator . new ( 'String' , [ "pending" , "allocated" ] )
250
246
return false unless allocation_state_validator . valid? ( @allocation_state )
251
- return false if @allocations . nil?
252
247
return false if @metadata . nil?
253
248
true
254
249
end
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Project
27
27
# The description of the project.
28
28
attr_accessor :description
29
29
30
- # Deprecated . Favor the technology_type field instead.
30
+ # DEPRECATED . Favor the technology_type field instead.
31
31
attr_accessor :type
32
32
33
33
# The mechanism of the project. Either removal or avoidance.
Original file line number Diff line number Diff line change 11
11
=end
12
12
13
13
module Patch
14
- VERSION = '1.16.1 '
14
+ VERSION = '1.17.0 '
15
15
end
You can’t perform that action at this time.
0 commit comments