[PR #17747] [MERGED] 0.6.31 #24532

Closed
opened 2026-04-20 05:26:51 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17747
Author: @tjbck
Created: 9/25/2025
Status: Merged
Merged: 9/25/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

167 files changed (+7550 additions, -2554 deletions)

View changed files

📝 CHANGELOG.md (+54 -0)
📝 backend/open_webui/config.py (+19 -7)
📝 backend/open_webui/env.py (+7 -3)
📝 backend/open_webui/functions.py (+1 -1)
📝 backend/open_webui/main.py (+104 -11)
📝 backend/open_webui/models/channels.py (+4 -0)
📝 backend/open_webui/models/chats.py (+16 -1)
📝 backend/open_webui/models/files.py (+11 -0)
📝 backend/open_webui/models/notes.py (+61 -8)
📝 backend/open_webui/models/oauth_sessions.py (+20 -0)
📝 backend/open_webui/models/tools.py (+2 -0)
📝 backend/open_webui/retrieval/utils.py (+7 -1)
backend/open_webui/retrieval/web/ollama.py (+51 -0)
backend/open_webui/retrieval/web/perplexity_search.py (+64 -0)
📝 backend/open_webui/routers/channels.py (+49 -11)
📝 backend/open_webui/routers/chats.py (+7 -3)
📝 backend/open_webui/routers/configs.py (+171 -10)
📝 backend/open_webui/routers/folders.py (+8 -8)
📝 backend/open_webui/routers/functions.py (+7 -4)
📝 backend/open_webui/routers/images.py (+3 -7)

...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/17747 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/25/2025 **Status:** ✅ Merged **Merged:** 9/25/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`e214d59`](https://github.com/open-webui/open-webui/commit/e214d59d109a11eb61bad1a58208d6ae89d66a5b) Update groups.py fix issue #16870 - [`a64586f`](https://github.com/open-webui/open-webui/commit/a64586f9c289f340bd8efc7271a0470493ed3892) Merge branch 'dev' of https://github.com/andrewbbaek/open-webui into dev - [`7b0ce47`](https://github.com/open-webui/open-webui/commit/7b0ce47eb892610b0faab3315a3872f8206522ee) Merge branch 'dev' of https://github.com/andrewbbaek/open-webui into dev - [`ceaafbb`](https://github.com/open-webui/open-webui/commit/ceaafbbfd21dc3ab766066a1b6253f05560361b1) Update groups.py - [`05223f7`](https://github.com/open-webui/open-webui/commit/05223f720d374c6b7048e0c690da5a9d0bd1b6bd) Merge branch 'open-webui:dev' into dev - [`b50ae5b`](https://github.com/open-webui/open-webui/commit/b50ae5bf694a070147ea770e27bb1c146dbfacdf) Update MessageInput.svelte - [`7c0bf59`](https://github.com/open-webui/open-webui/commit/7c0bf59c7c42d882edd9ed001949c65def889945) Update catalan translation.json - [`4ca4300`](https://github.com/open-webui/open-webui/commit/4ca43004edcb47332aac3dad3817df967ee5817a) feat: Added support for redis as session storage - [`f704d5b`](https://github.com/open-webui/open-webui/commit/f704d5b0b360c6eb2fdbd6ec79db97bc26267ce0) Merge branch 'dev' of https://github.com/andrewbbaek/open-webui into dev - [`b0720ec`](https://github.com/open-webui/open-webui/commit/b0720ec2aadf38e3fcf65746d432b218a6499dc3) Merge branch 'dev' of https://github.com/andrewbbaek/open-webui into dev ### 📊 Changes **167 files changed** (+7550 additions, -2554 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+54 -0) 📝 `backend/open_webui/config.py` (+19 -7) 📝 `backend/open_webui/env.py` (+7 -3) 📝 `backend/open_webui/functions.py` (+1 -1) 📝 `backend/open_webui/main.py` (+104 -11) 📝 `backend/open_webui/models/channels.py` (+4 -0) 📝 `backend/open_webui/models/chats.py` (+16 -1) 📝 `backend/open_webui/models/files.py` (+11 -0) 📝 `backend/open_webui/models/notes.py` (+61 -8) 📝 `backend/open_webui/models/oauth_sessions.py` (+20 -0) 📝 `backend/open_webui/models/tools.py` (+2 -0) 📝 `backend/open_webui/retrieval/utils.py` (+7 -1) ➕ `backend/open_webui/retrieval/web/ollama.py` (+51 -0) ➕ `backend/open_webui/retrieval/web/perplexity_search.py` (+64 -0) 📝 `backend/open_webui/routers/channels.py` (+49 -11) 📝 `backend/open_webui/routers/chats.py` (+7 -3) 📝 `backend/open_webui/routers/configs.py` (+171 -10) 📝 `backend/open_webui/routers/folders.py` (+8 -8) 📝 `backend/open_webui/routers/functions.py` (+7 -4) 📝 `backend/open_webui/routers/images.py` (+3 -7) _...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-04-20 05:26:51 -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#24532