fog-brightbox 1.8.2 → 1.9.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: 0c80e2f7ee5d97338f7480cce0ff7b89a61c3a3936c6f529426531ee3f36f23e
4
- data.tar.gz: 590350febe6e70d8bdf60f83e437ec1dcb2f4fadc11702a68a2ab5ac649a0169
3
+ metadata.gz: 0f473bbf89755a6b2be59e862ff5b5c03b6dbef118803428f9e21a23e9f31251
4
+ data.tar.gz: fcc868590a57f90e0094b3b5084b4bdb64551e04868f4ac210bbe1f8a60af38a
5
5
  SHA512:
6
- metadata.gz: 36c668927a19ca0422e9b37496c8d300a84ffe4717d1bb8a03d0b7107b0d8c5411021a75622f27bc1d3d9a0982937a21036074ae216650340b7c5ee546428445
7
- data.tar.gz: 8a57c010618a6e4f926fb26b696eea8a46562e65fd506ba050ac8a4d5868d3c5f8d035595cc0b2dab72dc9f37135ba9a285f7a446d56a3ec634376a7f063442a
6
+ metadata.gz: e06109c9e34cf0376ef7bdeb06cc9ffe9f08e890ed9b43a8f0e4f4dd5a28a8939b2ec69f41f52c47294501384306843b85366235283a99b986491b781baebf4d
7
+ data.tar.gz: f7c3bf934354741af85492ab18c358438a7cd6ae49a487a00d4419df6a4f9b65e1949fefedb5f6a29cd6dcc3f34e609fdffff3a1d6d3c1c869c39ad9a163c7ba
@@ -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,24 @@
1
+ ### 1.9.1 / 2023-01-10
2
+
3
+ Bug fixes:
4
+
5
+ * Allow `encrypted` parameter in `Volume#save` to allow it to propagate from
6
+ the model to the API request
7
+ ### 1.9.0 / 2023-01-09
8
+
9
+ Enhancements:
10
+
11
+ * Expose read-only `Volume.zone` attribute on model to report which zone the
12
+ volume was allocated to
13
+ * Add `boot` argument to `Volume#attach` to allow changing the boot volume of
14
+ inactive servers via the model API by passing through to the API request
15
+
16
+ Changes:
17
+
18
+ * Fix Github actions `setup-ruby` version to pick up bug fixes in running tests
19
+ caused by the older templates mismatching Ruby/Bundler versions
20
+ * Correct CHANGELOG for mixed references of "enhancements" and minor "changes"
21
+
1
22
  ### 1.8.2 / 2022-12-06
2
23
 
3
24
  Bug fixes:
@@ -14,7 +35,7 @@ Bug fixes:
14
35
 
15
36
  ### 1.8.0 / 2022-08-31
16
37
 
17
- Changes:
38
+ Enhancements:
18
39
 
19
40
  * Allow custom `volume_size` in server creation where supported
20
41
 
@@ -38,7 +59,7 @@ Bug fixes:
38
59
 
39
60
  ### 1.7.0 / 2022-07-28
40
61
 
41
- Changes:
62
+ Enhancements:
42
63
 
43
64
  * Adds support for `ConfigMaps` which are simple key/value stores for configuring
44
65
  other resources.
@@ -47,7 +68,7 @@ Changes:
47
68
 
48
69
  ### 1.6.0 / 2022-07-25
49
70
 
50
- Changes:
71
+ Enhancements:
51
72
 
52
73
  * Added support to opt-in to support Brightbox 2FA within clients.
53
74
 
@@ -69,7 +90,7 @@ object.
69
90
 
70
91
  ### 1.5.0 / 2022-06-09
71
92
 
72
- Changes:
93
+ Enhancements:
73
94
 
74
95
  * Added support for `Volume` resources. These are dynamic, network attached
75
96
  volumes. Servers with `nbs` (Network Block Storage) types can be created
@@ -100,20 +121,20 @@ Bug fixes:
100
121
 
101
122
  ### 1.4.0 / 2021-02-17
102
123
 
103
- Changes:
124
+ Enhancements:
104
125
 
105
126
  * Relax dependencies to allow Ruby 3.0 to be used.
106
127
 
107
128
  ### 1.3.0 / 2020-11-24
108
129
 
109
- Changes:
130
+ Enhancements:
110
131
 
111
132
  * Add `Server#disk_encrypted` attribute to support creation of servers with
112
133
  LUKS based encryption at rest.
113
134
 
114
135
  ### 1.2.0 / 2020-11-16
115
136
 
116
- Changes:
137
+ Enhancements:
117
138
 
118
139
  * Add `LoadBalancer#ssl_minimum_version` attribute to configure the TLS/SSL
119
140
  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
@@ -125,6 +126,7 @@ module Fog
125
126
  options = {
126
127
  :delete_with_server => delete_with_server,
127
128
  :description => description,
129
+ :encrypted => encrypted,
128
130
  :filesystem_label => filesystem_label,
129
131
  :filesystem_type => filesystem_type,
130
132
  :name => name,
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "1.8.2"
3
+ VERSION = "1.9.1"
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Thornthwaite