fix(gitignore): broaden supabase/.temp to match platform subdir#43
Merged
Conversation
The `supabase/.temp/` glob only matches at repo root, but the actual Supabase CLI cache lives at `platform/supabase/.temp/`. The fix landed on the slice 2 branch (commit 356591d) but didn't make it into the squash merge that became #39 on main — so every `supabase status` / `supabase link` was re-creating untracked files locally. Switch to `**/supabase/.temp/` so the rule applies regardless of where the cache directory is rooted. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This was referenced May 13, 2026
trentas
added a commit
that referenced
this pull request
May 14, 2026
Bumps pyproject.toml (1.0.6 → 1.0.7), iris/cli.py:VERSION (v1.0.6 → v1.0.7), and platform/package.json (1.0.6 → 1.0.7). Adds the CHANGELOG entry covering the five fix PRs that landed after the v1.0.6 release as the customer's real Datadog integration came online: - #44 credentials_encrypted BYTEA → TEXT - #45 dedupe DORA events before upsert + cron retries errored integrations - #46 chunk commits .in() to stay under PostgREST URL ceiling - #47 direct-from-tables DORA aggregation + per-repo section - #48 CLI sends remote_url + cron backfills unmatched deploys Plus #43 gitignore fix that was missed by the v1.0.6 squash. Tag v1.0.7 cut from main triggers the Release workflow to build the wheel + publish the GitHub Release, so `iris upgrade` will pick up the fixes (most notably the CLI sending remote_url) on the next run. Co-authored-by: Claude Opus 4.7 (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.
The slice 2 squash merge (#39) dropped the gitignore pattern fix that lived on its branch (commit 356591d). On main, the rule reads `supabase/.temp/` and only matches the repo root, so the actual cache directory at `platform/supabase/.temp/` keeps reappearing as untracked after every `supabase status` / `supabase link`.
Verified locally:
```
$ git check-ignore -v platform/supabase/.temp/cli-latest
.gitignore:34:**/supabase/.temp/ platform/supabase/.temp/cli-latest
```
Tiny one-liner. Ready to merge.
🤖 Generated with Claude Code