Skip to content

Commit 875f3ca

Browse files
authored
Release/v2.16.0 (#110)
* prep v2.16.0 * Update to version 2.16.0 with new features and documentation updates This commit updates the project version to 2.16.0 and adds new features related to composer.json settings and .vault_pass generation. Also, some improvements have been made to the documentation, including a new Table of Contents and an additional detail section about .vault_pass file generation.
1 parent 3f3d2aa commit 875f3ca

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.16.0 (2024-02-08)
2+
### Features
3+
* feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73
4+
* feat(vault): ✨ Add command for generating .vault_pass by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/100
5+
16
## 2.15.7 (2023-11-08)
27
### Features
38
✨ Add custom tags (cost allocation tags) to S3 buckets and CloudFront distribution. This will allow us to see cost per bucket and distributions.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The features that is included now is the following:
1010
* Create a development database
1111
* Add all the config needed to be able to deploy the site to Kinsta with Trellis
1212

13+
## 📚 Table Of Contents
1314
## 🔧 Prerequisites
1415
You will need to install and configure the following stuff to use Lisa CLI:
1516
* [Node](https://nodejs.org/en/) version >= 12
@@ -22,6 +23,7 @@ You will need to install and configure the following stuff to use Lisa CLI:
2223
* [AWS CLI](https://aws.amazon.com/cli/) version >= 2.4
2324
* [1Password CLI](https://developer.1password.com/docs/cli) version >= 2.18
2425

26+
2527
## 🪚 Installation
2628
```npm i -g @triggerfishab/lisa-cli```
2729

@@ -252,3 +254,18 @@ Example: `lisa s3 bucket set-lifecycle-policy`
252254

253255
 
254256

257+
### `vault-pass-generate`
258+
Generate a new .vault_pass file for the project.
259+
<details>
260+
<summary>Read more</summary>
261+
<p>
262+
This command will generate a new .vault_pass file for the project. This is used to encrypt and decrypt the vault files in the project.
263+
264+
Example:
265+
```sh
266+
lisa vault-pass-generate
267+
```
268+
</p>
269+
</details>
270+
271+
&nbsp;

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { checkLisaVersion } from "./lib/versions.js"
2929
import { generateVaultPass } from "./tasks/trellis.js"
3030

3131
export const program = new Command()
32-
export const LISA_VERSION = "2.15.7"
32+
export const LISA_VERSION = "2.16.0"
3333

3434
resetConf()
3535
checkNodeVersion()

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@triggerfishab/lisa-cli",
3-
"version": "2.15.7",
3+
"version": "2.16.0",
44
"description": "CLI commands to generate a new project based on Lisa",
55
"main": "./index.js",
66
"bin": {

0 commit comments

Comments
 (0)