cfndsl 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63aa8fabcacf35f10e2bf292865366cc7aa00a6916a2f57bf0ecc6030fead851
4
- data.tar.gz: c85aef571978952c8a226a1ca96af578c20934f141e5603438ab6dca960d4a38
3
+ metadata.gz: 77d29e6380f73852d2781e1df4f023c391f822269d042b5c8d54b971b1a08570
4
+ data.tar.gz: 7d76ac16b091d60aa37a9e717c7fbc92e222bb50c3fc1f133ea396f82057b0c5
5
5
  SHA512:
6
- metadata.gz: 5892bd73b874391a0d066a9b52f30cb839d1f0cfebfd1dc0ae3cfe72ce3283954b5b1cb647df0a19f0eba441fbdbcb9fd04cdec5d6726b248ad17b7ee271921d
7
- data.tar.gz: 0ec32e06ca1018d1675479dcc6ffdabdde1c41ffd487e4f6ae28a32cb035ccc35f2ddd047923f560f7c5fa51f948aaa18c1b6780e14cf40786a57d1626e3b0db
6
+ metadata.gz: 6840361f2b5a725a459e8b27eb465f67eab4e5ddfef2fd6c109548d025cb2b539a01aee9ada092bb6c9e5cdd4e0949d20d444e4391d25affbdec8f319c7ae26c
7
+ data.tar.gz: 47f20cb0e583cb2865d9fb9a308db1a6f220c2fd82d1e764bdced6fcee85ed6b7d7e30de74d3b8ce6da5c2389632d2150f32ea2322c9a9c7de4f502e15845928
data/.rubocop.yml CHANGED
@@ -44,6 +44,6 @@ Lint/MixedRegexpCaptureTypes:
44
44
  AllCops:
45
45
  NewCops: disable
46
46
  SuggestExtensions: false
47
- TargetRubyVersion: 2.7
47
+ TargetRubyVersion: 2.6
48
48
  Exclude:
49
49
  - 'tmp/**/*'
data/.travis.yml CHANGED
@@ -1,6 +1,7 @@
1
1
  language: ruby
2
- rvm:
2
+ rvm: # all MRI ruby versions that are not EOL
3
3
  - 2.7
4
+ - 2.6
4
5
  - '3.0'
5
6
  sudo: false
6
7
  before_install:
data/CHANGELOG.md CHANGED
@@ -1,8 +1,20 @@
1
1
  # Changelog
2
2
 
3
- ## [1.3.1](https://github.com/cfndsl/cfndsl/tree/1.3.1) (2021-01-23)
3
+ ## [1.3.2](https://github.com/cfndsl/cfndsl/tree/1.3.2) (2021-06-26)
4
4
 
5
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.0...1.3.1)
5
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.1...1.3.2)
6
+
7
+ **Closed issues:**
8
+
9
+ - Allow ruby versions until eol [\#470](https://github.com/cfndsl/cfndsl/issues/470)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Reinstate support for Ruby 2.6 fix \#470 [\#471](https://github.com/cfndsl/cfndsl/pull/471) ([lwoggardner](https://github.com/lwoggardner))
14
+
15
+ ## [v1.3.1](https://github.com/cfndsl/cfndsl/tree/v1.3.1) (2021-01-23)
16
+
17
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.0...v1.3.1)
6
18
 
7
19
  **Merged pull requests:**
8
20
 
@@ -496,6 +508,7 @@
496
508
 
497
509
  - Clean up of README [\#330](https://github.com/cfndsl/cfndsl/pull/330) ([elmobp](https://github.com/elmobp))
498
510
  - enable deep merge as the default for yaml [\#328](https://github.com/cfndsl/cfndsl/pull/328) ([gergnz](https://github.com/gergnz))
511
+ - Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
499
512
 
500
513
  ## [v0.14.0](https://github.com/cfndsl/cfndsl/tree/v0.14.0) (2017-06-15)
501
514
 
@@ -509,10 +522,6 @@
509
522
 
510
523
  - Error reading specification file on 0.13.0 [\#322](https://github.com/cfndsl/cfndsl/issues/322)
511
524
 
512
- **Merged pull requests:**
513
-
514
- - Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
515
-
516
525
  ## [v0.13.1](https://github.com/cfndsl/cfndsl/tree/v0.13.1) (2017-05-17)
517
526
 
518
527
  [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.0...v0.13.1)
data/cfndsl.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
18
18
  s.require_paths = ['lib']
19
19
  s.bindir = 'exe'
20
- s.required_ruby_version = '>= 2.7'
20
+ s.required_ruby_version = '>= 2.6'
21
21
 
22
22
  s.executables << 'cfndsl'
23
23
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '1.3.1'
4
+ VERSION = '1.3.2'
5
5
  end
@@ -9,7 +9,7 @@ CloudFormation do
9
9
  QueueName 'ConfigServiceQueue'
10
10
  end
11
11
 
12
- Bucket('ConfigServiceBucket') do
12
+ S3_Bucket('ConfigServiceBucket') do
13
13
  end
14
14
 
15
15
  IAM_Policy('ConfigServiceS3BucketAccessPolicy') do
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.3.1
4
+ version: 1.3.2
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: 2021-01-23 00:00:00.000000000 Z
14
+ date: 2021-06-25 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -186,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
186
  requirements:
187
187
  - - ">="
188
188
  - !ruby/object:Gem::Version
189
- version: '2.7'
189
+ version: '2.6'
190
190
  required_rubygems_version: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - ">="