Timothy Jaeryang Baek
b5c3395f79
refac
2026-03-02 16:41:32 -06:00
Timothy Jaeryang Baek
ed9ab65b5e
refac
2026-03-02 15:23:01 -06:00
Timothy Jaeryang Baek
1a2b360d3d
refac
2026-03-02 15:01:10 -06:00
Timothy Jaeryang Baek
4f6cb771f1
enh: open terminal
2026-03-02 14:49:02 -06:00
Aleix Dorca
75683e5197
i18n: Update catalan translation.json ( #22129 )
2026-03-02 13:49:03 -06:00
Aindriú Mac Giolla Eoin
8ea35e3bb4
i18n: Updated Irish translation ( #22132 )
...
Co-authored-by: Tim Baek <tim@openwebui.com >
Co-authored-by: joaoback <156559121+joaoback@users.noreply.github.com >
2026-03-02 13:48:26 -06:00
Timothy Jaeryang Baek
44349fb62b
refac
2026-03-02 13:27:37 -06:00
Jannik S.
fe1941c13a
fix: add missing lang="ts" to ChatControls module script ( #22131 )
...
The module-level script block uses TypeScript syntax but was missing
the lang="ts" attribute, causing esbuild to fail during vite dev
dependency scanning.
2026-03-02 12:56:35 -06:00
Timothy Jaeryang Baek
933a3bbbd3
refac
2026-03-02 12:49:51 -06:00
Timothy Jaeryang Baek
3909b62ffc
enh: file nav html rendering
2026-03-02 12:45:50 -06:00
Shirasawa
bec227da30
i18n: improve Chinese translations ( #22148 )
2026-03-02 12:23:00 -06:00
Timothy Jaeryang Baek
11487d66fc
refac
2026-03-02 12:09:49 -06:00
Timothy Jaeryang Baek
395098c6f1
refac
2026-03-02 12:07:55 -06:00
Timothy Jaeryang Baek
72951324df
refac
2026-03-02 12:05:19 -06:00
Timothy Jaeryang Baek
0c42cd2c01
enh: ot move
2026-03-02 12:03:23 -06:00
Timothy Jaeryang Baek
c701ebe07b
refac
2026-03-02 11:29:29 -06:00
Shirasawa
b338850cc1
Merge pull request #22127 from ShirasawaSama/patch-49
...
fix: Fix TypeScript syntax compilation errors
2026-03-02 11:26:58 -06:00
Timothy Jaeryang Baek
64957db7b3
refac
2026-03-02 11:26:33 -06:00
Timothy Jaeryang Baek
d7147d6cdd
refac
2026-03-02 11:24:15 -06:00
Timothy Jaeryang Baek
832d0181b6
chore: format
2026-03-01 19:13:14 -06:00
Timothy Jaeryang Baek
d1dd449f63
doc: changelog
2026-03-01 19:12:06 -06:00
Timothy Jaeryang Baek
2751a0f0b6
refac
2026-03-01 19:09:10 -06:00
Shirasawa
a9e9fe7899
fix: fix memory leaking of ChatControls ( #22112 )
2026-03-01 19:06:20 -06:00
Tim Baek
702906aee7
Merge pull request #22119 from Algorithm5838/fix/save-temp-chat-params
...
fix: pass params when saving a temporary chat
2026-03-02 05:06:02 +04:00
Algorithm5838
fe837d80e7
fix: pass params when saving a temporary chat
...
The system prompt and other chat controls overrides were lost after
saving because `params` wasn't included in the `createNewChat` call.
2026-03-02 01:35:59 +03:00
Tim Baek
860a0b414e
Merge pull request #22111 from Algorithm5838/perf/debounce-get-contents
...
perf: use rAF to debounce getContents() during streaming
2026-03-02 01:28:15 +04:00
Shirasawa
67893b9a57
fix: fix memory leaking in CodeEditor ( #22110 )
2026-03-01 15:52:20 -05:00
Timothy Jaeryang Baek
2e8c4da17b
refac
2026-03-01 14:45:35 -06:00
Timothy Jaeryang Baek
ff9f761d65
refac
2026-03-01 14:44:12 -06:00
Algorithm5838
6863ca482c
perf: use rAF to debounce getContents() during streaming
2026-03-01 23:42:16 +03:00
Timothy Jaeryang Baek
5645d5bccc
refac
2026-03-01 14:38:10 -06:00
Timothy Jaeryang Baek
201b93bfcc
refac
2026-03-01 14:18:57 -06:00
Timothy Jaeryang Baek
0c2e4270bc
chore: format
2026-03-01 14:10:45 -06:00
Timothy Jaeryang Baek
80ad5fd2d0
refac
2026-03-01 14:06:26 -06:00
Shirasawa
9904566513
fix: fix memory leaking in Chat.svelte ( #21962 )
...
* fix: fix memory leaking in Chat.svelte
* chore: remove useless chatIdUnsubscriber var
* fix: fix async tick
2026-03-01 15:04:47 -05:00
Classic298
2054ee0b73
fix: enforce ownership check on user-memory collection queries ( #22109 )
...
* fix: enforce ownership check on user-memory collection queries
fix: enforce ownership check on user-memory collection queries
Prevent authenticated users from querying other users' memory
collections via the /query/doc and /query/collection endpoints.
A new _validate_collection_access helper rejects requests for
user-memory-{UUID} collections where the UUID does not match
the requesting user. Admins bypass the check.
* Update retrieval.py
* Update retrieval.py
2026-03-01 15:03:37 -05:00
Timothy Jaeryang Baek
93bab8d822
refac
2026-03-01 13:54:44 -06:00
Timothy Jaeryang Baek
259d5ca596
refac
2026-03-01 13:49:36 -06:00
Classic298
597883a179
perf: use structuredClone and fast-path comparison in UserMessage ( #22098 )
...
Same optimization as the merged ResponseMessage PR: replace JSON.parse(JSON.stringify()) with structuredClone and add an O(1) fast-path check on content before falling back to full JSON.stringify comparison.
2026-03-01 14:46:05 -05:00
Classic298
387225eb8b
fix: suppress internal path leakage in audio transcription errors (GHSA-vvxm-vxmr-624h) ( #22108 )
...
- Use os.path.basename() for filename sanitization instead of fragile blocklist
- Replace ERROR_MESSAGES.DEFAULT(e) with generic error message in both except blocks to prevent CWE-209 information disclosure
- Server-side logging via log.exception(e) is preserved for debugging
2026-03-01 14:44:49 -05:00
Timothy Jaeryang Baek
c83a42198d
refac
2026-03-01 13:37:31 -06:00
Timothy Jaeryang Baek
2cacc2e649
chore: format
2026-03-01 13:34:09 -06:00
Timothy Jaeryang Baek
c9a78e5476
refac
2026-03-01 13:30:36 -06:00
Timothy Jaeryang Baek
2cbba2a28a
chore: format
2026-03-01 13:29:06 -06:00
Timothy Jaeryang Baek
62ab30f593
refac
2026-03-01 13:28:32 -06:00
Timothy Jaeryang Baek
0fff2fbcab
refac
2026-03-01 13:23:39 -06:00
Timothy Jaeryang Baek
fcff9c3afd
refac
2026-03-01 13:20:55 -06:00
Timothy Jaeryang Baek
d415edcfcd
chore: bump
2026-03-01 13:14:20 -06:00
Classic298
5f304e57d2
chore: changelog ( #22080 )
...
* changelog: MentionList memory leak fix
* changelog: multi-model responses horizontal scroll fix
* changelog: tool, json, error-handling
* changelog: add notification HTML escaping fix
* changelog: fix chat timestamp i18n
* changelog: terminal, file creation, SBOM
* changelog: terminal file editing
* changelog: terminal, toolbar, file-preview
* changelog: terminal, file refresh, automation
* changelog: model toast notification fix
* changelog: sidebar memory leak fix
* changelog: streaming performance optimizations
* changelog: message building, streaming, performance
* changelog: socket, status, event type optimizations
* changelog: offline mode, embedding model fix
* changelog: performance entries reworded for clarity
2026-03-01 14:12:21 -05:00
Classic298
0b851cf55a
fix: offline model retrieval, re-raise to disable instead of returning useless fallback ( #22106 )
...
Co-authored-by: ahxxm <1286225+ahxxm@users.noreply.github.com >
2026-03-01 13:52:31 -05:00