ufo 5.0.4 → 5.0.5
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 +3 -0
- data/docs/_includes/cfn-customize.md +1 -1
- data/lib/ufo/setting/profile.rb +1 -0
- data/lib/ufo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac9da556f0438367ebd761b2f0c90e04b175bee2b7c6d9deb7fd06d4d05fa755
|
|
4
|
+
data.tar.gz: a5ae0d961c966ab386981a81e41e184e9a4821e59c8812ec68052a053372123d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a679e2f13efe4d64f34b66ba7d2f4a859abe560451fdb722f0e41919fecbddb4ed8d3ef4047fbd1745b7a6dd381af6c075fb95f7355f46a751866bfa3e79f07
|
|
7
|
+
data.tar.gz: 4b550246bf57f094add49eaf7171268c8c20f6f6a13d40f7b72f3834c0aa5f023cbff0802f313b8e7c3821ec51da60638d726a92ab6f8ae241cc7f11dfcb22b1
|
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 *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [5.0.5] - 2021-01-23
|
|
7
|
+
- allow base profile without a default profile
|
|
8
|
+
|
|
6
9
|
## [5.0.4] - 2021-01-23
|
|
7
10
|
- [#119](https://github.com/tongueroo/ufo/pull/119) layer base profiles with env-specific or default profile
|
|
8
11
|
|
|
@@ -48,6 +48,6 @@ The settings in `development.yml` override the settings in `base.yml`. Here's an
|
|
|
48
48
|
* .ufo/settings/network/base.yml
|
|
49
49
|
* .ufo/settings/network/development.yml
|
|
50
50
|
|
|
51
|
-
Note, this feature is available in v5.0.
|
|
51
|
+
Note, this feature is available in v5.0.5+.
|
|
52
52
|
|
|
53
53
|
For the most up to date list check out the [cfn/stack.yml](https://github.com/tongueroo/ufo/blob/master/lib/cfn/stack.yml) source code directly.
|
data/lib/ufo/setting/profile.rb
CHANGED
|
@@ -12,6 +12,7 @@ class Ufo::Setting
|
|
|
12
12
|
@profile, # user specified
|
|
13
13
|
Ufo.env, # conventional based on env
|
|
14
14
|
"default", # fallback to default
|
|
15
|
+
"base", # finally fallback to base
|
|
15
16
|
].compact.uniq
|
|
16
17
|
paths = names.map { |name| "#{Ufo.root}/.ufo/settings/#{@type}/#{name}.yml" }
|
|
17
18
|
found = paths.find { |p| File.exist?(p) }
|
data/lib/ufo/version.rb
CHANGED