cfndsl 1.5.0 → 1.6.0

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: 60fd9d5b015bba59a06b23bcccedd597cc2b68a3c8dee7ff82aa92b7afaefff2
4
- data.tar.gz: 2548519c47ee9778c5a924fa7c65d95559be36656cbf1a9faa85455d9498e1cf
3
+ metadata.gz: edc9c71c77a33cfa3b89ce3d041fe3491557605d2ee9b57d038d796b871b6337
4
+ data.tar.gz: 542dcbb6da320839e0743c2ed1793f4a33d18d0bfc06964946d818bb3e33b370
5
5
  SHA512:
6
- metadata.gz: 8994badca3563457dff68a3cccc1033ec9b83f948aefe4f9ea3feb82fa4658d371afebc75a5927c41af850d5f24877ca094ba65fdde1d640bc63d503bb3c50c4
7
- data.tar.gz: a1baadd61b87a275d3fbd3729f8ab8c068a82e5e212789fe993331961ead93003da44058800a0bc11bb510432cf5e55ebcc235c227804b9168a55d0ed8362aa3
6
+ metadata.gz: e04b71e6dc22a5fcee72888fb779899fabaf1f7e88a23346492fe8d2e5071a7572737e6a1534c010f827dc2953dc8e328c8b90854dc70bb57b5e3e196d4214d0
7
+ data.tar.gz: 4129b64fff51384e3cd46778aa9ea3bd6b308a47c293db05fb23eab78478d27757c72b3cf62d44897e6ed32b109d05c4ecfd0e28e052c22082bb63839316cdc4
data/CHANGELOG.md CHANGED
@@ -1,8 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## [1.5.0](https://github.com/cfndsl/cfndsl/tree/1.5.0) (2022-12-28)
3
+ ## [1.6.0](https://github.com/cfndsl/cfndsl/tree/1.6.0) (2023-01-18)
4
4
 
5
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.4.0...1.5.0)
5
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.5.0...1.6.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - delete weird patch that seems to try to solve a linting problem, not … [\#486](https://github.com/cfndsl/cfndsl/pull/486) ([gergnz](https://github.com/gergnz))
10
+
11
+ ## [v1.5.0](https://github.com/cfndsl/cfndsl/tree/v1.5.0) (2022-12-28)
12
+
13
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.4.0...v1.5.0)
6
14
 
7
15
  **Merged pull requests:**
8
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '1.5.0'
4
+ VERSION = '1.6.0'
5
5
  end
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.5.0
4
+ version: 1.6.0
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: 2022-12-28 00:00:00.000000000 Z
14
+ date: 2023-01-18 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -78,7 +78,6 @@ files:
78
78
  - lib/cfndsl/aws/patches/500_NetworkAclEntry_patch.json
79
79
  - lib/cfndsl/aws/patches/500_SAM_Serverless_Function_S3Event_Events_patch.json
80
80
  - lib/cfndsl/aws/patches/500_SAM_Serverless_Function_S3Location_Version_patch.json
81
- - lib/cfndsl/aws/patches/500_SSM_AssociationName_patch.json
82
81
  - lib/cfndsl/aws/patches/500_VPCEndpoint_patch.json
83
82
  - lib/cfndsl/aws/patches/510_ElasticSearch_Domain_patches.json
84
83
  - lib/cfndsl/aws/patches/520_ServiceDiscovery_InstanceAttributes_patch.json
@@ -1,16 +0,0 @@
1
- {
2
- "ResourceTypes": {
3
- "AWS::SSM::Association": {
4
- "patch": {
5
- "description": "rename +Name+ to +DocumentName+ to clearly indicate what the attribute is for",
6
- "operations": [
7
- {
8
- "from": "/Properties/Name",
9
- "op": "move",
10
- "path": "/Properties/DocumentName"
11
- }
12
- ]
13
- }
14
- }
15
- }
16
- }