ufo 6.0.7 → 6.0.8

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
  SHA256:
3
- metadata.gz: a1d99bfecc9c3cc0dd62ac1e0eef1091d175578cf439138cab340e0ffa877a21
4
- data.tar.gz: 746c2c8379afa612682c77fe551a1e4b0219a4b75101837410e9a85a5a8a22c3
3
+ metadata.gz: 0ebcf583b29f7a6bd3e78d01091d1c993799b3ee3b30f139ae13fec372ca6328
4
+ data.tar.gz: 745a00ef65d3788e2b986f33cde18d763ee2167f205e1e7ed2d4340be2383529
5
5
  SHA512:
6
- metadata.gz: 1fed912e9ceb5c30b96754185274cf8cf6c25f1f467816677df59665421d717d0e95cf9071ab033f8c03b4abc5011115ccfd15b146afd3700c834e606ba2fb79
7
- data.tar.gz: f0f7f8944b7922438e1ed9355aa46575e3b2b405580f91f71f4664f80df6736425471c3be5b09d14f6bca5e11d44d0326b551d7086e6b5614618fd3c7b195afc
6
+ metadata.gz: c511ee4143f521d907ffd066fa2bd2c15b8dbad9a4e647e7646418ed936a7c3f4956f8e142eb551c53990be6bb6ae049bd29c6022dcefd311a420ba204f725ae
7
+ data.tar.gz: e55927bdc1d09f921c35f27ceaac142022d7fd2a73fefd0fa9e96cff6b846340e01f540be09669f0f03ab31c8c39e4f16ed60202b20cb47d02fee5ab9235c21d
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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
+ ## [6.0.8] - 2022-03-10
7
+ - [#135](https://github.com/tongueroo/ufo/pull/135) improve .ufo/config/boot.rb location
8
+ - change default config.ship.docker.quiet to false
9
+
6
10
  ## [6.0.7] - 2022-03-07
7
11
  - fix autoscaling.manual_changes.retain check
8
12
  - improve Configured autoscaling message
data/lib/ufo/booter.rb CHANGED
@@ -18,7 +18,7 @@ module Ufo
18
18
 
19
19
  def run_hook(env=nil)
20
20
  name = env ? "boot/#{env}" : "boot"
21
- path = "#{Ufo.root}/.ufo/#{name}.rb" # IE: .ufo/boot/dev.rb
21
+ path = "#{Ufo.root}/.ufo/config/#{name}.rb" # IE: .ufo/boot/dev.rb
22
22
  require path if File.exist?(path)
23
23
  end
24
24
 
data/lib/ufo/config.rb CHANGED
@@ -111,7 +111,7 @@ module Ufo
111
111
 
112
112
  config.ship = ActiveSupport::OrderedOptions.new
113
113
  config.ship.docker = ActiveSupport::OrderedOptions.new
114
- config.ship.docker.quiet = true # only affects ufo ship docker commands output
114
+ config.ship.docker.quiet = false # only affects ufo ship docker commands output
115
115
 
116
116
  config.state = ActiveSupport::OrderedOptions.new
117
117
  config.state.reminder = true
data/lib/ufo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "6.0.7"
2
+ VERSION = "6.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ufo
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.7
4
+ version: 6.0.8
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-03-07 00:00:00.000000000 Z
11
+ date: 2022-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-logs