diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d9dd3..c4e0dd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.8.0] - 2021-1-28 +Thanks @pecirep, @miguel-a-calles-mba, @superandrew213 + +### Added - Add `invalidationPaths` setting to allow defining custom invalidation paths for the cloudfront distribution - Add `origins` setting to allow adding additional distribution origins in the form of CloudFormation resources +- Add `defaultCacheBehavior` setting to allow adding the default distribution cache behaviors in the form of CloudFormation resources - Add `cacheBehaviors` setting to allow adding additional distribution cache behaviors in the form of CloudFormation resources +- Add `--no-client-deploy` CLI option to skip deploying client code to S3 +### Fixed +- Typos ## [0.7.1] - 2020-3-18 Thanks @artoliukkonen @@ -76,7 +85,8 @@ Better support for generating client code on Windows - Initial release -[Unreleased]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.7.1...HEAD +[Unreleased]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.8.0...HEAD +[0.7.2]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/MadSkills-io/fullstack-serverless/compare/v0.7.0...v0.7.1 [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 diff --git a/README.md b/README.md index ac55c16..03b16d5 100644 --- a/README.md +++ b/README.md @@ -629,6 +629,7 @@ Use this parameter if you do not want to invalidate the CloudFront distribution. - [hakimio](https://github.com/hakimio) - [artoliukkonen](https://github.com/artoliukkonen) - [pecirep](https://github.com/pecirep) +- [pecirep](https://github.com/miguel-a-calles-mba) ## Credits Forked from the [**serverless-api-cloudfront**](https://github.com/Droplr/serverless-api-cloudfront/) diff --git a/package.json b/package.json index 91e378b..b532c6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fullstack-serverless", - "version": "0.7.1", + "version": "0.8.0", "engines": { "node": ">=4.0" },