Trevin Chow
a2ddf47650
refactor(anon-chat): route upload through anonymousChatApiService
...
Fixes #1245 . Deduplicate the anonymous-chat file upload request, which
was inlined verbatim in DocumentsSidebar.tsx and free-composer.tsx
while anonymousChatApiService.uploadDocument already existed.
Key change: service now returns a discriminated result instead of
throwing on 409. Callers need to distinguish 409 (quota exceeded, ->
gate to login) from other non-OK responses (real errors, -> throw).
export type AnonUploadResult =
| { ok: true; data: { filename: string; size_bytes: number } }
| { ok: false; reason: "quota_exceeded" };
Both call sites now do:
const result = await anonymousChatApiService.uploadDocument(file);
if (!result.ok) {
if (result.reason === "quota_exceeded") gate("upload more documents");
return;
}
const data = result.data;
Dropped the BACKEND_URL import in both files (no longer used). Verified
zero remaining /api/v1/public/anon-chat/upload references in
surfsense_web/.
2026-04-23 03:26:42 -07:00
Rohan Verma
7245ab4046
Merge pull request #1294 from CREDO23/feature/mcp-migration
...
Build and Push Docker Images / tag_release (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Blocked by required conditions
[FEAT] Live connector tools via MCP OAuth and native APIs
2026-04-22 21:00:28 -07:00
CREDO23
b6c506abef
fix: treat all Gmail/Calendar as live connectors, hide indexing UI
2026-04-22 22:51:28 +02:00
CREDO23
9977f9b641
remove dead indexing tasks and fix silent schedule breakage for live connectors
2026-04-22 21:43:51 +02:00
Rohan Verma
f5376f2b55
Merge pull request #1293 from AnishSarkar22/fix/resume-page-limit
...
Build and Push Docker Images / tag_release (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Blocked by required conditions
fix: implement resume page limit functionality
2026-04-22 12:23:45 -07:00
CREDO23
0eae96bffb
fix: harden MCP OAuth and connector edge cases
2026-04-22 20:54:42 +02:00
CREDO23
01153b0d7e
fix: cache TokenEncryption, clear stale router caches on re-init
2026-04-22 20:24:45 +02:00
CREDO23
a1d03da896
fix: encrypt tokens at rest, invalidate cache on refresh, clean up logging
2026-04-22 20:08:19 +02:00
CREDO23
4915675f45
Merge upstream/dev into feature/mcp-migration
2026-04-22 19:53:26 +02:00
CREDO23
a4134f1f03
fix alembic migration version numbering
2026-04-22 19:00:27 +02:00
CREDO23
9452d1090a
replace broken native Jira/Linear tools with MCP equivalents
2026-04-22 18:57:49 +02:00
CREDO23
f2d9e67ac2
add multi-account MCP tool disambiguation with prefix namespacing
2026-04-22 18:57:43 +02:00
CREDO23
9eb54bc4af
add account metadata discovery and connected_accounts tool
2026-04-22 18:57:26 +02:00
Anish Sarkar
8ca4465a50
fix: adjust spacing in resume template for highlights
2026-04-22 19:24:30 +05:30
Anish Sarkar
8b67d5416e
docs: update resume template guidelines for skills sections
2026-04-22 18:46:55 +05:30
Anish Sarkar
144e513068
feat: implement resume page limit functionality
2026-04-22 18:46:17 +05:30
DESKTOP-RTLN3BA\$punk
b067c92b4c
Merge commit ' f02909e378' into dev
Build and Push Docker Images / tag_release (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Blocked by required conditions
2026-04-22 04:04:41 -07:00
DESKTOP-RTLN3BA\$punk
435406c302
temp(hotpatch): block github_coplot custom provider
2026-04-22 04:04:08 -07:00
CREDO23
a4bc621c2a
uniform connector UX across all connector types
2026-04-22 11:22:04 +02:00
CREDO23
dfa40b8801
fix MCP OAuth for all 5 services, add MCP connector edit view
2026-04-22 10:50:43 +02:00
Rohan Verma
f02909e378
Merge pull request #1291 from MODSetter/dev
...
fix: agent runtime issues
2026-04-22 01:22:28 -07:00
CREDO23
dde1948a5c
fix Slack MCP OAuth: v2 endpoint, user_scope param, nested token extraction
2026-04-22 10:06:12 +02:00
DESKTOP-RTLN3BA\$punk
80d3f624d4
chore: linting
2026-04-22 01:05:31 -07:00
Rohan Verma
c85c3a438e
Merge pull request #1290 from MODSetter/dev_mod
...
fix: agent runtime bugs
2026-04-22 01:00:24 -07:00
DESKTOP-RTLN3BA\$punk
9b56d45157
Merge commit ' 4356a2499b' into dev
2026-04-22 00:59:04 -07:00
CREDO23
970f62278b
revert scope_param, use standard scope for Slack v2_user endpoint
2026-04-22 09:56:18 +02:00
DESKTOP-RTLN3BA\$punk
95de0547f4
feat: add default API base URLs for LiteLLM providers and enhance fallback handling in LLMRouterService
2026-04-22 00:56:05 -07:00
CREDO23
820326e3ee
use user_scope param for Slack OAuth
2026-04-22 09:54:16 +02:00
CREDO23
3638d72b29
restore full Slack MCP scopes for all MCP tools
2026-04-22 09:41:19 +02:00
CREDO23
225236e6f1
add required OAuth scopes for Slack MCP
2026-04-22 09:35:15 +02:00
CREDO23
0cc2475f6b
add required OAuth scopes for Airtable MCP
2026-04-22 09:21:19 +02:00
CREDO23
2f4052aa71
use pre-configured credentials for Airtable MCP OAuth
2026-04-22 09:15:06 +02:00
CREDO23
c277b6c121
skip indexing config dialog for non-indexable connectors
2026-04-22 09:01:35 +02:00
CREDO23
ea3508cb25
use native connector types for MCP OAuth, restore original UI
2026-04-22 08:57:28 +02:00
CREDO23
940889c291
fix open redirect, error leaking, unused imports, state validation
2026-04-22 08:42:38 +02:00
DESKTOP-RTLN3BA\$punk
bd2d6c07ff
fix: summarization middleware usage
2026-04-21 22:13:41 -07:00
Rohan Verma
4356a2499b
Merge pull request #1289 from MODSetter/dev
...
Build and Push Docker Images / tag_release (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Blocked by required conditions
fix: docker zerocache issues
2026-04-21 21:02:02 -07:00
Rohan Verma
5353d4587f
Merge pull request #1287 from AnishSarkar22/fix/docker-host-gateway
...
Build and Push Docker Images / tag_release (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web) (push) Blocked by required conditions
feat: add internal backend URL configuration, internal host gateway & Ollama docs
2026-04-21 20:55:45 -07:00
CREDO23
e676ebfabe
remove live connectors from AUTO_INDEX_DEFAULTS
2026-04-21 21:52:54 +02:00
CREDO23
0ab7d6a5e3
set is_indexable=False for all live connector add routes
2026-04-21 21:52:43 +02:00
CREDO23
53a173a8fd
guard manual indexing for live connectors
2026-04-21 21:52:23 +02:00
CREDO23
328219e46f
disable first-run indexing for live connectors
2026-04-21 21:52:17 +02:00
CREDO23
5ff0ec5d5d
disable periodic indexing for live connectors
2026-04-21 21:51:40 +02:00
CREDO23
8b8c9b1f5d
add Slack and Airtable MCP OAuth support
2026-04-21 21:38:24 +02:00
CREDO23
c414cc257f
add frontend tiles for Linear, Jira, ClickUp MCP connectors
2026-04-21 21:20:54 +02:00
CREDO23
9b78fbfe15
add automatic token refresh for MCP OAuth connectors
2026-04-21 21:20:12 +02:00
CREDO23
81711c9e5b
wire MCP OAuth route into app router
2026-04-21 21:19:57 +02:00
CREDO23
45867e5c56
add generic MCP OAuth route with DCR + PKCE
2026-04-21 21:19:32 +02:00
CREDO23
4efdee5aed
add MCP OAuth discovery, DCR, and token exchange
2026-04-21 21:19:15 +02:00
CREDO23
7133655eeb
add MCP service registry for Linear, Jira, ClickUp
2026-04-21 21:19:08 +02:00