docs(changelog): backpressure, shared SSE fan-out, graceful drain release#84
Merged
Merged
Conversation
…ease New Jun 11 entry for the API hardening release: in-flight 429 ceiling with rate-limit headers, Server-Sent Events (SSE) stream cap + 503, shared per-instance Redis subscription fan-out with drop-oldest queues, bounded shutdown drain, operator stream listing, signing-key-rotation auth fix, runner lease-deadline kill fix, tear-free telemetry writes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
…greptile P2) The terminology guide reserves "agent" for the product noun; bare "zombie" survives only in brand/code tokens (route paths, metric names), which this bullet keeps untouched. Co-Authored-By: Claude Fable 5 <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.
Summary
New Jun 11 changelog entry for the usezombie API hardening release (VERSION 0.38.0): in-flight 429 ceiling with rate-limit headers, Server-Sent Events (SSE) stream cap + 503, shared per-instance Redis subscription fan-out with drop-oldest queues, bounded shutdown drain, operator stream listing, signing-key-rotation auth fix, runner lease-deadline kill fix, tear-free telemetry writes.
Pairs with agentsfleet/agentsfleet#393 — merge after (or together with) that PR so the changelog never leads the code.
🤖 Generated with Claude Code
Greptile Summary
Adds a new
<Update>block for Jun 11, 2026 documenting the 0.38.0 API hardening release: in-flight request ceiling with429/Retry-After, per-instance SSE stream cap with503, shared Redis subscription fan-out, bounded shutdown drain, signing-key rotation fix, and runner lease-deadline kill fix.zombie_sse_*metrics,/v1/zombies/{id}/…paths) are correctly left in place.MMM DD, YYYY), sentence-case headings, and code-formatted env vars all conform to the AGENTS.md style guide.Confidence Score: 5/5
Documentation-only change adding a single changelog entry; no code, schema, or configuration is modified.
The change is a single Update block in a Mintlify MDX file. Terminology, section order, date format, and code-token exemptions all conform to the style guide. The previously flagged bare product-noun was fixed in the head commit. No functional code is touched.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant Client participant API participant SSEHub participant Redis Note over API: in-flight >= API_MAX_IN_FLIGHT_REQUESTS Client->>API: POST /v1/... API-->>Client: "429 Retry-After + X-RateLimit-* (UZ-API-001)" Note over API: SSE streams >= SSE_MAX_STREAMS Client->>API: "GET /v1/zombies/{id}/events/stream" API-->>Client: 503 Retry-After (UZ-API-002) Note over API: Normal SSE fan-out (shared subscription) Client->>API: "GET /v1/zombies/{id}/events/stream" API->>SSEHub: Join per-instance hub SSEHub->>Redis: One shared subscription (if not already open) Redis-->>SSEHub: Agent frames SSEHub-->>Client: SSE frames (bounded per-viewer queue) Note over API: Shutdown drain API->>SSEHub: Reject new streams, wake live ones SSEHub-->>Client: Stream closed (bounded window)Reviews (2): Last reviewed commit: "docs(changelog): zombie -> agent product..." | Re-trigger Greptile
Context used: