cfndsl 1.0.0 → 1.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 +4 -4
- data/.travis.yml +0 -3
- data/CHANGELOG.md +17 -2
- data/lib/cfndsl/orchestration_template.rb +2 -1
- data/lib/cfndsl/version.rb +1 -1
- data/spec/cfndsl_spec.rb +2 -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: fa4ad22d1869638d97ea306341e679d85b3cef63f06959327010d764a025fb03
|
4
|
+
data.tar.gz: 171d4dd5fa7cb40634442a6c3e12e8bb3a7bc8620b0470dd932c15f3fbf15194
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f441c9be9426bbae17213ae159fd2542951ac01bb5a2843f690ab34e12fe6e7b2c2fdc53ae83571fe965e9ef7355a20c73157d8c8eeeb6d01195399a90798cac
|
7
|
+
data.tar.gz: 1f3a854d5d184f0463cea92e55109854219b0ece263138036b39fa89d33b37cfb8ce4c237bf76aad1cdba9e91f1198d682d9ef74a3f4a9ba2d8dda54afafe8f8
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,22 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [1.0.
|
4
|
-
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/
|
3
|
+
## [1.0.1](https://github.com/cfndsl/cfndsl/tree/1.0.1) (2020-01-27)
|
4
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0...1.0.1)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- 1.0.0 Release Planning [\#257](https://github.com/cfndsl/cfndsl/issues/257)
|
9
|
+
|
10
|
+
**Closed issues:**
|
11
|
+
|
12
|
+
- Possible regressions 0.17.5 -\> 1.0.0 [\#442](https://github.com/cfndsl/cfndsl/issues/442)
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Add the pseudo parameter AWS::URLSuffix [\#443](https://github.com/cfndsl/cfndsl/pull/443) ([rickselby](https://github.com/rickselby))
|
17
|
+
|
18
|
+
## [v1.0.0](https://github.com/cfndsl/cfndsl/tree/v1.0.0) (2020-01-16)
|
19
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.5...v1.0.0)
|
5
20
|
|
6
21
|
**Implemented enhancements:**
|
7
22
|
|
data/lib/cfndsl/version.rb
CHANGED
data/spec/cfndsl_spec.rb
CHANGED
@@ -165,7 +165,8 @@ describe CfnDsl::CloudFormationTemplate do
|
|
165
165
|
'AWS::NoValue',
|
166
166
|
'AWS::Region',
|
167
167
|
'AWS::StackId',
|
168
|
-
'AWS::StackName'
|
168
|
+
'AWS::StackName',
|
169
|
+
'AWS::URLSuffix'
|
169
170
|
].each do |param|
|
170
171
|
ref = subject.Ref param
|
171
172
|
expect(ref.to_json).to eq("{\"Ref\":\"#{param}\"}")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfndsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Jack
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2020-01-
|
14
|
+
date: 2020-01-26 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|