Skip to content

Commit de88d5e

Browse files
committed
feat(catalog): enable auto_update for additional tools
Add auto_update: true to catalog entries for tools that can be safely auto-updated during system audits.
1 parent 47d8251 commit de88d5e

12 files changed

Lines changed: 24 additions & 12 deletions

File tree

catalog/ast-grep.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"x86_64": "x86_64",
1212
"aarch64": "aarch64",
1313
"armv7l": "armv7"
14-
}
14+
},
15+
"auto_update": true
1516
}

catalog/aws.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"display_name": "AWS CLI",
1212
"install_action": "install",
1313
"order": 202
14-
}
14+
},
15+
"auto_update": true
1516
}

catalog/gam.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"github_repo": "GAM-team/GAM",
88
"binary_name": "gam",
99
"version_flag": "version",
10-
"package_name": "gam7"
10+
"package_name": "gam7",
11+
"auto_update": true
1112
}

catalog/golangci-lint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"x86_64": "amd64",
1212
"aarch64": "arm64",
1313
"armv7l": "armv6"
14-
}
14+
},
15+
"auto_update": true
1516
}

catalog/gup.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@
4545
"go",
4646
"package-manager",
4747
"updater"
48-
]
48+
],
49+
"auto_update": true
4950
}

catalog/just.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
},
1515
"tags": [
1616
"core"
17-
]
17+
],
18+
"auto_update": true
1819
}

catalog/parallel.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"binary_name": "parallel",
88
"script": "install_parallel.sh",
99
"ftp_url": "https://ftp.gnu.org/gnu/parallel/",
10-
"notes": "Installed from GNU FTP releases. Installs to ~/.local/bin/parallel."
10+
"notes": "Installed from GNU FTP releases. Installs to ~/.local/bin/parallel.",
11+
"auto_update": true
1112
}

catalog/pip.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@
1212
"dnf": "python3-pip",
1313
"pacman": "python-pip"
1414
},
15-
"notes": "pip typically comes with Python 3. Use python3 -m pip if pip command is not available."
15+
"notes": "pip typically comes with Python 3. Use python3 -m pip if pip command is not available.",
16+
"pinned_version": "never"
1617
}

catalog/pipx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"brew": "pipx",
1212
"dnf": "pipx",
1313
"pacman": "python-pipx"
14-
}
14+
},
15+
"pinned_version": "never"
1516
}

catalog/ruff.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"install_method": "uv_tool",
55
"description": "An extremely fast Python linter and code formatter, written in Rust",
66
"homepage": "https://github.com/astral-sh/ruff",
7-
"package_name": "ruff"
7+
"package_name": "ruff",
8+
"auto_update": true
89
}

0 commit comments

Comments
 (0)