terraspace 0.7.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -0
- data/lib/terraspace/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bd234dcdf6144ab75b3dd1a0c462500a1dd3acd630a2cf9bf7b45b9454c8d8b
|
4
|
+
data.tar.gz: ed32cdf8d20fa2d36b820703d795cc592cf475ae61803a28534786eab12c1fa7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03a5562ca555795061fad7f2aea07645994099417a7f367df3c37a1dd7749b38530a2a3caa6ca05eac12c853db587a84df0370473728268a96f24ffb713ac20b
|
7
|
+
data.tar.gz: 6b16be5fbc3b1a3f3a1a792314996a942dcf87ce458abb0ac2a13a7bb8dacc73827c3e04387102b65719dfc57c80df97e8353f73b9705ab825d43e1ebd4548ab
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,35 @@
|
|
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
|
+
## [1.0.0] - 2022-01-08
|
7
|
+
Highlights:
|
8
|
+
- Non-cloud provider support
|
9
|
+
- Better passthrough terraspace options to terraform. Pretty much all terraform options are now supported.
|
10
|
+
- Remove `terraspace_plugin_*` gem dependencies out of core
|
11
|
+
- Improve top CLI help: group main commands at top
|
12
|
+
|
13
|
+
Details:
|
14
|
+
- [#168](https://github.com/boltops-tools/terraspace/pull/168) terraspace new example command
|
15
|
+
- [#169](https://github.com/boltops-tools/terraspace/pull/169) fix new plugin generator, use right include Helper
|
16
|
+
- [#170](https://github.com/boltops-tools/terraspace/pull/170) remove project --test-structure option in favor of terraspace new test --type project
|
17
|
+
- [#171](https://github.com/boltops-tools/terraspace/pull/171) improve cli help: group main commands at top
|
18
|
+
- [#172](https://github.com/boltops-tools/terraspace/pull/172) better wrap and pass through terraform args
|
19
|
+
- [#173](https://github.com/boltops-tools/terraspace/pull/173) remove `terraspace_plugin_*` gem dependencies out of core
|
20
|
+
- [#174](https://github.com/boltops-tools/terraspace/pull/174) support non-cloud providers and backends
|
21
|
+
- [#175](https://github.com/boltops-tools/terraspace/pull/175) Pass args cleanup
|
22
|
+
- [#176](https://github.com/boltops-tools/terraspace/pull/176) fix new example command
|
23
|
+
- [#177](https://github.com/boltops-tools/terraspace/pull/177) Shim message
|
24
|
+
- [#178](https://github.com/boltops-tools/terraspace/pull/178) fix no backend.tf src file case
|
25
|
+
- [#179](https://github.com/boltops-tools/terraspace/pull/179) terraspace check setup command
|
26
|
+
- [#180](https://github.com/boltops-tools/terraspace/pull/180) hide check_setup command
|
27
|
+
- [#181](https://github.com/boltops-tools/terraspace/pull/181) generator improvements: core examples for plugin=none. creates simple random_pet
|
28
|
+
- [#182](https://github.com/boltops-tools/terraspace/pull/182) move backend auto creation to runner stage
|
29
|
+
- [#183](https://github.com/boltops-tools/terraspace/pull/183) fix example generator lang option
|
30
|
+
- allow --version command to run outside terraspace project
|
31
|
+
- allow terraspace -help to work also
|
32
|
+
- friendly shim message for gem dependency resolution errors
|
33
|
+
- Pretty much release 0.7.x
|
34
|
+
|
6
35
|
## [0.7.2] - 2022-01-05
|
7
36
|
- [#187](https://github.com/boltops-tools/terraspace/pull/187) put thor cli options at the end
|
8
37
|
|
data/lib/terraspace/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terraspace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|