v8.12.1#1735
Merged
Merged
Conversation
decryptEnterpriseApps with default formatSpecs:true runs specificationFormatter which strips the height field. When imageUpdateService triggers a soft redeploy, the spec (now missing height) is written back to the local DB. The next expireGlobalApplications check treats missing height as expired and force-removes the app mid-reinstall. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…sing static assets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v8.12.1
Patch release bundling two fixes.
🐛 Fixes
Preserve app height during enterprise image update redeploy
decryptEnterpriseApps defaults to formatSpecs: true, which runs specificationFormatter and strips the height field. When imageUpdateService triggered
a soft redeploy, the spec — now missing height — was written back to the local DB. The next expireGlobalApplications check then treated the missing
height as expired and force-removed the app mid-reinstall.
checkForImageUpdates now calls decryptEnterpriseApps with { formatSpecs: false } so the raw spec (including height) is preserved.
Return 404 for file-like URLs in SPA fallback
The catch-all SPA route served index.html for every unmatched route, so requests for missing static assets (e.g. /llms.txt, /ads.txt) returned a
"false 200" containing the SPA shell instead of a proper 404.
The fallback in both app.js and homeServer.js now returns a plain-text 404 for any URL with a file extension, while extensionless routes continue to
serve the SPA shell.
📦 Other
Changes
┌────────────────────────────────────────────┬─────────┐
│ File │ +/− │
├────────────────────────────────────────────┼─────────┤
│ ZelBack/src/services/imageUpdateService.js │ +1 / −1 │
├────────────────────────────────────────────┼─────────┤
│ app.js │ +8 / −1 │
├────────────────────────────────────────────┼─────────┤
│ homeServer.js │ +8 / −1 │
├────────────────────────────────────────────┼─────────┤
│ package.json │ +1 / −1 │
└────────────────────────────────────────────┴─────────┘