lono 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 380e874615eea57c1cc0788f77aef520d453e8c1
4
- data.tar.gz: fb70edb0ff4a31521f6df6d3085fdde5fd47014d
3
+ metadata.gz: ab8eab3415009f0d05c8831fa9a821f422f85a02
4
+ data.tar.gz: e2d052834c5cfddce46d4c35e403cf5ed7f0d04f
5
5
  SHA512:
6
- metadata.gz: c529da1117901155fe7ddc3033d779611370d3654ad01e76e5c5364a917f956911501d4014228166e22386457f3d2a2dbfa335ba9272eb1ef63ef0b85934dc4a
7
- data.tar.gz: c31a6c825e2c42a1828d333fc22034c9605566c2cd6433104df21df25be0ea17e7990d555e55bb97ce07ecace12c119e8262153c12bf636b6e1c85df7bd74cd4
6
+ metadata.gz: 57a50daf425fb8fade46d94c62b94065bfdf9f7366065c169f1e1e56359b125b68ae78fdfe40c50b14b935fae7b4d1be8ab4a89f3cbc8b67d74296c961c5fd3a
7
+ data.tar.gz: 568e8a05a5b82dffc60bfb6a8a12877a63d511dff7d7b33385272d52377d7164c780150d158640b388c48c678f72061139fbff3c4c392a9a54be101d74de24a8
@@ -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
+ ## [2.0.1]
7
+ - fix lono cfn update
8
+
6
9
  ## [2.0.0]
7
10
  - added lono cfn subcommand to launch CloudFormation stacks
8
11
  - added lono params subcommand to generate CloudFormation parameter files
data/README.md CHANGED
@@ -316,7 +316,7 @@ $ lono cfn delete my-stack --sure
316
316
 
317
317
  ### lono cfn preview
318
318
 
319
- If you want to see the CloudFormation preview without updating the stack you can also use the `lono cfn preview` command. The preview command is also covered in this blog post: [AWS CloudFormation dry-run with lono cfn preview](https://medium.com/boltops/aws-cloudformation-dry-run-with-lono cfn-plan-2a1e0f80d13c)
319
+ If you want to see the CloudFormation preview without updating the stack you can also use the `lono cfn preview` command. The preview command is also covered in this blog post: [AWS CloudFormation dry-run with lono cfn preview](https://medium.com/boltops/aws-cloudformation-dry-run-with-lono-cfn-plan-2a1e0f80d13c)
320
320
 
321
321
  ```
322
322
  $ lono cfn preview example --template single_instance --params single_instance
@@ -8,7 +8,7 @@ class Lono::Cfn::Base
8
8
  @stack_name = stack_name
9
9
  @options = options
10
10
  @project_root = options[:project_root] || '.'
11
- ProjectChecker.check(@project_root) unless options[:lono] # already ran checker in lono generate
11
+ Lono::ProjectChecker.check(@project_root) unless options[:lono] # already ran checker in lono generate
12
12
 
13
13
  template_name = options[:template] || @stack_name
14
14
  param_name = options[:param] || template_name
@@ -49,11 +49,11 @@ class Lono::Cfn::Update < Lono::Cfn::Base
49
49
 
50
50
  def preview
51
51
  options = @options.merge(lono: false, mute_params: true, mute_using: true, keep: true)
52
- @preview ||= Preview.new(@stack_name, options)
52
+ @preview ||= Lono::Cfn::Preview.new(@stack_name, options)
53
53
  end
54
54
 
55
55
  def diff
56
- @diff ||= Diff.new(@stack_name, @options.merge(lono: false, mute_params: true, mute_using: true))
56
+ @diff ||= Lono::Cfn::Diff.new(@stack_name, @options.merge(lono: false, mute_params: true, mute_using: true))
57
57
  end
58
58
 
59
59
  def change_set_update
@@ -1,3 +1,3 @@
1
1
  module Lono
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lono
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen