[PR #22385] [MERGED] 0.8.9 #49693

Closed
opened 2026-04-30 01:59:49 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/22385
Author: @tjbck
Created: 3/8/2026
Status: Merged
Merged: 3/8/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

147 files changed (+7586 additions, -1698 deletions)

View changed files

📝 .github/pull_request_template.md (+3 -1)
.github/workflows/deploy-to-hf-spaces.yml (+0 -64)
📝 CHANGELOG.md (+79 -0)
📝 backend/open_webui/config.py (+37 -15)
📝 backend/open_webui/env.py (+10 -0)
📝 backend/open_webui/internal/db.py (+24 -5)
📝 backend/open_webui/main.py (+45 -38)
📝 backend/open_webui/migrations/versions/8452d01d26d7_add_chat_message_table.py (+85 -39)
📝 backend/open_webui/models/chat_messages.py (+3 -1)
📝 backend/open_webui/models/chats.py (+20 -16)
📝 backend/open_webui/models/folders.py (+1 -0)
📝 backend/open_webui/models/functions.py (+22 -0)
📝 backend/open_webui/routers/analytics.py (+2 -2)
📝 backend/open_webui/routers/folders.py (+7 -3)
📝 backend/open_webui/routers/ollama.py (+1 -1)
📝 backend/open_webui/routers/retrieval.py (+27 -24)
📝 backend/open_webui/routers/skills.py (+1 -1)
📝 backend/open_webui/routers/tools.py (+1 -1)
📝 backend/open_webui/socket/main.py (+2 -0)
📝 backend/open_webui/tools/builtin.py (+10 -4)

...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/22385 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 3/8/2026 **Status:** ✅ Merged **Merged:** 3/8/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`ca2aaf0`](https://github.com/open-webui/open-webui/commit/ca2aaf0321c219d041e92e2c0c842a4e424732ef) fix: ot terminal - [`a36692b`](https://github.com/open-webui/open-webui/commit/a36692b4a2e3ddc645d3c6419c13c9c4ceace76b) Merge pull request #22231 from ShirasawaSama/patch-10 - [`5af24b3`](https://github.com/open-webui/open-webui/commit/5af24b3ebe1587ef87792cba772d03e923d4f070) fix: Implement archive chat handler in Chat page navbar (#22229) - [`7d45459`](https://github.com/open-webui/open-webui/commit/7d45459a4784dd3a8e9e925820a8d0e349910103) fix: keep save button spinner inline (#22227) - [`ad27535`](https://github.com/open-webui/open-webui/commit/ad275351b6689ced7ea76a0b7f46dc18eaeb2ebe) i18n(fr-FR): complete French translation pass (#22200) - [`6e43861`](https://github.com/open-webui/open-webui/commit/6e43861c0c5f1df98adca9be7bc7d40df728d1cf) feat: prioritize in-group members in sorting (#22211) - [`890949a`](https://github.com/open-webui/open-webui/commit/890949abe6b01d201355a86c50317e20da07dd34) feat: add DOCX/XLSX/PPTX file preview - [`e08341d`](https://github.com/open-webui/open-webui/commit/e08341dab3bb10e26a64eb44cbebd2d507087b03) enh: ot ports - [`f962bae`](https://github.com/open-webui/open-webui/commit/f962bae98306ea9264967b78b803397f4821f9b0) feat: improve XLSX preview + add code syntax highlighting - [`627b063`](https://github.com/open-webui/open-webui/commit/627b063b88522a6346b72d83b3f221c756778c98) refac ### 📊 Changes **147 files changed** (+7586 additions, -1698 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+3 -1) ➖ `.github/workflows/deploy-to-hf-spaces.yml` (+0 -64) 📝 `CHANGELOG.md` (+79 -0) 📝 `backend/open_webui/config.py` (+37 -15) 📝 `backend/open_webui/env.py` (+10 -0) 📝 `backend/open_webui/internal/db.py` (+24 -5) 📝 `backend/open_webui/main.py` (+45 -38) 📝 `backend/open_webui/migrations/versions/8452d01d26d7_add_chat_message_table.py` (+85 -39) 📝 `backend/open_webui/models/chat_messages.py` (+3 -1) 📝 `backend/open_webui/models/chats.py` (+20 -16) 📝 `backend/open_webui/models/folders.py` (+1 -0) 📝 `backend/open_webui/models/functions.py` (+22 -0) 📝 `backend/open_webui/routers/analytics.py` (+2 -2) 📝 `backend/open_webui/routers/folders.py` (+7 -3) 📝 `backend/open_webui/routers/ollama.py` (+1 -1) 📝 `backend/open_webui/routers/retrieval.py` (+27 -24) 📝 `backend/open_webui/routers/skills.py` (+1 -1) 📝 `backend/open_webui/routers/tools.py` (+1 -1) 📝 `backend/open_webui/socket/main.py` (+2 -0) 📝 `backend/open_webui/tools/builtin.py` (+10 -4) _...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-30 01:59:49 -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#49693