From 6bef1f6646273bf3a2200574c5324727876b832e Mon Sep 17 00:00:00 2001 From: Gary Metzker Date: Sun, 15 Jan 2017 17:57:25 -0800 Subject: [PATCH] Added change log --- CHANGELOG.md | 9 +++++++++ package.json | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..13aef7b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# 1.0.0 (2017-01-15) + + ## Features +* Basic support to assign the Lambda `DeadLetterConfig` using after serverless Cloudformation stack is deployed. [Amazon Docs](http://docs.aws.amazon.com/lambda/latest/dg/dlq.html) + * Plugin makes a call to the [Lambda Api](http://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionConfiguration.html) + `UpdateFunctionConfiguration` +* Using a pre-existing SQS Queue or SNS Topic as a dead letter target. +* Using an SNS Queue or SNS Topic created in the resources section. +* Remove a previously existing dead letter `targetArn` by specifying a blank `targetArn` diff --git a/package.json b/package.json index b02d321..a2c1d36 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,9 @@ "mocha": "^3.2.0", "sinon": "^1.17.7" }, + "files": [ + "src" + ], "keywords": [ "serverless", "serverless framework",