softlayer_api 3.2.0 → 3.2.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
  SHA1:
3
- metadata.gz: 4c73f2b12af46498006541c8898db5c29b3562ba
4
- data.tar.gz: da5403993f736e9bbf05e7dda4a562d5842afcae
3
+ metadata.gz: 04b38f09f536b94748efab61b6883ff8154e6f37
4
+ data.tar.gz: a85b688249dd6b238e31721a38d079f713ec305a
5
5
  SHA512:
6
- metadata.gz: fe6197aaaa63ad39770212e301cd2a521c83560012118279d418e4520b1c819bf512ee2e2233746d3a38ee9a6179411cc0e69362ba48717b1a262d47de99a8fa
7
- data.tar.gz: a23c7baf765f5da9a19a1da6e10c50ade0e98a4015bc884cb42631b0d77734807c26aef5bb1292091e7cac849e548cc765939dfa053c7c30b6a96b3f71951588
6
+ metadata.gz: 37c5e2e9943594b49abcbf5b83f44f0cd911d07fa25ce2d875743ac16be33f5ca505b59fd7b394cc9d7f1d6571c04c14d00469cab2f657aa118564dfb5e77973
7
+ data.tar.gz: aa5cde5e62543b5be95987eaddec42ddd16da4f75ad1c3fa8c2cffe75ea1d87fee3e6f2cf99ebaed865a595119c06e833da7f75ad9c413e8c7c1b016166e9501
@@ -1,6 +1,13 @@
1
+ *3.2.1*
2
+ Fix a crashing issue where a Bare Metal server order tried to retrieve the hardware ordered before it has been provisioned.
3
+
1
4
  *3.2*
2
5
  * Add password-based authentication with `SoftLayer::Client.with_password(username: '...', password: '...', ...)`.
3
6
 
7
+ *3.1.0*
8
+ * Many SoftLayer Attributes are now shadowed with snake_case names. The old CamelCase versions are deprecated and will be removed in the next major release
9
+ * New functionality related to network monitoring has been added
10
+
4
11
  *3.0*
5
12
  * Substantially rewrote the ObjectFilter class. ObjectFilters used to be hashes which made it easy to manipulate their content incorrectly. The new implementation has a strict interface that makes it harder to manipulate filters incorrectly.
6
13
  * Added a model for Virtual Server Image Templates (SoftLayer::ImageTemplate) - VirtualServerOrder now requires an instance of this class rather than allowing you to provide the global_id of an image
@@ -133,7 +133,7 @@ module SoftLayer
133
133
  order_template = yield order_template if block_given?
134
134
 
135
135
  server_hash = @softlayer_client[:Hardware].createObject(order_template)
136
- SoftLayer::BareMetalServer.server_with_id(server_hash['id'], :client => @softlayer_client) if server_hash
136
+ return server_hash
137
137
  end
138
138
 
139
139
  protected
@@ -12,7 +12,7 @@ require 'rubygems'
12
12
  module SoftLayer
13
13
  # The version number (including major, minor, and bugfix numbers)
14
14
  # This should change in accordance with the concept of Semantic Versioning
15
- VERSION = "3.2.0" # version history in the CHANGELOG.textile file at the root of the source
15
+ VERSION = "3.2.1" # version history in the CHANGELOG.textile file at the root of the source
16
16
 
17
17
  # The base URL of the SoftLayer API available to the public internet.
18
18
  API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: softlayer_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SoftLayer Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-19 00:00:00.000000000 Z
11
+ date: 2016-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: configparser
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  version: '0'
184
184
  requirements: []
185
185
  rubyforge_project:
186
- rubygems_version: 2.4.6
186
+ rubygems_version: 2.4.8
187
187
  signing_key:
188
188
  specification_version: 4
189
189
  summary: Library for accessing the SoftLayer API