[PR #24482] [MERGED] 0.9.3 #82546

Closed
opened 2026-05-13 17:05:35 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/24482
Author: @tjbck
Created: 5/9/2026
Status: Merged
Merged: 5/9/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

169 files changed (+9981 additions, -3337 deletions)

View changed files

📝 CHANGELOG.md (+98 -0)
📝 backend/open_webui/__init__.py (+7 -0)
📝 backend/open_webui/config.py (+62 -5)
📝 backend/open_webui/env.py (+23 -11)
📝 backend/open_webui/functions.py (+1 -1)
📝 backend/open_webui/internal/db.py (+10 -0)
📝 backend/open_webui/main.py (+187 -46)
backend/open_webui/migrations/versions/4de81c2a3af1_add_pinned_note_table.py (+80 -0)
backend/open_webui/migrations/versions/a0b1c2d3e4f5_add_memory_user_id_index.py (+22 -0)
📝 backend/open_webui/models/calendar.py (+7 -5)
📝 backend/open_webui/models/channels.py (+10 -1)
📝 backend/open_webui/models/chat_messages.py (+94 -28)
📝 backend/open_webui/models/chats.py (+20 -8)
📝 backend/open_webui/models/knowledge.py (+14 -4)
📝 backend/open_webui/models/memories.py (+1 -1)
📝 backend/open_webui/models/notes.py (+39 -6)
📝 backend/open_webui/models/prompts.py (+74 -21)
backend/open_webui/retrieval/web/brave_llm_context.py (+66 -0)
📝 backend/open_webui/retrieval/web/duckduckgo.py (+12 -3)
📝 backend/open_webui/retrieval/web/searxng.py (+1 -1)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/24482 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/9/2026 **Status:** ✅ Merged **Merged:** 5/9/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`5bc80b1`](https://github.com/open-webui/open-webui/commit/5bc80b145f87a6e0fe5309fd45ae12d280a1d93c) refac - [`86df8bf`](https://github.com/open-webui/open-webui/commit/86df8bf27e1b84abbe2eeedcc8650df59c7d23d6) refac - [`cde21b9`](https://github.com/open-webui/open-webui/commit/cde21b9f6dc11575a668484f42440824ec5a4fae) refac - [`4e6a7ba`](https://github.com/open-webui/open-webui/commit/4e6a7baab7595f230a371f71a90f6e9512bf589e) Merge pull request #24356 from Classic298/patch-1 - [`989d5fd`](https://github.com/open-webui/open-webui/commit/989d5fd4e2ce285edf4475a1e13f0981a78d3821) refac - [`a32d26e`](https://github.com/open-webui/open-webui/commit/a32d26e61d24d9f63650faed5cb8909ed90af661) refac - [`4fe2de7`](https://github.com/open-webui/open-webui/commit/4fe2de78643c2213652190d2820f4e8d9f4f89cc) refac - [`5c3edc2`](https://github.com/open-webui/open-webui/commit/5c3edc2539ac4d92c4cc2d37079549995203238a) refac - [`4754ece`](https://github.com/open-webui/open-webui/commit/4754ece4a2de5bba85a1d53af2dc8d24fdfb58be) refac - [`1f977d0`](https://github.com/open-webui/open-webui/commit/1f977d072e23b6524c65ebdf9388e82806f6f2b0) chore: Update SECURITY.md (#24363) ### 📊 Changes **169 files changed** (+9981 additions, -3337 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+98 -0) 📝 `backend/open_webui/__init__.py` (+7 -0) 📝 `backend/open_webui/config.py` (+62 -5) 📝 `backend/open_webui/env.py` (+23 -11) 📝 `backend/open_webui/functions.py` (+1 -1) 📝 `backend/open_webui/internal/db.py` (+10 -0) 📝 `backend/open_webui/main.py` (+187 -46) ➕ `backend/open_webui/migrations/versions/4de81c2a3af1_add_pinned_note_table.py` (+80 -0) ➕ `backend/open_webui/migrations/versions/a0b1c2d3e4f5_add_memory_user_id_index.py` (+22 -0) 📝 `backend/open_webui/models/calendar.py` (+7 -5) 📝 `backend/open_webui/models/channels.py` (+10 -1) 📝 `backend/open_webui/models/chat_messages.py` (+94 -28) 📝 `backend/open_webui/models/chats.py` (+20 -8) 📝 `backend/open_webui/models/knowledge.py` (+14 -4) 📝 `backend/open_webui/models/memories.py` (+1 -1) 📝 `backend/open_webui/models/notes.py` (+39 -6) 📝 `backend/open_webui/models/prompts.py` (+74 -21) ➕ `backend/open_webui/retrieval/web/brave_llm_context.py` (+66 -0) 📝 `backend/open_webui/retrieval/web/duckduckgo.py` (+12 -3) 📝 `backend/open_webui/retrieval/web/searxng.py` (+1 -1) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-13 17:05:35 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#82546