Commit Graph

69 Commits

Author SHA1 Message Date
MacRimi
d25faedc2b Rebuild AppImage with actual Next.js 15.1.9 + always reconcile node_modules
The previous bump commit (2f24de25) shipped a binary that still carried
Next.js 15.1.6 in the bundled chunks even though AppImage/package.json
was at 15.1.9. Root cause: build_appimage.sh only ran `npm install`
when `node_modules` did not exist; on the .50 build host node_modules
had been cached since the 1.2.1 build cycle, so the bump was silently
ignored and the build re-used the stale tree.

Fix the script: always run `npm install --legacy-peer-deps` on every
build. npm reconciles against the lockfile in under a second when
everything is already in sync, so the change is free on a warm tree
and correct on a stale one.

Rebuild from a clean node_modules on .50, redeploy to all four hosts
(SHA 4602b8d4aa130c6f...), runtime grep confirms the bundle now
contains 15.1.9 with no traces of 15.1.6 left. Same architecture and
threat model as before — Flask serves the static export on :8008,
no Next.js runtime — but the version banner now matches the lockfile.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-01 22:37:44 +02:00
MacRimi
4f3750a8ab Fix CI: add pagefind to web devDeps + portable AppImage cache path
Two regressions surfaced after the 1.2.2 release merge to main, both
in workflows that auto-trigger on push to main:

* Deploy to GitHub Pages — build failed with `pagefind: not found`
  (exit 127) after Next.js prerendered all 241 routes. pagefind was
  not declared in web/package.json; the local build only worked
  because the project root had its own package.json with pagefind
  as a devDep (the one we just gitignored in the previous commit).
  Add `pagefind: ^1.5.2` to web/package.json devDependencies and
  regenerate web/package-lock.json so `npm ci` in CI puts the
  binary at web/node_modules/.bin/pagefind.

* Build ProxMenux Monitor AppImage — failed at the first step with
  `mkdir: cannot create directory '/var/cache/proxmenux-build':
  Permission denied`. The cache path was hardcoded to /var/cache/,
  which is writable when the script runs as root (the .50 host
  manual build) but not as the unprivileged GitHub Actions runner.
  Switch to `${XDG_CACHE_HOME:-$HOME/.cache}/proxmenux-build/` —
  works identically in both environments.

Verified locally: `cd web && npm ci && npm run build` produces 2804
files in out/, 231 pages indexed by pagefind, root redirect intact.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-31 13:34:30 +02:00
MacRimi
4b934db7db Update AppImage 1.2.1.3 2026-05-23 21:27:18 +02:00
MacRimi
2f919de9e3 update beta ProxMenux 1.2.1.1-beta 2026-05-09 18:59:59 +02:00
MacRimi
54eab9af49 Update notification service 2026-03-30 18:53:03 +02:00
MacRimi
839a20df97 Update notification service 2026-03-26 19:05:11 +01:00
MacRimi
66892f69ce Update notification service 2026-03-25 23:30:00 +01:00
MacRimi
cdc2d7bbcb update notification service 2026-03-25 23:13:11 +01:00
MacRimi
8b6755d866 Update notification service 2026-03-25 22:43:42 +01:00
MacRimi
6da20aab05 update notification service 2026-03-25 22:14:38 +01:00
MacRimi
68872d0e06 Update notification service 2026-03-25 20:12:08 +01:00
MacRimi
6c2b03ae76 Update notification service 2026-03-25 19:21:37 +01:00
MacRimi
1dbb59bc3f Update notification service 2026-03-21 18:53:35 +01:00
MacRimi
e5e6c00100 Update notification service 2026-03-20 23:40:17 +01:00
MacRimi
0cb8900374 Update notification service 2026-03-17 14:07:47 +01:00
MacRimi
602afc2954 Update jwt 2026-03-15 20:43:05 +01:00
MacRimi
b7203b8219 update simple_jwt 2026-03-15 20:00:10 +01:00
MacRimi
513774bb7b Update SSL WebSocket 2026-03-15 19:04:35 +01:00
MacRimi
af61d145da Update oci manager 2026-03-15 17:59:47 +01:00
MacRimi
2c18f6d975 update oci manager 2026-03-12 23:37:21 +01:00
MacRimi
b4a2e5ee11 Create oci manager 2026-03-12 21:30:44 +01:00
MacRimi
52a4b604dd Update notification service 2026-02-27 23:49:26 +01:00
MacRimi
3c64ee7af2 Update notification service 2026-02-27 23:45:18 +01:00
MacRimi
34d04e57dd Update notification service 2026-02-18 17:24:26 +01:00
MacRimi
f07e8cfe14 Update security 2026-02-08 13:19:24 +01:00
MacRimi
ca13d18d7d Update backend monitor 2026-01-29 18:27:36 +01:00
MacRimi
a20d61037e Update backend monitor 2026-01-29 17:47:10 +01:00
MacRimi
bb7dacea91 Update AppImage 2025-11-30 16:02:44 +01:00
MacRimi
0eebb77438 Update AppImage 2025-11-27 11:58:20 +01:00
MacRimi
55c74e8891 Update AppImage 2025-11-26 17:36:23 +01:00
MacRimi
cff2c12d70 Update build_appimage.sh 2025-11-21 18:53:30 +01:00
MacRimi
5781d532a4 Update build_appimage.sh 2025-11-21 18:47:56 +01:00
MacRimi
23280fd97b Update AppImage 2025-11-21 18:32:10 +01:00
MacRimi
1d47ad0c4b Update AppImage 2025-11-13 16:58:45 +01:00
MacRimi
ae62196dff Update AppImage 2025-11-09 20:52:39 +01:00
MacRimi
a75aad1fdc Update build_appimage.sh 2025-11-09 17:34:11 +01:00
MacRimi
ce44538240 Update AppImage 2025-11-07 21:07:33 +01:00
MacRimi
f064cc89ba Update AppImage 2025-11-07 20:55:00 +01:00
MacRimi
e6fe4a09e5 Update AppImage 2025-11-04 22:28:42 +01:00
MacRimi
fecbdf6190 Update build_appimage.sh 2025-11-04 21:32:14 +01:00
MacRimi
8abef33840 Update build_appimage.sh 2025-11-04 17:37:32 +01:00
MacRimi
e6400918c8 Update AppImage 2025-10-29 20:57:06 +01:00
MacRimi
ba84dce7a7 Update build_appimage.sh 2025-10-29 20:29:43 +01:00
MacRimi
7044725bf1 Update AppImage 2025-10-29 20:27:39 +01:00
MacRimi
1812966fe6 Update AppImage 2025-10-29 20:22:55 +01:00
MacRimi
5ee3cc6712 Update build_appimage.sh 2025-10-06 17:00:52 +02:00
MacRimi
5ad3d5697e Update build_appimage.sh 2025-10-06 16:54:12 +02:00
MacRimi
874ab093d5 Update AppImage 2025-10-06 16:40:14 +02:00
MacRimi
fb668859b0 Update build_appimage.sh 2025-10-06 14:53:10 +02:00
MacRimi
154b6b9f74 Update AppImage 2025-10-06 14:12:28 +02:00