diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e283a..1935151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/index.js b/index.js index ef4af51..334b81e 100755 --- a/index.js +++ b/index.js @@ -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() diff --git a/lib/triggerfish.js b/lib/triggerfish.js index fc5f1ce..45abff4 100644 --- a/lib/triggerfish.js +++ b/lib/triggerfish.js @@ -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())) diff --git a/package.json b/package.json index fdbfbb7..aba54d7 100644 --- a/package.json +++ b/package.json @@ -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": {