Compare commits

..

3 Commits

Author SHA1 Message Date
MickLesk dad9c770f2 tools.func: use safe variable expansion in check_for_gh_release RETURN trap 2026-07-01 21:53:51 +02:00
community-scripts-pr-app[bot] 53c72b9a1f Update CHANGELOG.md (#15524)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-01 19:14:15 +00:00
Sam Heinz 34f56866d5 iventoy fix for arm64 (#15521) 2026-07-01 21:13:48 +02:00
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -502,6 +502,10 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- homarr: fix: update-fail [@CrazyWolf13](https://github.com/CrazyWolf13) ([#15512](https://github.com/community-scripts/ProxmoxVE/pull/15512))
- n8n: pin version to 2.27.5 [@tremor021](https://github.com/tremor021) ([#15516](https://github.com/community-scripts/ProxmoxVE/pull/15516))
- #### ✨ New Features
- [arm64] feat: iventory arm64 support [@asylumexp](https://github.com/asylumexp) ([#15521](https://github.com/community-scripts/ProxmoxVE/pull/15521))
## 2026-06-30
### 🚀 Updated Scripts
+2 -2
View File
@@ -2647,9 +2647,9 @@ check_for_gh_release() {
ensure_dependencies jq
local gh_check_json
local gh_check_json=""
gh_check_json=$(mktemp /tmp/tools-gh-check-XXXXXX) || return 73
trap 'rm -f "$gh_check_json"' RETURN
trap 'rm -f "${gh_check_json:-}"' RETURN
# Build auth header if token is available
local header_args=()