@mapbox/cloudfriend 5.1.0 → 5.1.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.
package/.travis.yml CHANGED
@@ -3,4 +3,4 @@ node_js:
3
3
  - 12
4
4
  - 14
5
5
  before_install:
6
- - pip install cfn-lint
6
+ - pip install cfn-lint==0.51.0
package/CODEOWNERS ADDED
@@ -0,0 +1,2 @@
1
+ # global owners
2
+ * @mapbox/orchestration
package/changelog.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## v5.1.1
4
+
5
+ - Dependency updates to avoid security vulnerabilities (minimist).
6
+
3
7
  ## v5.1.0
4
8
  - Lambda shortcuts now support custom Docker images.
5
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mapbox/cloudfriend",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "description": "Helper functions for assembling CloudFormation templates in JavaScript",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "aws-sdk": "^2.829.0",
49
- "minimist": "^1.2.5",
49
+ "minimist": "^1.2.6",
50
50
  "redent": "^2.0.0"
51
51
  },
52
52
  "eslintConfig": {
@@ -1,17 +0,0 @@
1
- {
2
- // Use IntelliSense to learn about possible attributes.
3
- // Hover to view descriptions of existing attributes.
4
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
- {
8
- "type": "pwa-node",
9
- "request": "launch",
10
- "name": "Launch Program",
11
- "skipFiles": [
12
- "<node_internals>/**"
13
- ],
14
- "program": "${workspaceFolder}/test/some.test.js"
15
- }
16
- ]
17
- }