Pin Codex and Headroom releases

This commit is contained in:
Alexandre
2026-07-14 15:03:34 +02:00
parent 78f5289518
commit 652be8b13c
4 changed files with 15 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
## 0.1.0 (14-07-2026) ## 0.144.3 (14-07-2026)
- Initial ChatGPT Codex add-on. - Initial ChatGPT Codex add-on based on Codex `0.144.3`.
- Added a persistent, administrator-only Home Assistant ingress terminal backed by tmux. - Added a persistent, administrator-only Home Assistant ingress terminal backed by tmux.
- Made `headroom wrap codex` the default launch path. - Made `headroom wrap codex` the default launch path.
- Added baked-in RTK with native Codex initialization and savings reporting. - Pinned Headroom `0.31.0` and baked-in RTK `0.43.0` with native Codex initialization and savings reporting.
- Added device-code authentication and direct Codex fallback helpers. - Added device-code authentication and direct Codex fallback helpers.
- Added persistent configuration, GitHub CLI integration, mount support, and safe defaults. - Added persistent configuration, GitHub CLI integration, mount support, and safe defaults.
- Made the default workspace follow a custom `data_location`. - Made the default workspace follow a custom `data_location`.

View File

@@ -9,6 +9,8 @@
ARG BUILD_FROM ARG BUILD_FROM
ARG BUILD_VERSION ARG BUILD_VERSION
ARG BUILD_UPSTREAM="0.144.3"
ARG HEADROOM_VERSION="0.31.0"
ARG RTK_VERSION="v0.43.0" ARG RTK_VERSION="v0.43.0"
ARG RTK_COMMIT="5a7880d404db8364d602f2ecdc41dd790f64013f" ARG RTK_COMMIT="5a7880d404db8364d602f2ecdc41dd790f64013f"
@@ -38,6 +40,8 @@ VOLUME [ "/sys/fs/cgroup" ]
ARG TEMPLATE_BASE_URL="https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates" ARG TEMPLATE_BASE_URL="https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates"
ARG TTYD_VERSION="1.7.7" ARG TTYD_VERSION="1.7.7"
ARG BUILD_UPSTREAM
ARG HEADROOM_VERSION
################## ##################
# 3 Install apps # # 3 Install apps #
@@ -64,7 +68,7 @@ RUN apt-get update && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# Install the official Codex static binary for the target architecture. # Install the pinned official Codex static binary for the target architecture.
RUN set -eux; \ RUN set -eux; \
case "$(dpkg --print-architecture)" in \ case "$(dpkg --print-architecture)" in \
amd64) codex_arch="x86_64" ;; \ amd64) codex_arch="x86_64" ;; \
@@ -74,7 +78,7 @@ RUN set -eux; \
archive="/tmp/codex.tar.gz"; \ archive="/tmp/codex.tar.gz"; \
curl -fsSL --retry 3 --retry-delay 2 \ curl -fsSL --retry 3 --retry-delay 2 \
-o "$archive" \ -o "$archive" \
"https://github.com/openai/codex/releases/latest/download/codex-${codex_arch}-unknown-linux-musl.tar.gz"; \ "https://github.com/openai/codex/releases/download/rust-v${BUILD_UPSTREAM}/codex-${codex_arch}-unknown-linux-musl.tar.gz"; \
tar -xzf "$archive" -C /tmp; \ tar -xzf "$archive" -C /tmp; \
install -m 0755 "/tmp/codex-${codex_arch}-unknown-linux-musl" /usr/local/bin/codex; \ install -m 0755 "/tmp/codex-${codex_arch}-unknown-linux-musl" /usr/local/bin/codex; \
rm -f "$archive" "/tmp/codex-${codex_arch}-unknown-linux-musl"; \ rm -f "$archive" "/tmp/codex-${codex_arch}-unknown-linux-musl"; \
@@ -95,7 +99,7 @@ RUN set -eux; \
COPY --from=rtk-builder /out/rtk /usr/local/bin/rtk COPY --from=rtk-builder /out/rtk /usr/local/bin/rtk
RUN rtk --version && \ RUN rtk --version && \
pip3 install --break-system-packages --no-cache-dir "headroom-ai[proxy,code,mcp]" && \ pip3 install --break-system-packages --no-cache-dir "headroom-ai[proxy,code,mcp]==${HEADROOM_VERSION}" && \
headroom --version headroom --version
ARG MODULES="00-banner.sh 00-global_var.sh 01-custom_script.sh 00-local_mounts.sh 00-smb_mounts.sh 90-dns_set.sh" ARG MODULES="00-banner.sh 00-global_var.sh 01-custom_script.sh 00-local_mounts.sh 00-smb_mounts.sh 90-dns_set.sh"

View File

@@ -65,4 +65,4 @@ slug: chatgpt_codex
tmpfs: true tmpfs: true
udev: true udev: true
url: https://github.com/alexbelgium/hassio-addons url: https://github.com/alexbelgium/hassio-addons
version: "0.1.0" version: "0.144.3"

View File

@@ -1,9 +1,12 @@
{ {
"github_beta": false, "github_beta": false,
"github_fulltag": false,
"github_havingasset": true,
"github_tagfilter": "rust-v",
"last_update": "2026-07-14", "last_update": "2026-07-14",
"repository": "alexbelgium/hassio-addons", "repository": "alexbelgium/hassio-addons",
"slug": "chatgpt_codex", "slug": "chatgpt_codex",
"source": "github", "source": "github",
"upstream_repo": "openai/codex", "upstream_repo": "openai/codex",
"upstream_version": "0.1.0" "upstream_version": "0.144.3"
} }