diff --git a/CHANGELOG.md b/CHANGELOG.md index e8a6eeb..a8ed5f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] - 2019-9-15 +Thanks @hakimio + +- Add ability to invalidate the CloudFront distribution when deploying the client +- +### Fixed +- Using shared API Gateway #11 + ## [0.6.1] - 2019-7-7 Thanks @haochang @@ -58,7 +66,8 @@ Better support for generating client code on Windows - Initial release -[Unreleased]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.6.1...HEAD +[Unreleased]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.5.8...v0.6.0 [0.5.8]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.5.7...v0.5.8 diff --git a/README.md b/README.md index cf9cdb8..487a3f1 100644 --- a/README.md +++ b/README.md @@ -476,6 +476,18 @@ Use this parameter if you do not want a confirmation prompt to interrupt automat --- +**--invalidate-distribution** + +_optional_, default `false` (creates an invalidation for the CloudFront distribution) + +```bash +serverless client deploy --invalidate-distribution +``` + +Use this parameter if you want to invalidate the CloudFront distribution. An invalidation will be created for the path `/*`. + +--- + ## Maintainers - Andy Hahn - [andrewphahn](https://github.com/andrewphahn) from [_MadSkills.io_](http://madskills.io) diff --git a/package.json b/package.json index c784b54..11098cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fullstack-serverless", - "version": "0.6.1", + "version": "0.7.0", "engines": { "node": ">=4.0" },