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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/hcloud/resources/pricing.rb +2 -2
- data/lib/hcloud/resources/server_type.rb +0 -4
- data/lib/hcloud/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79a6b89356738d96488c66c11fe1db0898ec7d49a3e9916860e8b181b0d81ad9
|
4
|
+
data.tar.gz: c8fff383978d3f10d96997a4abe1cd25b03517d9aea0c95b332173cfaa18fe9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 :
|
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
|
|
data/lib/hcloud/version.rb
CHANGED
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:
|
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-
|
11
|
+
date: 2024-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|