serverless-plugin-lambda-dead-letter
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -0,1 +1,10 @@ | ||
# 1.2.1 (2017-01-31) | ||
## Bug Fixes | ||
* Removed the plugin command `setLambdaDeadLetterConfig` because it didn't work in all scenarios. | ||
## Meta | ||
* [Comparison since last release](https://github.com/gmetzker/serverless-plugin-lambda-dead-letter/compare/v1.2.0...v1.2.1) | ||
# 1.2.0 (2017-01-30) | ||
@@ -2,0 +11,0 @@ |
{ | ||
"name": "serverless-plugin-lambda-dead-letter", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "serverless plugin that can configure a lambda with a dead letter queue or topic", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -24,2 +24,11 @@ # Serverless Plugin: Lambda DeadLetterConfig | ||
### Requirements | ||
* nodeJs > `v4.0` | ||
* serverless > `v1.4` | ||
Install the plugin. | ||
```bash | ||
npm install serverless-plugin-lambda-dead-letter | ||
``` | ||
Install the plugin with npm and reference it in the serverless yaml file [as documented here.](https://serverless.com/framework/docs/providers/aws/guide/plugins/) | ||
@@ -26,0 +35,0 @@ |
@@ -20,18 +20,5 @@ 'use strict'; | ||
'deploy:compileEvents': () => BbPromise.bind(this) | ||
.then(this.compileFunctionDeadLetterResources), | ||
.then(this.compileFunctionDeadLetterResources) | ||
'setLambdaDeadLetterConfig:setLambdaDeadLetterConfig': () => BbPromise.bind(this) | ||
.then(this.setLambdaDeadLetterConfig) | ||
}; | ||
this.commands = { | ||
setLambdaDeadLetterConfig: { | ||
usage: 'Adds subscriptions to any SNS Topics defined by externalSNS.', | ||
lifecycleEvents: ['setLambdaDeadLetterConfig'] | ||
} | ||
}; | ||
} | ||
@@ -38,0 +25,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21785
186
255