fog-brightbox 1.8.2 → 1.9.0

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: 0c80e2f7ee5d97338f7480cce0ff7b89a61c3a3936c6f529426531ee3f36f23e
4
- data.tar.gz: 590350febe6e70d8bdf60f83e437ec1dcb2f4fadc11702a68a2ab5ac649a0169
3
+ metadata.gz: 9ad897388f8cd83ba70c06515b952c0ed907b3c330b59c131735c1184a776b94
4
+ data.tar.gz: d179bdcaf55265e2abfc30471b5cd6aa6b9166e7747b397e90cbaf56edecd372
5
5
  SHA512:
6
- metadata.gz: 36c668927a19ca0422e9b37496c8d300a84ffe4717d1bb8a03d0b7107b0d8c5411021a75622f27bc1d3d9a0982937a21036074ae216650340b7c5ee546428445
7
- data.tar.gz: 8a57c010618a6e4f926fb26b696eea8a46562e65fd506ba050ac8a4d5868d3c5f8d035595cc0b2dab72dc9f37135ba9a285f7a446d56a3ec634376a7f063442a
6
+ metadata.gz: 14da7c849f1500a55087c0ca2259a8f8c3cb2bf6027ae6443b9e7120f022aabb4f86bf7d5be74b4afa6eb748f6b16e5bda7db9afcc31e9801644d697f6d6d1e4
7
+ data.tar.gz: '013270008004a3d049f7a3b6a63d524da197aba1cfbabc9d936b6bb66bfc8f66f4fa3749de7c945fb9cf2a98252ca40f9b15f492dc6948d7a96a5255ee09c21d'
@@ -26,8 +26,7 @@ jobs:
26
26
  - name: Set up Ruby
27
27
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
28
28
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
29
- # uses: ruby/setup-ruby@v1
30
- uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
29
+ uses: ruby/setup-ruby@v1
31
30
  with:
32
31
  ruby-version: ${{ matrix.ruby-version }}
33
32
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ### 1.9.0 / 2023-01-09
2
+
3
+ Enhancements:
4
+
5
+ * Expose read-only `Volume.zone` attribute on model to report which zone the
6
+ volume was allocated to
7
+ * Add `boot` argument to `Volume#attach` to allow changing the boot volume of
8
+ inactive servers via the model API by passing through to the API request
9
+
10
+ Changes:
11
+
12
+ * Fix Github actions `setup-ruby` version to pick up bug fixes in running tests
13
+ caused by the older templates mismatching Ruby/Bundler versions
14
+ * Correct CHANGELOG for mixed references of "enhancements" and minor "changes"
15
+
1
16
  ### 1.8.2 / 2022-12-06
2
17
 
3
18
  Bug fixes:
@@ -14,7 +29,7 @@ Bug fixes:
14
29
 
15
30
  ### 1.8.0 / 2022-08-31
16
31
 
17
- Changes:
32
+ Enhancements:
18
33
 
19
34
  * Allow custom `volume_size` in server creation where supported
20
35
 
@@ -38,7 +53,7 @@ Bug fixes:
38
53
 
39
54
  ### 1.7.0 / 2022-07-28
40
55
 
41
- Changes:
56
+ Enhancements:
42
57
 
43
58
  * Adds support for `ConfigMaps` which are simple key/value stores for configuring
44
59
  other resources.
@@ -47,7 +62,7 @@ Changes:
47
62
 
48
63
  ### 1.6.0 / 2022-07-25
49
64
 
50
- Changes:
65
+ Enhancements:
51
66
 
52
67
  * Added support to opt-in to support Brightbox 2FA within clients.
53
68
 
@@ -69,7 +84,7 @@ object.
69
84
 
70
85
  ### 1.5.0 / 2022-06-09
71
86
 
72
- Changes:
87
+ Enhancements:
73
88
 
74
89
  * Added support for `Volume` resources. These are dynamic, network attached
75
90
  volumes. Servers with `nbs` (Network Block Storage) types can be created
@@ -100,20 +115,20 @@ Bug fixes:
100
115
 
101
116
  ### 1.4.0 / 2021-02-17
102
117
 
103
- Changes:
118
+ Enhancements:
104
119
 
105
120
  * Relax dependencies to allow Ruby 3.0 to be used.
106
121
 
107
122
  ### 1.3.0 / 2020-11-24
108
123
 
109
- Changes:
124
+ Enhancements:
110
125
 
111
126
  * Add `Server#disk_encrypted` attribute to support creation of servers with
112
127
  LUKS based encryption at rest.
113
128
 
114
129
  ### 1.2.0 / 2020-11-16
115
130
 
116
- Changes:
131
+ Enhancements:
117
132
 
118
133
  * Add `LoadBalancer#ssl_minimum_version` attribute to configure the TLS/SSL
119
134
  version supported by the load balancer.
@@ -34,6 +34,7 @@ module Fog
34
34
  attribute :account_id, aliases: "account", squash: "id"
35
35
  attribute :image_id, aliases: "image", squash: "id"
36
36
  attribute :server_id, aliases: "server", squash: "id"
37
+ attribute :zone_id, aliases: "zone", squash: "id"
37
38
 
38
39
  def attach(server)
39
40
  requires :identity
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "1.8.2"
3
+ VERSION = "1.9.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-brightbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Thornthwaite