Releases: getlift/lift
Releases · getlift/lift
1.15.0
What's Changed
- feat(single-page): add xml to static files regexp by @fargito in #194
- Update CDK to v2 by @fredericbarthelet in #193
Impact of moving to CDK v2
- CloudFront minimum TLS requirements were upgraded from
TLSv1.2_2019
toTLSv1.2_2021
- Drop NodeJS 12 support
Full Changelog: 1.14.0...1.15.0
1.14.0
What's Changed
- New
single-page-app
construct by @adriencaccia in #175.
The existingstatic-website
construct is split into in 2 separate constructs in order to solve #172:single-page-app
dedicated to SPA like React, Vue and Angular application where a dedicatedviewer-response
CloudFront function handles security headers in addition to servingindex.html
for all application subpathstatic-website
existing construct now does not serveindex.html
on application sub-path. Instead the requested file is returned and an error is returned if the file is missing
Note that the existing static-website
construct is unchanged, no breaking changes were introduced.
Full Changelog: 1.13.0...1.14.0
1.13.0
Improvements
- Queue: Add setting for
maximumBatchingWindow
by @jakejscott in #161 - Queue: Add Server-Side encryption setting (#138) by @salemdar in #168
Fixes
New Contributors
- @jakejscott made their first contribution in #161
- @iam4x made their first contribution in #162
- @salemdar made their first contribution in #168
Full Changelog: 1.12.1...1.13.0
1.12.1
What's Changed
- Fix SPA error page behavior (#163 #164) by @adriencaccia in #165
Static websites are now deployed with static website hosting enabled on the S3 bucket. That solves #163 and #164 as well as allows static website generators to work too.
Full Changelog: 1.12.0...1.12.1
1.12.0
What's Changed
- Support Serverless Framework v3 & integrate with the new design by @mnapoli in #131
- use path.posix.join() to avoid issues with OS path separators that co… by @BenMenking in #135
- Simplifications (and test fixes) following new CDK release by @mnapoli in #150
- Queue: Support partial batch failure by @t-richard in #145
New Contributors
- @BenMenking made their first contribution in #135
Full Changelog: 1.11.0...1.12.0
1.11.0
1.10.0
Features
- Drop NodeJS 10 support by @t-richard in #118 (the AWS CDK dropped support as well)
- [Static website] Optimization: create the request function only if
redirectToMainDomain: true
by @t-richard in #117
Bugfixes
Full Changelog: 1.9.1...1.10.0
1.9.1
1.9.0
1.8.0
Websites (static websites and server-side websites) can now redirect requests to a main domain! (thanks @t-richard)
This is useful, for example, to redirect mywebsite.com
to www.mywebsite.com
to avoid duplicated content (which can hurt SEO):
constructs:
website:
...
domain:
- www.mywebsite.com
- mywebsite.com
# New option 👇️
redirectToMainDomain: true
Read more in the documentation.