terraspace 2.0.0 → 2.0.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 +4 -4
- data/CHANGELOG.md +9 -7
- data/lib/terraspace/plugin/expander/interface.rb +4 -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: 63e85a272438c620049ad889851566afb09872566924895dee994322d65f75f2
|
|
4
|
+
data.tar.gz: b7f30a83ab50550fca3484eb6e7d58e39334708b5af98cd1d7a0964a24e96df7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18896509755488401183456c7e6888b9d909df0f45a62e164e75b0e746a8775c88fb22da7e4e921d3eb0c5a779631ab7d441827caefa6eaf7c79fe984079140e
|
|
7
|
+
data.tar.gz: 3993bfcf2cfd81eecef5841957e9b6bb4d12dfbe6a8276d00a96149f3032bf93206e68c7e53cba3171aacd16bfc5e3b1bfcdd6c26fc3c235816105b2ebb93fb8
|
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.0.1] - 2022-06-14
|
|
7
|
+
- [#240](https://github.com/boltops-tools/terraspace/pull/240) add project expander variable
|
|
8
|
+
|
|
6
9
|
## [2.0.0] - 2022-06-10
|
|
7
10
|
* Terraspace Cloud Support
|
|
8
11
|
|
|
@@ -11,21 +14,20 @@ Highlights:
|
|
|
11
14
|
* CI plugin support
|
|
12
15
|
* CI plugin generator
|
|
13
16
|
* VCS manual support in core for github, gitlab, bitbucket
|
|
17
|
+
* Layering: simplified by removing provider layering by default.
|
|
18
|
+
* Layering: new default `config.layering.mode = "simple"`. Use `config.layering.mode = "provider"` for v1 behavior.
|
|
19
|
+
* Layering: easier to debug with config.layering.show
|
|
20
|
+
* Layering: App, Role, Extra level layering
|
|
14
21
|
|
|
15
22
|
More:
|
|
16
23
|
* Backend expander variables handle env vars in general
|
|
17
24
|
* Remove config.build.cache_root option
|
|
18
|
-
* Clean up Terraspace::Plugin.autodetect
|
|
19
25
|
* cloud.record = "changes". dont create cloud record when no changes
|
|
20
|
-
* ci generic
|
|
21
|
-
* edge case TS_ENV=''
|
|
22
|
-
* .cody/cloud test
|
|
23
26
|
* cloud warning message when TS_TOKEN is confiugred but cloud is not yet
|
|
24
|
-
* API expodential retry logic
|
|
25
|
-
* plugin autodetect cleanup
|
|
27
|
+
* Cloud API expodential retry logic
|
|
26
28
|
* TS_EXTRA in favor of instance option, deprecate instance option
|
|
27
29
|
* handle ctrl-c
|
|
28
|
-
* improve
|
|
30
|
+
* improve acceptance codebuild scripts
|
|
29
31
|
|
|
30
32
|
## [1.1.7] - 2022-02-22
|
|
31
33
|
- [#215](https://github.com/boltops-tools/terraspace/pull/215) fix all down by building child nodes
|
|
@@ -114,6 +114,10 @@ module Terraspace::Plugin::Expander
|
|
|
114
114
|
Terraspace.cache_root
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
+
def project
|
|
118
|
+
Terraspace.config.cloud.project
|
|
119
|
+
end
|
|
120
|
+
|
|
117
121
|
# So default config works:
|
|
118
122
|
# config.cache_dir = ":REGION/:ENV/:BUILD_DIR"
|
|
119
123
|
# For when folks configure it with the http backend for non-cloud providers
|
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: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
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-06-
|
|
11
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|