Skip to content

docs(m109-001): changelog — CLI logs/credential fixes + approval durability#120

Merged
indykish merged 2 commits into
mainfrom
chore/m109-001-changelog
Jul 3, 2026
Merged

docs(m109-001): changelog — CLI logs/credential fixes + approval durability#120
indykish merged 2 commits into
mainfrom
chore/m109-001-changelog

Conversation

@indykish

@indykish indykish commented Jul 3, 2026

Copy link
Copy Markdown
Contributor

Changelog entry for the user-visible fixes in agentsfleet#473:

  • agentsfleet fleet logs no longer crashes on a malformed timestamp
  • agentsfleet workspace credentials names the real agentsfleet credential group
  • Approval enforcement survives a failed Redis mirror write via a database fallback

🤖 Generated with Claude Code

Greptile Summary

Adds a single <Update> changelog entry documenting three user-visible reliability fixes shipped in agentsfleet#473. The entry is dated Jul 03, 2026 and tagged Fixes / CLI.

  • agentsfleet fleet logs — malformed timestamp no longer throws RangeError; the affected row renders and the stream continues.
  • agentsfleet workspace credentials — help text now points at the real agentsfleet credential command group.
  • Approval enforcement — approval/denial decisions are honored on the fleet lease path even when the Redis mirror write fails, by falling back to the durable database row.

Confidence Score: 5/5

Documentation-only change adding a changelog entry; no runtime code is touched.

The change is a single new <Update> block in the changelog. The prose accurately describes the three fixes, the date matches adjacent entries, and the MDX structure is well-formed. There is nothing here that could affect runtime behavior or introduce regressions.

No files require special attention.

Important Files Changed

Filename Overview
changelog.mdx Adds a new "Fixes" + "CLI" changelog entry for Jul 03, 2026 documenting three bug fixes; content is accurate, formatting is consistent with adjacent entries, and no structural issues remain.

Sequence Diagram

%%{init: {'theme': 'neutral'}}%%
sequenceDiagram
    participant Fleet as Fleet Lease Path
    participant Redis as Redis Mirror
    participant DB as Durable Database

    Fleet->>Redis: Write approval/denial decision
    alt Redis write succeeds
        Redis-->>Fleet: OK
        Fleet->>Fleet: Enforce decision from Redis
    else Redis write fails
        Redis-->>Fleet: Error
        Fleet->>DB: Fallback — read decision from DB
        DB-->>Fleet: Approved / Denied
        Fleet->>Fleet: Enforce decision from DB row
    end
Loading
%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%%
sequenceDiagram
    participant Fleet as Fleet Lease Path
    participant Redis as Redis Mirror
    participant DB as Durable Database

    Fleet->>Redis: Write approval/denial decision
    alt Redis write succeeds
        Redis-->>Fleet: OK
        Fleet->>Fleet: Enforce decision from Redis
    else Redis write fails
        Redis-->>Fleet: Error
        Fleet->>DB: Fallback — read decision from DB
        DB-->>Fleet: Approved / Denied
        Fleet->>Fleet: Enforce decision from DB row
    end
Loading

Reviews (2): Last reviewed commit: "Update changelog.mdx" | Re-trigger Greptile

…bility

User-visible fixes from PR agentsfleet#473: `agentsfleet fleet logs` no longer
crashes on a malformed timestamp, `agentsfleet workspace credentials` names the
real `agentsfleet credential` group, and an approved/denied grant survives a
failed Redis mirror write via a database fallback.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@mintlify

mintlify Bot commented Jul 3, 2026

Copy link
Copy Markdown

Preview deployment for your docs. Learn more about Mintlify Previews.

Project Status Preview Updated (UTC)
agentsfleet 🟢 Ready View Preview Jul 3, 2026, 9:48 AM

💡 Tip: Enable Workflows to automatically generate PRs for you.

Comment thread changelog.mdx
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
@indykish indykish merged commit f36c958 into main Jul 3, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant