docs(changelog): runner enrollment via dashboard, regrouped nav, retry idempotency#79
Merged
Conversation
…y idempotency Jun 04, 2026 entry: enroll runners from the dashboard (Add runner mints a one-time token; fleet list with derived liveness), the regrouped left nav (Operations / Configuration / Organization) with the model settings at /settings/models, the removal of `zombie-runner register`, and the server-5xx idempotency gate on the dashboard + zombiectl HTTP clients. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…-id to Upgrading Greptile review on PR #79: - P1: --host-id removal was missing from the Upgrading migration guide; the Upgrading bullet now lists --token, --host-id, and ZOMBIE_TOKEN. - P2: the CLI section duplicated the Upgrading removal notice with divergent flag lists; the CLI bullet is now a terse cross-reference pointing to Upgrading for the full enrollment flow. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
…rence Headings inside <Update> JSX blocks don't generate resolvable anchors, so [Upgrading](#upgrading) failed the mintlify-link-check lint with a 404. Replaced the link with a plain **Upgrading** above prose reference. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Changelog entry for the M84 work — runner enrollment from the dashboard, the regrouped dashboard navigation, and the Hypertext Transfer Protocol (HTTP) retry-idempotency change. Pairs with usezombie/usezombie#365.
What changed
Jun 04, 2026<Update>block inchangelog.mdx.registereduntil first check-in, not a falseonline)./settings/models.zombie-runner registerand its--token/--host-idflags.GET /v1/fleet/runners(platform-admin only, paginated, never returns the token hash).POST/PATCHsurface failures immediately.Notes
Greptile Summary
This PR adds a single
<Update>block tochangelog.mdxdocumenting three M84 changes: dashboard-based runner enrollment via a one-time token, a regrouped left navigation, and a new rule limiting 5xx retries to idempotent HTTP methods.zombie-runner registerwith a dashboard flow; the Upgrading section now lists all removed flags (--token,--host-id,ZOMBIE_TOKEN) and the newZOMBIE_RUNNER_TOKENvariable; the CLI section cross-references Upgrading without duplication./settings/modelspath.POST/PATCHfailures now surface immediately rather than being retried, with network errors and429/503/504responses unchanged.Confidence Score: 5/5
Documentation-only change; no runtime code is modified.
The PR adds a single changelog block. The content is accurate, internally consistent, matches the existing file conventions, and the previously flagged issues (missing --host-id in Upgrading, CLI/Upgrading duplication) are both addressed in the current version.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[HTTP Request] --> B{Idempotent method?\nGET / PUT / DELETE / HEAD} B -- Yes --> C{Response} B -- No\nPOST / PATCH --> D[Surface error immediately] C -- 5xx server error --> E[Retry] C -- Network error --> E C -- 429 / 503 / 504 --> E C -- 2xx --> F[Success] E --> AReviews (3): Last reviewed commit: "docs(changelog): drop dead #upgrading an..." | Re-trigger Greptile