Skip to content

Releases: serverless/serverless

1.10.1 (2017-03-30)

30 Mar 15:38
Compare
Choose a tag to compare
  • Update serverless-alpha detection (#3423)

Meta

1.10.0 (2017-03-29)

29 Mar 12:34
Compare
Choose a tag to compare
  • Fixed bug with ANY http method (#3304)
  • Reduced unit test time significantly (#3359)
  • Added AWS Groovy Gradle Template (#3353)
  • Reduce dependency tree depth between IAM & Log Groups (#3360)
  • Added entrypoints for plugins (#3327)
  • Removed pre-install script (#3385)
  • Expose plugin hooks (#2985)
  • Add support for Node 6 runtime in invoke local (#3403)
  • Updated Node.js templates to include Node 6 runtime by default (#3406)
  • Removed breaking changes warnings (#3418)
  • Auto loading serverless-alpha plugin (#3373)

Meta

1.9.0 (2017-03-14)

14 Mar 19:55
Compare
Choose a tag to compare
  • Fixed bug with serverless plugins lookup (#3180)
  • Fixed bug with serverless create generated .gitignore (#3355)
  • Fixed bug with authorizer claims (#3187)
  • Added support for CloudFormation service roles (#3147)
  • Improvements for invoke local plugin (#3037)
  • Added Azure Functions Node.js template in serverless create (#3334)
  • Allow DynamoDB and Kinesis streams to use GetAtt/ImportValue (#3111)

Meta

1.8.0 (2017-02-28)

01 Mar 02:02
Compare
Choose a tag to compare

Non-Breaking Changes

  • Fixed bug with deployment progress monitoring (#3297)
  • Fixed "too many open files" error (#3310)
  • Fixed bug with functions lists loaded from a separate file using Serverless Variables (#3186)

Breaking Changes

Removed IamPolicyLambdaExecution Resource

We've removed the IamPolicyLambdaExecution resource template and replaced it with inline policy within the role as it's been causing issues with VPC and bloating the CF template. This is a breaking change only for users who are depending on that resource with Ref or similar CF intrinsic functions.

Changed displayed function name for sls info

The function name displayed when you run sls info is now the short function name as found in serverless.yml rather than the actual lambda name to keep it more provider agnostic. This could be breaking for any user who is depending or parsing the CLI output.

Meta

1.7.0 (2017-02-14)

14 Feb 15:49
Compare
Choose a tag to compare
  • Added CloudWatch event source (#3102)
  • Fixed average functions duration calculation in "sls metrics" output (#3067)
  • Added SLS_IGNORE_WARNINGS flag and logging upcoming breaking changes (#3217)
  • Reduced memory consumption during zipping process (#3220)
  • Fixed bug when using LogGroup resources with custom roles (#3213)

Meta

1.6.1 (2017-01-31)

15 May 15:05
Compare
Choose a tag to compare

A minimal patch release that fixes an issue with rendering README.md on npm registry.

1.6.0 (2017-01-30)

30 Jan 15:44
Compare
Choose a tag to compare

Important Note: This release includes breaking changes. If your services stopped working after upgrading to v1.6.0, please read the following section.

Breaking Changes

CloudWatch logs are created explicitly

Up until this release, CloudWatch log groups were created implicitly by AWS/Lambda by default and were not included in your service stack. However, some users were able to easily reach the CloudWatch log group limits (currently at 500 log groups), and it wasn't an easy task to clear them all. Because of that we decided to explicitly create the log groups using CloudFormation so that you can easily remove them with sls remove. This was also optionally possible with the cfLogs: true config option.

If your service doesn't have the cfLogs: true set, and one of the function has been invoked at least once (hence the log groups were created implicitly by AWS), then it's very likely that you'll receive a "log group already exists" error after upgrading to v1.6.0. That's because CF is now trying to create the already created log groups from scratch to include it in the stack resources. To fix this breaking change, simply delete the old log group, or rename your service if you must keep the old logs.

Removed function Arns from CloudFormation outputs

Up until this release, the output section of the generated CloudFormation template included an output resource for each function Arn. This caused deploying big services to fail because users were hitting the 60 outputs per stack limit. This effectively means that you can't have a service that has more than 60 functions. To avoid this AWS limit, we decided to remove those function output resources completely, to keep the stack clean. This also means removing the function Arns from the sls info command, and at the end of the deployment command.

This is a breaking change for your project if you're depending on those function output resources in anyway, or if you're depending on function arn outputs from the deploy or info commands. Otherwise, your project shouldn't be affected by this change. Fixing this issue depends on your needs, but just remember that you can always create your own CF outputs in serverless.yml.

Moved getStackName() method

This is a breaking change for plugin authors only. If your plugin used the provider.getStackName() method, it has been moved to naming.js, and should be referenced with provider.naming.getStackName() instead.

Removed the defaults property from serverless.yml

We've finally dropped support for the defaults property which we introduced in v1. All child properties should now be moved to the provider object instead.

Non-breaking changes

  • Reduce memory consumption on deploy by at least 50% (#3145)
  • Added openwhisk template to sls create command (#3122)
  • Allow Role 'Fn::GetAtt' for Lambda role (#3083)
  • Added Access-Control-Allow-Credentials for CORS settings (#2736)
  • add Support for SNS Subscription to existing topics (#2796)
  • Function version resources are now optional. (#3042)
  • Invoke local now supports python runtime. (#2937)
  • Fixed "deployment bucket doesn't exist" error (#3107)
  • Allowed function events value to be variables (#2434)

Meta

1.5.1 (2017-01-19)

19 Jan 09:10
Compare
Choose a tag to compare

Bug Fixes

  • Fix bug with multi line values is given in IoT events (#3095)
  • Add support of numeric template creation path (#3064)
  • Fix deployment bucket bug when using eu-west-1 (#3107)

Meta

1.5.0 (2017-01-05)

05 Jan 18:35
Compare
Choose a tag to compare

Features

Bug Fixes

  • Fix VTL string escaping (#2993)
  • Scheduled events are enabled by default (#2940)
  • Update status code regex to match newlines (#2991)
  • Add check for preexistent service directory (#3014)
  • Deployment monitoring fixes (#2906)
  • Credential handling fixes (#2820)
  • Reduced policy statement size significantly (#2952)

Meta

1.4.0 (2016-12-15)

15 Dec 17:41
Compare
Choose a tag to compare

Features

Bug Fixes

  • Fixed exit code for failed function invocations (#2836)
  • Stricter validation for custom IAM statements (#2132)
  • Fixed bug in credentials setup (#2878)
  • Removed unnecessary warnings during Serverless installation (#2811)
  • Removed request and response config when using proxy integration (#2799)
  • Internal refactoring

Meta