Skip to content

Commit

Permalink
feat(http3): ✨ Enable both http/2 and http/3 support by default when …
Browse files Browse the repository at this point in the history
…creating a cloudfront distro (#116)

* enable both htt2 and http3 support

* Prettified Code!

* Release version 2.18.0 with new features

Updated to version 2.18.0, adding support for both http/2 and http/3 by default for CloudFront distributions and enabling faster WordPress updates. The changes are documented in the changelog, index.js, and package.json files.

---------

Co-authored-by: chrillep <[email protected]>
  • Loading branch information
chrillep and chrillep authored Sep 23, 2024
1 parent bb89208 commit 16a574f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

## 2.18.0 (2024-04-11)
### Features
* feat(http3): ✨ Enable both http/2 and http/3 support by default when creating a cloudfront distro by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/116
feat(wp update): ✨ fast wp update by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/82

## 2.17.0 (2024-04-11)
### Features
* feat(wp update): ✨ fast wp update by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/82
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { checkLisaVersion } from "./lib/versions.js"
import { generateVaultPass } from "./tasks/trellis.js"

export const program = new Command()
export const LISA_VERSION = "2.17.0"
export const LISA_VERSION = "2.18.0"

resetConf()
checkNodeVersion()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@triggerfishab/lisa-cli",
"version": "2.17.0",
"version": "2.18.0",
"description": "CLI commands to generate a new project based on Lisa",
"main": "./index.js",
"bin": {
Expand Down
1 change: 1 addition & 0 deletions tasks/services/aws.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export async function setupAWS(environment = "production") {
SSLSupportMethod: "sni-only",
MinimumProtocolVersion: "TLSv1.2_2021",
},
HttpVersion: "http2and3",
}

const command = new CreateDistributionWithTagsCommand({
Expand Down

0 comments on commit 16a574f

Please sign in to comment.