hygroscope 1.3.0 → 1.3.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 +4 -0
- data/hygroscope.gemspec +1 -1
- data/lib/hygroscope/cli.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a7738acaf07463177f266c544d56d2a1a9ac44a
|
|
4
|
+
data.tar.gz: bae2e984bc11ebb87067b3bd2a053bc025f5c145
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46516db011c962452711298fe6915e63dc84b75e4a16f1268208d5de8b9503c2fc2747e3f3af81cf74f017a259357bf315e56749d508fe65f119c4934f5988ae
|
|
7
|
+
data.tar.gz: 908fa0edabf8e61f278b384e4402eb1f57e5cc4630027966f5ab82e1c3e6f46ec4f961b9db94328f7a5c5baf4e9488b53d1c4378b90c0a8260ce72166874eaff
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 1.3.1 (2016-08-24)
|
|
2
|
+
- When performing updates do not set use_existing flag on parameters that are
|
|
3
|
+
inherited from existing stacks.
|
|
4
|
+
|
|
1
5
|
## 1.3.0 (2016-08-12)
|
|
2
6
|
- Support passing capabilities using new --capabilities option. No longer set
|
|
3
7
|
CAPABILITY_IAM by default.
|
data/hygroscope.gemspec
CHANGED
data/lib/hygroscope/cli.rb
CHANGED
|
@@ -136,7 +136,7 @@ module Hygroscope
|
|
|
136
136
|
# parameters to use_previous_value
|
|
137
137
|
if action == 'update' && !options[:ask]
|
|
138
138
|
missing.each do |key|
|
|
139
|
-
p.set(key, nil, use_previous_value: true)
|
|
139
|
+
p.set(key, nil, use_previous_value: true) unless p.get(key)
|
|
140
140
|
end
|
|
141
141
|
else
|
|
142
142
|
# Prompt for each missing parameter and save it in the paramset object
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hygroscope
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Silverman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|