Merge pull request #2593 from serverless/bump-1.1.0

Bump to 1.1.0
This commit is contained in:
Florian Motlik 2016-11-02 13:34:40 +01:00 committed by GitHub
commit a201fa5fbc
5 changed files with 43 additions and 3 deletions

View File

@ -1,3 +1,31 @@
# 1.1.0 (02.11.2016)
* [Github Milestone](https://github.com/serverless/serverless/milestone/15)
* [Comparison since last release](https://github.com/serverless/serverless/compare/v1.0.3...v1.1.0)
## Future breaking changes
We will include the LogGroup for your Lambda function in the CloudFormation template in the future. This will break deployments to existing applications because the log group was already created. You will get a warning about this if you deploy currently. We will force this behaviour in a future release, for now you can set it through the `cfLogs: true` parameter in your provider config. This change will also limit the logging rights to only this LogGroup, which should have no impact on your environment. You can read more in [our docs](https://serverless.com/framework/docs/providers/aws/guide/functions#log-group-resources).
## Features
* [Rollback Support](https://serverless.com/framework/docs/providers/aws/cli-reference/rollback/) (#2495)
* [Log Groups in Cloudformation](https://serverless.com/framework/docs/providers/aws/guide/functions#log-group-resources) (#2520)
* [Allow Services without functions](#2499) (#2499)
* [Clean up S3 Deployment bucket only after successful deployment](#2564) (#2564)
* [Allow Inclusion after Exclusion using ! Globs](https://serverless.com/framework/docs/providers/aws/guide/packaging/) (#2266)
* [Version Pinning for Serverless Services to only deploy with specified versions](https://serverless.com/framework/docs/providers/aws/guide/version/) (#2505)
* [Invoke local plugin](https://serverless.com/framework/docs/providers/aws/cli-reference/invoke/) (#2533)
* [Plugin template](https://serverless.com/framework/docs/providers/aws/cli-reference/create/) (#2581)
* [Simple Plugins are now installable in subfolder of the service](https://serverless.com/framework/docs/providers/aws/guide/plugins#service-local-plugin) (#2581)
## Bugs
* Fix variable syntax fallback if the file doesn't exist (#2565)
* Fix overwriting undefined variables (#2541)
* Fix CF deployment issue (#2576)
* Correctly package symlinks (#2266)
## Other
* [Large documentation refactoring](https://serverless.com/framework/docs/) (#2527)
# 1.0.3 (21.10.2016)
Following is a selection of features, bug fixes and other changes we did since 1.0.2.

View File

@ -5,7 +5,7 @@ This checklist should be worked through when releasing a new Serverless version.
## Pre-Release
- [ ] Look through all open issues and PRs (if any) of that milestone and close them / move them to another
milestone if still open
- [ ] Look through all closed issues and PRs of that milestone to see what has changed. Run `git log --grep "Merge pull request" "LAST_TAG_HERE"..HEAD --pretty=oneline --abbrev-commit > gitlogoutput` to get a list of all merged PR's since a specific tag.
- [ ] Look through all closed issues and PRs of that milestone to see what has changed. Run `./scripts/pr-since-last tag` or if you want to run against a specific tag `./scripts/pr-since-last tag v1.0.3` to get a list of all merged PR's since a specific tag.
- [ ] Create Changelog for this new release
- [ ] Close milestone on Github
- [ ] Create a new release in GitHub for Release Notes.

2
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{
"name": "serverless",
"version": "1.0.3",
"version": "1.1.0",
"dependencies": {
"agent-base": {
"version": "2.0.1",

View File

@ -1,6 +1,6 @@
{
"name": "serverless",
"version": "1.0.3",
"version": "1.1.0",
"engines": {
"node": ">=4.0"
},

12
scripts/prs-since-last-tag Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
last_tag=`git tag | grep "v.*" | sort -n | tail -n 1`
if [ ! -z "$1" ]
then
last_tag=$1
fi
echo $last_tag
git log --grep "Merge pull request" "$last_tag"..HEAD --pretty=full