terraspace 2.2.9 → 2.2.10

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: 5ec502639ef9e51eaabc15f2446b607813740cde82fe190f1e5c011c6efe66af
4
- data.tar.gz: 1a0190a3a0847b876a55e8db5bbeb16263977a06f20006fc5daccad4b3bd2ec4
3
+ metadata.gz: 868708d6fa642b4d3d594202aeadff28af0e2ec106628a0e7853f83b0ad27824
4
+ data.tar.gz: b03c9dff474ed98d929a54ef85598df335870c1e668aa39004ebada3e7115cfc
5
5
  SHA512:
6
- metadata.gz: c2285bf67d8d46f3e022e4603cb1c5bfedbb9a2da845b7472d02e6497b987e4dfc8335412a4495bda1139ea9b2395d2a505438b33ff44087a9e50504fb216086
7
- data.tar.gz: 51c7376367e60d407f550d364f8786b0609da2115bae4c828c7611bbcf0f35db9e04fd5327593f6e5f02b2b8c381769b6e226659ca17e949901b6c97a23d35a0
6
+ metadata.gz: 66d7030cc8995f2524f651bc5d0a8e3a3a42cbbde5c14e869f5f49b7a86dfb157c2ba7f6d81f3515f1a151252f62edc9f206b66303b3d30eb0d76d683dd4ee28
7
+ data.tar.gz: '0910ebbc15e648c59682af6b014e73a3e54f54daac34c5975bebf4878f3751f43f9f3085b04e9aa6810307f69b290fe14d970b69295f4b54452795ffd43db7f4'
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [2.2.10] - 2023-08-23
7
+ - [#324](https://github.com/boltops-tools/terraspace/pull/324) terraspace check
8
+
6
9
  ## [2.2.9] - 2023-08-23
7
10
  - [#323](https://github.com/boltops-tools/terraspace/pull/323) Restrict terraform version due to terraform BSL license change
8
11
  - send terraform version to all terraspace cloud requests
@@ -3,6 +3,12 @@ class Terraspace::CLI
3
3
  desc "check", "Check setup is ok"
4
4
  long_desc Help.text("setup/check")
5
5
  def check
6
+ puts <<~EOL
7
+ DEPRECATED: The terraspace setup check command is deprecated. Instead use:
8
+
9
+ terraspace check
10
+
11
+ EOL
6
12
  Terraspace::Check.new(options).run
7
13
  end
8
14
  end
@@ -66,13 +66,19 @@ module Terraspace
66
66
  Bundle.new(options.merge(args: args)).run
67
67
  end
68
68
 
69
+ desc "check", "Check setup.", hide: true
70
+ long_desc Help.text(:check_setup)
71
+ def check
72
+ Check.new(options).run
73
+ end
74
+
69
75
  desc "check_setup", "Check setup.", hide: true
70
76
  long_desc Help.text(:check_setup)
71
77
  def check_setup
72
78
  puts <<~EOL
73
79
  DEPRECATED: The terraspace check_setup command is deprecated. Instead use:
74
80
 
75
- terraspace setup check
81
+ terraspace check
76
82
 
77
83
  EOL
78
84
  Check.new(options).run
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "2.2.9"
2
+ VERSION = "2.2.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.9
4
+ version: 2.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen