From 0130139ebd4408801aaa3091a1e65ca70647a130 Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Wed, 23 Oct 2019 12:18:24 +0200 Subject: [PATCH 1/2] Bump dependencies --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index c73e4cb33..274af88c8 100644 --- a/package.json +++ b/package.json @@ -89,17 +89,17 @@ }, "devDependencies": { "@serverless/eslint-config": "^1.2.0", - "@serverless/test": "^2.3.0", + "@serverless/test": "^2.4.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "child-process-ext": "^2.1.0", "cli-progress-footer": "^1.1.1", - "coveralls": "^3.0.6", + "coveralls": "^3.0.7", "eslint": "^6.5.1", "eslint-plugin-import": "^2.18.2", "git-list-updated": "^1.2.1", "log": "^6.0.0", - "mocha": "^6.2.1", + "mocha": "^6.2.2", "mocha-lcov-reporter": "^1.3.0", "mock-require": "^3.0.3", "nyc": "^14.1.1", @@ -109,15 +109,15 @@ "sinon": "^7.5.0", "sinon-chai": "^3.3.0", "strip-ansi": "^5.2.0", - "ws": "^7.1.2" + "ws": "^7.2.0" }, "dependencies": { - "@serverless/cli": "^1.2.3", + "@serverless/cli": "^1.4.0", "@serverless/enterprise-plugin": "^3.1.2", "archiver": "^1.3.0", "async": "^1.5.2", - "aws-sdk": "^2.545.0", - "bluebird": "^3.7.0", + "aws-sdk": "^2.554.0", + "bluebird": "^3.7.1", "cachedir": "^2.2.0", "chalk": "^2.4.2", "ci-info": "^1.6.0", From b91c382308ec7ef6cca59da51caa0fa0314ef83c Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Wed, 23 Oct 2019 12:30:03 +0200 Subject: [PATCH 2/2] Release v1.55.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73414341f..8d238b713 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +# 1.55.0 (2019-10-23) + +- [Allow empty arrays in overrides](https://github.com/serverless/serverless/pull/6813) +- [Make question mark available as variables fallback](https://github.com/serverless/serverless/pull/6808) +- [Improve plugins resolution and initialization flow](https://github.com/serverless/serverless/pull/6814) +- [Azure Python template](https://github.com/serverless/serverless/pull/6822) +- [Chore - stop using deprecated 'new Buffer()' method.](https://github.com/serverless/serverless/pull/6829) +- [AWS - adding naming function for S3 compiled template file name.](https://github.com/serverless/serverless/pull/6828) +- [Span docs! and full `serverless_sdk` docs](https://github.com/serverless/serverless/pull/6809) +- [Fix perms with several CloudWatch log subscriptions](https://github.com/serverless/serverless/pull/6827) +- [Fixing an Azure docs broken link](https://github.com/serverless/serverless/pull/6838) +- [Adding note to Azure nodejs template](https://github.com/serverless/serverless/pull/6839) +- [Updated Azure Functions documentation](https://github.com/serverless/serverless/pull/6840) +- [Support for NotAction and NotResource in IAM role statements](https://github.com/serverless/serverless/pull/6842) +- [added frontmatter to sdk docs](https://github.com/serverless/serverless/pull/6845) +- [Setup completion via CLI command and interactive CLI step](https://github.com/serverless/serverless/pull/6835) +- [Upgrade gradle version](https://github.com/serverless/serverless/pull/6855) +- [Update Google provider documentation for functions](https://github.com/serverless/serverless/pull/6854) +- [SNS integration tests](https://github.com/serverless/serverless/pull/6846) +- [SQS integration tests](https://github.com/serverless/serverless/pull/6847) +- [Streams integration tests](https://github.com/serverless/serverless/pull/6848) +- [Improvements on SQS docs as suggested on #6516](https://github.com/serverless/serverless/pull/6853) +- [Schedule integration tests](https://github.com/serverless/serverless/pull/6851) +- [Update event documentation](https://github.com/serverless/serverless/pull/6857) +- [Upgrade groovy/gradle/plugin versions and dependencies (aws-groovy-gradle)](https://github.com/serverless/serverless/pull/6862) +- [Upgrade gradle/plugins version and dependencies (aws-clojure-gradle)](https://github.com/serverless/serverless/pull/6861) +- [IoT integration tests](https://github.com/serverless/serverless/pull/6837) +- [Update https-proxy-agent dependency](https://github.com/serverless/serverless/pull/6866) +- [Allow to use Ref in stream arn property](https://github.com/serverless/serverless/pull/6856) +- [Add Tests for resolveFilePathsFromPatterns()](https://github.com/serverless/serverless/pull/6825) +- [Integration tests improvements and fixes](https://github.com/serverless/serverless/pull/6867) +- [Honor cfnRole in custom resources](https://github.com/serverless/serverless/pull/6871) + +## Meta + +- [Comparison since last release](https://github.com/serverless/serverless/compare/v1.54.0...v1.55.0) + # 1.54.0 (2019-10-09) - [Fixing typos in variable names](https://github.com/serverless/serverless/pull/6746) diff --git a/package.json b/package.json index 274af88c8..a23069b4b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless", - "version": "1.54.0", + "version": "1.55.0", "engines": { "node": ">=6.0" },