Skip to content

Commit 8089023

Browse files
authored
feature/op vault (#118)
* update id of vault in 1password * update changelog and version
1 parent bd7e3a4 commit 8089023

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.20.0 (2024-11-06)
2+
### Fixes
3+
🛠 Fix faulty item id after changing vaults in 1Password.
4+
15
## 2.19.0 (2024-10-02)
26
### Features
37
* feat(sendgrid): ✨ Update checking of correct ip before accessing the Sendgrid api

index.js

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

2929
export const program = new Command()
30-
export const LISA_VERSION = "2.19.0"
30+
export const LISA_VERSION = "2.20.0"
3131

3232
resetConf()
3333
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.19.0",
3+
"version": "2.20.0",
44
"description": "CLI commands to generate a new project based on Lisa",
55
"main": "./index.js",
66
"bin": {

tasks/services/godaddy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function createGoDaddyDnsRecord(recordData) {
5151
async function getCredentials() {
5252
try {
5353
return await exec(
54-
`op item get l2i57yslyjfr5jsieew4imwxgq --fields label="godaddy.api key",label="godaddy.api secret"`,
54+
`op item get uhfxs25bmpaqk24fay4wz7qsie --fields label="godaddy.api key",label="godaddy.api secret"`,
5555
).then((res) => res.stdout.trim().split(","))
5656
} catch (error) {
5757
writeError(`Failed accessing 1Password. \n ${error}`)

tasks/services/kinsta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { writeError, writeSuccess } from "../../lib/write.js"
88
async function createKinstaSite() {
99
try {
1010
const [apiKey, companyId] = await exec(
11-
"op item get l2i57yslyjfr5jsieew4imwxgq --fields label='kinsta.api key',label='kinsta.company id'",
11+
"op item get uhfxs25bmpaqk24fay4wz7qsie --fields label='kinsta.api key',label='kinsta.company id'",
1212
).then((res) => res.stdout.trim().split(","))
1313

1414
const projectName = await askForProjectName(

tasks/services/sendgrid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function setupSendgridAccount() {
1818
writeStep("Creating Sendgrid subuser")
1919
try {
2020
apiKey = await exec(
21-
`op item get l2i57yslyjfr5jsieew4imwxgq --fields label="sendgrid.api key"`,
21+
`op item get uhfxs25bmpaqk24fay4wz7qsie --fields label="sendgrid.api key"`,
2222
).then((res) => res.stdout.trim())
2323
} catch (error) {
2424
writeError(`Failed accessing 1Password. \n ${error}`)

0 commit comments

Comments
 (0)