Skip to content

v0.5.5

Latest

Choose a tag to compare

@github-actions github-actions released this 13 Apr 12:55
· 31 commits to main since this release
90bb1c5

Added

  • Checkpoints v2 (work in progress): --force flag for entire migrate-v2 to rerun migrations that previously completed, and checkpoint_transcript_start support for compact transcript.jsonl files (#885, #877)

Changed

  • Hide entire search command from the menu while it stabilizes (#928)
  • Condensation logic refactored with type-enforced redaction boundaries for safer session data handling (#922)

Fixed

  • Fetch checkpoint refs by URL to avoid polluting origin git config (#934)
  • Support Claude JSON array responses in explain summary generation (#921)
  • GoReleaser using the wrong tag during concurrent releases (#918)

Housekeeping

  • Stabilize flaky Cursor and OpenCode E2E behavior and transcript prep timing (#923)
  • More hermetic separation for Gemini auth config files in E2E tests (#915)
  • Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#920)

⚠️ Important Notice – Git Configuration Issue (CLI v0.5.4)

We identified an issue in Entire CLI v0.5.4 that unintentionally enabled partial clone settings on your repository without explicit consent. This may affect how your repository fetches objects from the remote.

Who is affected?

If you have used Entire CLI v0.5.4, you may be impacted. Check if your repo was affected running the commands below:

git config --get remote.origin.promisor
git config --get remote.origin.partialclonefilter

If these return values, and you haven't enabled partial clones previously, your repository was modified.
If they return nothing, your repository is not affected.

What should you do?

  1. Upgrade to the latest version: Entire CLI v0.5.5
  2. Run the following commands in your repository:
git fetch origin --no-filter
git config --unset remote.origin.promisor
git config --unset remote.origin.partialclonefilter