Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.20.2 (2025-10-06)
### Fixes
🛠 Bug fix checking of correct ip before accessing the Sendgrid api

## 2.20.1 (2024-11-07)
### Fixes
🛠 Fix faulty item id for aws after changing vaults in 1Password.
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.20.1"
export const LISA_VERSION = "2.20.2"

resetConf()
checkNodeVersion()
Expand Down
2 changes: 1 addition & 1 deletion lib/triggerfish.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function isTriggerfishOfficeIp() {
writeStep(
"Checking if you are in the Triggerfish office (or using the VPN)...",
)
const cidr = "155.4.226.178/28"
const cidr = "155.4.226.176/28"
const ipCorrect = await fetch("https://icanhazip.com/")
.then((response) => response.text())
.then((ip) => cidrSubnet(cidr).contains(ip.trim()))
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.20.1",
"version": "2.20.2",
"description": "CLI commands to generate a new project based on Lisa",
"main": "./index.js",
"bin": {
Expand Down