[pull] main from Open-Legal-Products:main
From the PR description
See Commits and Changes for more details.
Created by pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )
Our analysis
Strengthen workflow data and project loading — read the full analysis →
Think the analysis missed something the PR description covers?
Commits in this PR (6)
| SHA | Subject | Author | Date | |
|---|---|---|---|---|
cfdcda6d | fix(db): add missing chat_messages.workflow column | JJ | 2026-07-16 | ↗ GitHub |
commit bodyUser messages are persisted with a `workflow` field
(backend/src/routes/chat.ts, projectChat.ts) and it is read back when
rendering chat history (ChatView -> UserMessage) to show which workflow a
message was sent under. But the column is never created by schema.sql or any
migration, so every user-message insert fails with PostgREST PGRST204
("Could not find the 'workflow' column of 'chat_messages'") and is dropped
silently (the insert result is not checked). The assistant insert has no
workflow column, so it succeeds - the net effect on a self-hosted install is
that reloading a thread shows the assistant reply but not the user's prompt.
Add the `workflow jsonb` column to schema.sql (fresh installs) and a
migration (existing installs), mirroring the adjacent content/files jsonb
columns.
| ||||
4039b949 | test: minimal vitest harness for backend and frontend | QA Runner | 2026-07-20 | ↗ GitHub |
commit bodyPorted from amal66/mike#24 onto current main; lockfiles regenerated against this tree. Adds vitest as a dev dependency with a `test` script in both packages, excludes test files from the backend tsc build, and seeds one suite per package (backend: downloadTokens, 12 tests; frontend: cn() utils, 8 tests). Verified locally: backend 12/12, frontend 8/8 passing. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> | ||||
0843e290 | Merge pull request #212 from jmooves/upstream-pr/chat-messages-workflow-column | cosimoastrada | 2026-07-21 | ↗ GitHub |
fix(db): add missing chat_messages.workflow column (user prompts dropped on reload) | ||||
36cddb25 | fix: batch directory-modal project fetch instead of N+1 getProject burst | QA Runner | 2026-07-20 | ↗ GitHub |
commit bodyEvery directory picker (AddDocumentsModal, UseWorkflowModal, the assistant
project selector) loads its "Projects" tab through useDirectoryData, which
fired one GET /projects/:id for EVERY existing project the moment the modal
opened. Each of those requests costs an auth verification against GoTrue
plus ~6 PostgREST queries, so an account with N projects produced an
~8xN-request burst on the Supabase gateway per modal open.
Under that burst the gateway genuinely falls over: measured locally against
the Supabase CLI stack, overlapping modal-open storms drove GoTrue into
Postgres connection exhaustion ("failed to connect ... context deadline
exceeded") and produced 467x 500 + 641x 504 on /auth/v1/user in a single
run - surfacing to users as failed project creates/loads, and to the e2e
suite as the intermittent Kong 502s its specs currently retry around.
Fix: GET /projects now accepts ?include=documents and returns each
project's documents from one batched query (same attach helpers as
GET /projects/:id, run once across all documents), and useDirectoryData
uses it. A modal open is now 1 API request and a fixed number of DB
queries regardless of project count. After the change the same storm
harness produced zero 5xx and zero auth failures.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
| ||||
8a34a645 | Merge pull request #228 from amal66/olp-pr/test-harness | cosimoastrada | 2026-07-21 | ↗ GitHub |
[Testing 05] test: minimal vitest harness for backend and frontend | ||||
eda088e1 | Merge pull request #238 from amal66/olp-pr/directory-fetch-storm | Will Chen | 2026-07-21 | ↗ GitHub |
[Fix 01] Batch the directory modal's project fetch (N+1 getProject storm) | ||||
Capture this PR into my fork
Download a Markdown prompt that tells Claude how to port every
commit in this PR into your working tree. Run it via
claude -p < capture-pull-6.md from
inside the repo you want the changes in.