ufo 4.6.1 → 4.6.2
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/lib/ufo/command.rb +7 -0
- data/lib/ufo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c99cfc2329a3e53ae1da1804899ef0e8c4a9d230ae6a8731a445c2e0c7b118c2
|
|
4
|
+
data.tar.gz: 70bd299bec0e3cfba7cd037612724312cf63cdc2a52baaf57d3b1c8ed641dea0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3efc9bba9967917cf8fd398ab161b367b7fb6822adee33d32eda6e02a5f6015ce9fc631ff541625f9e3a24d055a80dbd7f90ff62c0cf05963d2767a836e2bada
|
|
7
|
+
data.tar.gz: 615e2668a9668c7b394c160ab5cf3d939c98307047a349b22ecc62617ea1cd7cf005bb8535158d7b0c5ff87247d3f8ae5dc9c34fb33229fa94318a4c189e63e4
|
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
|
+
## [4.6.2]
|
|
7
|
+
- define texit_on_failure to remove Thor deprecation warning
|
|
8
|
+
|
|
6
9
|
## [4.6.1]
|
|
7
10
|
- #93 Fix firelens functionality
|
|
8
11
|
- #97 ufo logs --filter-pattern option
|
data/lib/ufo/command.rb
CHANGED
|
@@ -77,6 +77,13 @@ module Ufo
|
|
|
77
77
|
def website
|
|
78
78
|
"http://ufoships.com"
|
|
79
79
|
end
|
|
80
|
+
|
|
81
|
+
# https://github.com/erikhuda/thor/issues/244
|
|
82
|
+
# Deprecation warning: Thor exit with status 0 on errors. To keep this behavior, you must define `exit_on_failure?` in `Lono::CLI`
|
|
83
|
+
# You can silence deprecations warning by setting the environment variable THOR_SILENCE_DEPRECATION.
|
|
84
|
+
def exit_on_failure?
|
|
85
|
+
true
|
|
86
|
+
end
|
|
80
87
|
end
|
|
81
88
|
end
|
|
82
89
|
end
|
data/lib/ufo/version.rb
CHANGED
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: 4.6.
|
|
4
|
+
version: 4.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-logs
|