Skip to content

Releases: getlift/lift

1.15.0

28 Apr 11:58
7b1a3f7
Compare
Choose a tag to compare

What's Changed

Impact of moving to CDK v2

  • CloudFront minimum TLS requirements were upgraded from TLSv1.2_2019 to TLSv1.2_2021
  • Drop NodeJS 12 support

Full Changelog: 1.14.0...1.15.0

1.14.0

04 Apr 09:08
9aed002
Compare
Choose a tag to compare

What's Changed

  • New single-page-app construct by @adriencaccia in #175.
    The existing static-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 dedicated viewer-response CloudFront function handles security headers in addition to serving index.html for all application subpath
    • static-website existing construct now does not serve index.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

18 Mar 14:54
e8c6808
Compare
Choose a tag to compare

Improvements

Fixes

  • Queue: allow retrying more than 10 jobs by @iam4x in #162

New Contributors

Full Changelog: 1.12.1...1.13.0

1.12.1

07 Feb 13:24
0d164da
Compare
Choose a tag to compare

What's Changed

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

27 Jan 15:58
Compare
Choose a tag to compare

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

Full Changelog: 1.11.0...1.12.0

1.11.0

02 Nov 10:24
d0a5ba7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.10.0...1.11.0

1.10.0

19 Oct 09:41
1c2a241
Compare
Choose a tag to compare

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

  • [Static website] Stop silent fail on s3 deleteObjects by @fargito in #115

Full Changelog: 1.9.1...1.10.0

1.9.1

01 Oct 12:05
35208c2
Compare
Choose a tag to compare

#99, #108 Allow using Docker images as queue handlers

1.9.0

16 Sep 09:45
449d23b
Compare
Choose a tag to compare

#88 Support SQS FIFO queues by @AndrewBarba

Example:

constructs:
    myqueue:
        type: queue
        worker:
            handler: worker.handler
        fifo: true

1.8.0

15 Sep 09:44
7dd76c7
Compare
Choose a tag to compare

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.