release: promote deletion cleanup#263
Conversation
Remove dead dependency declarations, disabled magic-auth endpoints, the duplicate source attachment module, legacy extract text payload support, stale frontend storage migration, and the single-provider LLM adapter seam. The previous code kept compatibility and abstraction surfaces that no longer had a live product path. This keeps the app's proof boundary smaller without adding new behavior. Verified with doctor, pyrefly, mypy, targeted pytest/e2e groups, full non-e2e pytest, and scripts/check-coverage.sh at 100% diff coverage.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedPull request was closed or merged during review 📝 WalkthroughSummary by CodeRabbitRelease Notes
WalkthroughThis PR consolidates the LLM subsystem to Gemini-only by removing the ChangesLLM Gemini-only consolidation
Frontend source panel migration
Auth cleanup, dependency removal, agent-push fix
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ast-grep (0.43.0)public/js/app.jsThanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0fcef05ed9
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| try { | ||
| const u = new URL(trimmed); | ||
| return u.protocol === "http:" || u.protocol === "https:"; | ||
| return (u.protocol === "http:" || u.protocol === "https:") && !isBlockedVideoUrl(trimmed); |
There was a problem hiding this comment.
Restore feedback for blocked video URLs
When a learner enters a YouTube or youtube-nocookie URL, this new predicate keeps the Attach button disabled, but the URL input handler only calls refreshAttachEnabled() and never writes to .overlay-url-feedback. The previous UI showed explicit copy telling users video links are unsupported and to paste notes/transcript text instead; now the control just stays disabled with no explanation, which makes the manual fallback hard to discover.
Useful? React with 👍 / 👎.
Context & Intent
devto production trunk.Implementation Details
0fcef05e: dead dependencies, disabled magic-auth endpoints, duplicate source attachment UI, legacy extract text payload support, stale frontend migration, and the one-provider LLM adapter seam were removed.feat/*branches.MVP / Deployment Risk Check
UX Framework Alignment (For UI/Drill changes)
Verification already passed on PR #262:
bash scripts/doctor.sh.venv/bin/pyrefly check.venv/bin/mypy ..venv/bin/pytest -q --ignore=tests/e2ebash scripts/check-coverage.sh— 100% diff coveragetests/test_agent_push.py -q— 27 passed