hetznercloud 2.2.0 → 3.0.0

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: 34a83a28ff685be48e3c59036aec00189356152540e96e3f0cdcd87dd927ea65
4
- data.tar.gz: c3b9f90bd3bf142961216555382e62452e4bb0141bfba3d7ac5d09b2cbc9f93b
3
+ metadata.gz: 79a6b89356738d96488c66c11fe1db0898ec7d49a3e9916860e8b181b0d81ad9
4
+ data.tar.gz: c8fff383978d3f10d96997a4abe1cd25b03517d9aea0c95b332173cfaa18fe9b
5
5
  SHA512:
6
- metadata.gz: 54cc55c7d63d2dc949fe2112847a53184fb6155be571fcd1ec2940905536f2da2ffab94b7808bba2c3eb42775bce7a86a9b0057b1afdf98e60507f799e2e0db3
7
- data.tar.gz: 48ac006b7ee34632ad52f177b2e89d1e260161311421c61fdd57e778791cf8d302a9276ead67ede50f2d022af7e2661af9ffc57a9c50fbabb07a4b334d83056f
6
+ metadata.gz: 0375abf58d85d71138bfa68aa23e62d15f3e7a1230d7d7c175925f141138e256d6dbb0e4518995130bfab9cc8990ea3362a367d64f416a5d45adbcc0a8459257
7
+ data.tar.gz: 42aeba6192a1b77f2b7f123256ef6eb331faa28bf0fe28ccd50be4258576cef4408ff572d676342584a41104e5daedb238bf4727df1ab54f64c555e1fc3c0e70
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## HCloud v3.0.0 (2024-11-25)
4
+
5
+ - Removed `included_traffic` attribute from `ServerType`
6
+ - Removed `traffic` attribute from `Pricing`
7
+
8
+ ## HCloud v2.2.1 (2024-08-30)
9
+
10
+ - Add deprecation warning for `Pricing#floating_ip`
11
+
3
12
  ## HCloud v2.2.0 (2024-08-22)
4
13
 
5
14
  - Add support for (de-)compression of HTTP requests
@@ -14,7 +14,7 @@ module HCloud
14
14
 
15
15
  attribute :currency
16
16
 
17
- attribute :floating_ip, :floating_ip_price
17
+ attribute :floating_ip, :floating_ip_price, deprecated: true
18
18
  attribute :floating_ips, :floating_ip_prices, array: true, default: -> { [] }
19
19
 
20
20
  attribute :image, :image_price
@@ -27,7 +27,7 @@ module HCloud
27
27
 
28
28
  attribute :server_types, :server_type_price, array: true, default: -> { [] }
29
29
 
30
- attribute :traffic, :traffic_price, deprecated: true
30
+ attribute :traffic_price, deprecated: true
31
31
 
32
32
  attribute :vat_rate
33
33
 
@@ -31,10 +31,6 @@ module HCloud
31
31
  attribute :disk, :integer
32
32
  attribute :memory, :integer
33
33
 
34
- # FIXME: Attribute will return null on 2024-08-05
35
- # FIXME: Attribute will be removed on 2024-11-05
36
- attribute :included_traffic, :integer, deprecated: true
37
-
38
34
  attribute :cpu_type
39
35
  attribute :storage_type
40
36
 
@@ -3,8 +3,8 @@
3
3
  module HCloud
4
4
  # @!visibility private
5
5
  module Version
6
- MAJOR = 2
7
- MINOR = 2
6
+ MAJOR = 3
7
+ MINOR = 0
8
8
  PATCH = 0
9
9
  PRE = nil
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hetznercloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Dejonckheere
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-22 00:00:00.000000000 Z
11
+ date: 2024-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel