chore: prep v0.6.0 changelog and gitignore Claude Code state#123
Merged
ojongerius merged 1 commit intomainfrom May 2, 2026
Merged
chore: prep v0.6.0 changelog and gitignore Claude Code state#123ojongerius merged 1 commit intomainfrom
ojongerius merged 1 commit intomainfrom
Conversation
- .gitignore: skip session-local files (settings.local.json, scheduled_tasks.lock, worktrees/) so the release script's clean-tree precondition holds. Project-level settings.json and hooks/ remain tracked. - CHANGELOG: populate [Unreleased] with the ar_query_receipts fixes/additions/breaking change from #119, plus three Known Limitations links to the SDK-level cap (agent-receipts/ar#300) and follow-ups #121, #122.
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
Prep PR for the v0.6.0 release. Lands the CHANGELOG entry and an unrelated-but-blocking
.gitignorepatch soscripts/release.shcan run cleanly afterward.Why this is a separate PR
scripts/release.shrequires (a) clean working tree and (b) local main not ahead of origin. With branch protection onmain, neither prep commits nor the release commit itself can be pushed directly. Same pattern PR #117 used for v0.5.0: land CHANGELOG additions in a regular PR, then run the release script on a clean main.What's in here
.gitignore— ignore three Claude Code local-session paths (settings.local.json,scheduled_tasks.lock,worktrees/). Project-level.claude/settings.jsonand.claude/hooks/remain tracked.CHANGELOG.md— populate[Unreleased]with the changes from fix(tools): add timestamp/chain filters and newest-first ordering to ar_query_receipts #119:ar_query_receiptsdefaults to current session's chain (useall_chains: trueto opt out)timestamp_afterno longer dropped, newest-first ordering,limitclampingchain_id/timestamp_after/timestamp_before/all_chainsfilters;chain_idin result objects; polling guidance in tool descriptionNo code changes.
Next step
After this merges, run
scripts/release.sh minoron a fresh main checkout to produce the actual v0.6.0 release PR.Test plan