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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0c04fe1271358a786c6d3a11bf560b6dd3b473c
4
- data.tar.gz: 651417b88a81f851051083505ef069f1a74f11f3
3
+ metadata.gz: 3a7738acaf07463177f266c544d56d2a1a9ac44a
4
+ data.tar.gz: bae2e984bc11ebb87067b3bd2a053bc025f5c145
5
5
  SHA512:
6
- metadata.gz: 0cc74e488efa5facd0b5f460a0035a5da03055324ede819b25333f969d45b815a41452199bc966cb83377decddba2ceac2675e1691ef346ae4d3ab66d4cb57be
7
- data.tar.gz: dde59539318ab9315129291de3ceed29c7e7e5ba52efcfca38059e5d94bf8aa92bd230a397d87a8b1bbd87289dfc87ff104d7d4f46c1121e19ead89e2206bfb6
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'hygroscope'
3
- s.version = '1.3.0'
3
+ s.version = '1.3.1'
4
4
  s.summary = 'CloudFormation launcher'
5
5
  s.description = 'A tool for managing the launch of complex CloudFormation stacks'
6
6
  s.authors = ['Daniel Silverman']
@@ -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.0
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-15 00:00:00.000000000 Z
11
+ date: 2016-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor