hetznercloud 1.7.0 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 472d7137c8d99e2982af8b606566f275309691acf6bc0684b630b89af6366eef
4
- data.tar.gz: 62cfc73652b8f5a7bf6040c16110ea1164354270faa2330b99caa7907ef103a6
3
+ metadata.gz: 186a93045de45b6cf305dda61558933994de8a109e319e2c5fe6454f56be667f
4
+ data.tar.gz: b36eb396bb305052e67e5eda6b2f21a615013cdedcb57d8eceaae0ead59ca421
5
5
  SHA512:
6
- metadata.gz: 52c3b637f2e69c169f2f49361bf094a5121438579299a188bc11443eb5aefb1e412ac3f41799c67c79fe2542e9e141c65a4dbfef635276d2034e7393e76015a2
7
- data.tar.gz: 554508520ef6b3a06590453bdcf6c22b52a84dc1606c58690e4de19e64d8a39bf1e1c5f0b9f362698c1285a4ae77544575437649939dbd2b548eb89cf38da892
6
+ metadata.gz: d2ff10c4bae59a8e32695d52546d3ca42121578ea79468e046d61d162d6e3055edcc2608ae2acb3fe99717f74a78ab4fe6fab89233ca2160e94a0fc99788d791
7
+ data.tar.gz: 3bd2eb8a1960b9a417e0405d0f5653d56542a1d282308972f39d50451bd67c3dc3f7f5e36c358c315e6146babe2b390490f211c27de65a02a0615fd17570d351
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## HCloud v1.7.1 (2023-07-25)
4
+
5
+ - Add deprecation warning for `HCloud::Action.all`
6
+
3
7
  ## HCloud v1.7.0 (2023-06-30)
4
8
 
5
9
  - Add load balancer actions
@@ -44,5 +44,13 @@ module HCloud
44
44
  attribute :error, :error
45
45
 
46
46
  attribute :resources, :resource, array: true, default: -> { [] }
47
+
48
+ class << self
49
+ def all
50
+ warn "[DEPRECATION] Starting on 1 October 2023, this endpoint will no longer be available. After that, it won't be possible anymore to list all actions across all resources. As an alternative, you can use the action endpoints of a specific resource to list all actions (e.g. of all servers or of all Load Balancers)."
51
+
52
+ super
53
+ end
54
+ end
47
55
  end
48
56
  end
@@ -4,7 +4,7 @@ module HCloud
4
4
  module Version
5
5
  MAJOR = 1
6
6
  MINOR = 7
7
- PATCH = 0
7
+ PATCH = 1
8
8
  PRE = nil
9
9
 
10
10
  VERSION = [MAJOR, MINOR, PATCH].compact.join(".")
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: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Dejonckheere
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-30 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel