brightbox-cli 4.0.0.rc2 → 4.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: 22b1f59a54b3f902822d401bfc12d5bf3b797ac07ca778006abc0627423fe7f6
4
- data.tar.gz: ea3417d3a85def958ffe7897493056ceccb07f40d3370f6c20047333bb29066c
3
+ metadata.gz: cf8d230d121ac70d4971ed2acf19776ed75bac9256d4f4ea7d980af8e563350a
4
+ data.tar.gz: feb53ae71fe302c76fcbe2f6b4e1e67723b64d706266ed3db5531195df9ec167
5
5
  SHA512:
6
- metadata.gz: f5d7882274fbf277684ace5bd46bace4e2a3157e09ae3e91313e746edb134501d525cee5a2e2121e38780f355141e14d322e800fd83ad1393d5a9b10be2b53ff
7
- data.tar.gz: 82af52ec25efac5169fef7dd5f2e7b2ad8b4975b9d0dffb9c6014930ceead76a1b251379ca6c185f04b23df77ccfd649e79eaabcc27f837d5d8f0a1040b18bcf
6
+ metadata.gz: c5325d637d559f620a9b5a4cff4157aa67f6da2a802329c59d81270a429958afbf5e7d9f982d59d99786f099931b64bd1f50feedd123e6221371580234ac8986
7
+ data.tar.gz: 97431207227f81834213a4ab61c6d77d78f526ba4ec1a1885975c4169299cb4f88c323197984391ffed000feee9523b0a4aabbc7075fc15fe8389943400cb8d9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ### v4.0.0 / master
1
+ ### v4.0.0 / 2022-08-01
2
2
 
3
- [Full Changelog](https://github.com/brightbox/brightbox-cli/compare/v3.3.0...master)
3
+ [Full Changelog](https://github.com/brightbox/brightbox-cli/compare/v3.3.0...v4.0.0)
4
4
 
5
5
  Backwards incompatible changes:
6
6
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- brightbox-cli (4.0.0.rc2)
4
+ brightbox-cli (4.0.0)
5
5
  dry-inflector (= 0.2.0)
6
6
  fog-brightbox (>= 1.7.0)
7
7
  fog-core (< 2.0)
data/README CHANGED
@@ -40,12 +40,12 @@ To browse available resources use the resource name as the command:
40
40
 
41
41
  === Two factor authentication ===
42
42
 
43
- If you've enabled two factor authentication for your user, you can enable it in
44
- your config and the CLI will prompt for a two factor pin when needed:
43
+ If you've enabled two factor authentication for your user, you should be
44
+ prompted for a one time password (OTP) when it is required unless you have set
45
+ up a two factor helper (see below).
45
46
 
46
- [john@example.com]
47
- username = john@example.com
48
- two_factor = true
47
+ The previous configuration setting `two_factor` is no longer required when
48
+ using v4.0 or greater. This is ignored and can be removed.
49
49
 
50
50
  === Integrating with a password manager
51
51
 
@@ -147,15 +147,21 @@ in the path, just specify the full path to it:
147
147
 
148
148
  == UPGRADE NOTES
149
149
 
150
- Version 1.0.0 adds a new top level `brightbox` command for the suite.
150
+ Version 4.0.0 removes the older, backward compatible binaries for users of the
151
+ original `brightbox` (brightbox-deployment) gem.
152
+
153
+ So `brightbox-servers` will no longer work. Use the subcommand variation
154
+ `brightbox servers` instead.
151
155
 
152
- This may clash with our `brightbox` (brightbox-deployment) gem which, before
153
- version 2.4.0, used `brightbox` as the name for it's binary. Please ensure you
154
- update your `brightbox` gem to avoid using the wrong command.
156
+ == Alternatives
157
+
158
+ There are a number of alternative ways to manage Brightbox resources:
155
159
 
156
- We have included backwards compatible binaries for all the older CLI commands
157
- (brightbox-accounts, brightbox-servers etc...) but recommend getting used to the
158
- new form.
160
+ * Control Panel - https://cloud.brightbox.com/
161
+ * Terraform https://registry.terraform.io/providers/brightbox/brightbox/latest
162
+ * Kubernetes - https://github.com/brightbox/brightbox-cloud-controller-manager
163
+ * fog - https://github.com/fog/fog-brightbox
164
+ * Go - https://github.com/brightbox/gobrightbox
159
165
 
160
166
  == Testing
161
167
 
@@ -167,16 +173,6 @@ You should be able to run the specs and features with the following steps:
167
173
  The specs use VCR to playback filtered recordings from real API sessions. This
168
174
  process is not perfect, please report an issue
169
175
 
170
- == Alternatives
171
-
172
- There are a number of alternative ways to manage Brightbox resources:
173
-
174
- * Control Panel - https://cloud.brightbox.com/
175
- * Terraform – https://registry.terraform.io/providers/brightbox/brightbox/latest
176
- * Kubernetes - https://github.com/brightbox/brightbox-cloud-controller-manager
177
- * fog - https://github.com/fog/fog-brightbox
178
- * Go - https://github.com/brightbox/gobrightbox
179
-
180
176
  == Packaging
181
177
 
182
178
  === Vendoring libraries
@@ -1,3 +1,3 @@
1
1
  module Brightbox
2
- VERSION = "4.0.0.rc2".freeze unless defined?(Brightbox::VERSION)
2
+ VERSION = "4.0.0".freeze unless defined?(Brightbox::VERSION)
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brightbox-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.rc2
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Leach
@@ -784,9 +784,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
784
784
  version: '2.5'
785
785
  required_rubygems_version: !ruby/object:Gem::Requirement
786
786
  requirements:
787
- - - ">"
787
+ - - ">="
788
788
  - !ruby/object:Gem::Version
789
- version: 1.3.1
789
+ version: '0'
790
790
  requirements: []
791
791
  rubygems_version: 3.2.26
792
792
  signing_key: