terraspace 2.2.18 → 2.2.19

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: 1f83fd95749307479542afb2f0dba2b15a298d57ee3114c769cceca7015d6036
4
- data.tar.gz: 69877057d0f1eea7a6df17d457ea94928dd0491e0a6d07184b3a430c9ce13cc6
3
+ metadata.gz: dbf1c1b45897e94a492fa019c221ee512e2fed81249823d4fe89579f461c3629
4
+ data.tar.gz: 491bf9c1000b49a824854cb8d4e736da1a680401fc74d3487aa6f412d0a6dec6
5
5
  SHA512:
6
- metadata.gz: b715f342f28a2783a16b2dcd72b15c83e4d90327ec1f893db8de2fbcfabc7baa8656b2a6da054d49a995527ad505e03e9116269aaf89f62a4bf62055d51be6a4
7
- data.tar.gz: 35bdaa1626bb52beaba8b3924385eb264b84d561dcdd47fdd9ec917d81bd3aba3eb24c5d2db94387c3852996c5038b9042bc4164355c496758d5dd0607cabecf
6
+ metadata.gz: 368fe5e7a2151f47bc3471bc381abc752afd4e3f709ec9dee2a4bb481510032739747a115b21bd1d70ea6e1846718370ae1d52001777acfd181165d07327044a
7
+ data.tar.gz: 35991ef165b2e22cd59d831ea0d955540476af272468f4d0df16a06b84ee4528441f8b6ba1ba4b613e17cc9a3f104f52e288dc7de6d2c090e3c36ef36480c8e3
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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.19] - 2025-10-13
7
+ - [#354](https://github.com/boltops-tools/terraspace/pull/354) feat: add support for exit code in terraspace validate command
8
+ - [#370](https://github.com/boltops-tools/terraspace/pull/370) Fix 'new project' command for Ruby 3.4.x versions
9
+
6
10
  ## [2.2.18] - 2025-07-21
7
11
  - [#351](https://github.com/boltops-tools/terraspace/pull/351) Fix dead links in README.me
8
12
  - [#365](https://github.com/boltops-tools/terraspace/pull/365) RFC: Support `json` format with `graph` command
@@ -9,7 +9,8 @@ class Terraspace::CLI
9
9
  Terraspace::Builder.new(@options).run unless @options[:build] # Up already ran build
10
10
  Init.new(@options).run
11
11
  @runner = Terraspace::Terraform::Runner.new(@name, @options)
12
- @runner.run
12
+ success = @runner.run
13
+ exit 1 unless success
13
14
  end
14
15
  end
15
16
  end
@@ -125,7 +125,7 @@ module Terraspace
125
125
  end
126
126
 
127
127
  def subcommand?
128
- !!caller.detect { |l| l.include?('in subcommand') }
128
+ !!caller.detect { |l| l.match?('in .*subcommand') }
129
129
  end
130
130
 
131
131
  # Override command_help to include the description at the top of the
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "2.2.18"
2
+ VERSION = "2.2.19"
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.18
4
+ version: 2.2.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen