Skip to content

Commit edee555

Browse files
committed
Release v0.3.0
1 parent cf5dca8 commit edee555

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
# 0.3.0 (13.03.2018)
2+
- Support for SNS events
3+
14
# 0.2.0 (08.03.2018)
2-
- Replace reference to Lambda function `$Latest` version for alias in `EventSourceMapping` resources
5+
- Support for Stream based events (Kinesis and DynamoDB Streams)
36
- Add end-to-end tests
47

58
# 0.1.0 (24.02.2018)

lib/CfTemplateGenerators/Sns.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function replaceTopicSubscriptionFunctionWithAlias(snsTopic, functionAlias, func
88
return funcName ? funcName === functionName : false;
99
};
1010

11-
const restOfSubscriptions = subscriptions.filter(subscription => !isTargetSubscription(subscription));
11+
const restOfSubscriptions = subscriptions.filter(s => !isTargetSubscription(s));
1212
const subscriptionWithAlias = { Endpoint: { Ref: functionAlias }, Protocol: 'lambda' };
1313
const newSubscriptions = [...restOfSubscriptions, subscriptionWithAlias];
1414

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "serverless-plugin-canary-deployments",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "A Serverless plugin to implement canary deployment of Lambda functions",
55
"main": "serverless-plugin-canary-deployments.js",
66
"scripts": {
77
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha $(find ./ -name '*.test.js' -not -path '.*/node_modules/*')",
88
"watch": "NODE_ENV=test ./node_modules/mocha/bin/mocha -w $(find ./ -name '*.test.js' -not -path '*/node_modules/*')"
99
},
1010
"author": "David García <[email protected]>",
11+
"contributors": ["Carlos Castellanos <[email protected]> (https://github.com/ccverak/)"],
1112
"license": "ISC",
1213
"repository": {
1314
"url": "https://github.com/davidgf/serverless-plugin-canary-deployments.git",

0 commit comments

Comments
 (0)