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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bc63626be57248e01056f4a811eaf05231a3e35c1e4f287e350da22f3dd9a7a
4
- data.tar.gz: 4aded3824284effb77fad16e621fed8b471aba622c7d29778babf62fc6ecac9d
3
+ metadata.gz: fa4ad22d1869638d97ea306341e679d85b3cef63f06959327010d764a025fb03
4
+ data.tar.gz: 171d4dd5fa7cb40634442a6c3e12e8bb3a7bc8620b0470dd932c15f3fbf15194
5
5
  SHA512:
6
- metadata.gz: 9da2f7925d461fda084fd21cca89628c36c260cebf2a11e05eace614bc0cfaf7ab4a4064c8e40f6952ebc03bbbc6a6547366910c6c05224233a1be568a39f9df
7
- data.tar.gz: a0dc7053d65dc576e461996eed9848d14687cfd4bc45a902e9a6270120e1dd65a9912566338e1c29ffe77adc93671eca28a2340b933f23430031ed178d556237
6
+ metadata.gz: f441c9be9426bbae17213ae159fd2542951ac01bb5a2843f690ab34e12fe6e7b2c2fdc53ae83571fe965e9ef7355a20c73157d8c8eeeb6d01195399a90798cac
7
+ data.tar.gz: 1f3a854d5d184f0463cea92e55109854219b0ece263138036b39fa89d33b37cfb8ce4c237bf76aad1cdba9e91f1198d682d9ef74a3f4a9ba2d8dda54afafe8f8
@@ -1,7 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4
4
- - 2.5
5
3
  - 2.6
6
4
  sudo: false
7
5
  before_install:
@@ -18,7 +16,6 @@ deploy:
18
16
  notifications:
19
17
  email:
20
18
  recipients:
21
- - dempsey.travis@gmail.com
22
19
  - gergnz@gmail.com
23
20
  on_failure: change
24
21
  on_success: never
@@ -1,7 +1,22 @@
1
1
  # Change Log
2
2
 
3
- ## [1.0.0](https://github.com/cfndsl/cfndsl/tree/1.0.0) (2020-01-16)
4
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.5...1.0.0)
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
 
@@ -31,7 +31,8 @@ module CfnDsl
31
31
  'AWS::StackId' => 1,
32
32
  'AWS::StackName' => 1,
33
33
  'AWS::AccountId' => 1,
34
- 'AWS::NoValue' => 1
34
+ 'AWS::NoValue' => 1,
35
+ 'AWS::URLSuffix' => 1
35
36
  }.freeze
36
37
 
37
38
  class << self
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
@@ -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.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-16 00:00:00.000000000 Z
14
+ date: 2020-01-26 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler