ufo 6.3.7 → 6.3.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/ufo/cfn/stack.rb +1 -1
- 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: 1629eaa759c7bae3106f8abd862e0be399ede5e53723ee6e97570cc047f93069
|
|
4
|
+
data.tar.gz: e214fa1a5e92d8d8989a91a2bbe5490d40e33d65870563938153c0432c1d7aa1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e574a93ce4a006be8fd020b3f3efd69bb58eb3290d1215ea34a73b6ac429b997d142ab7474c9a0f1f073ba80c94f73782a1498ad4b15a8116d5a2a27be506e6a
|
|
7
|
+
data.tar.gz: 51864fd98e59b9bdaee578dc877e6b3e6c258ca5c0c379c35ee9f0222f07cc7e7f46e0f49c2809272ac4f9839da5e4c50e708ac57f24c9f72772b4ecb18e7992
|
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
|
+
## [6.3.8] - 2022-05-02
|
|
7
|
+
- [#174](https://github.com/tongueroo/ufo/pull/174) fix update rollback failed user friendly error message
|
|
8
|
+
|
|
6
9
|
## [6.3.7] - 2022-04-29
|
|
7
10
|
- [#173](https://github.com/tongueroo/ufo/pull/173) fix when ssl certs not used
|
|
8
11
|
|
data/lib/ufo/cfn/stack.rb
CHANGED
|
@@ -110,7 +110,7 @@ module Ufo::Cfn
|
|
|
110
110
|
when /state and can not be updated/
|
|
111
111
|
logger.info "The #{@stack_name} stack is in a state that cannot be updated. Deleted the stack and try again."
|
|
112
112
|
logger.info "ERROR: #{e.message}"
|
|
113
|
-
if message.include?('UPDATE_ROLLBACK_FAILED')
|
|
113
|
+
if e.message.include?('UPDATE_ROLLBACK_FAILED')
|
|
114
114
|
logger.info "You might be able to do a 'Continue Update Rollback' and skip some resources to get the stack back into a good state."
|
|
115
115
|
end
|
|
116
116
|
url = "https://console.aws.amazon.com/cloudformation/home?region=#{region}"
|
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: 6.3.
|
|
4
|
+
version: 6.3.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-
|
|
11
|
+
date: 2022-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-logs
|