[PR #19030] [MERGED] 0.6.37 #25067

Closed
opened 2026-04-20 05:44:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/19030
Author: @tjbck
Created: 11/8/2025
Status: Merged
Merged: 11/24/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • f052b28 Update catalan translation.json
  • 9a86461 Update catalan translation.json
  • 1097838 i18n: improve Chinese translation
  • 89c0e15 feat: handle large stream chunks responses
  • ce1079d feat: Allow configuration of not process large single-line data
  • 3d43797 Update translation.json (pt-BR)
  • 684324a fix: Handle AttributeError in hybrid search with reranking (#17046)
  • 8114ddc Merge pull request #19004 from ShirasawaSama/i18n/improve-chinese-translation
  • 7afa83e Merge pull request #19012 from joaoback/patch-14
  • c260efa Merge pull request #19002 from aleixdorca/dev

📊 Changes

250 files changed (+12174 additions, -6439 deletions)

View changed files

📝 CHANGELOG.md (+90 -0)
📝 README.md (+18 -6)
📝 backend/open_webui/config.py (+256 -19)
📝 backend/open_webui/constants.py (+5 -1)
📝 backend/open_webui/env.py (+70 -2)
📝 backend/open_webui/main.py (+88 -17)
backend/open_webui/migrations/versions/37f288994c47_add_group_member_table.py (+146 -0)
📝 backend/open_webui/models/auths.py (+5 -4)
📝 backend/open_webui/models/channels.py (+1 -1)
📝 backend/open_webui/models/chats.py (+153 -55)
📝 backend/open_webui/models/feedbacks.py (+88 -2)
📝 backend/open_webui/models/files.py (+30 -1)
📝 backend/open_webui/models/folders.py (+1 -1)
📝 backend/open_webui/models/functions.py (+1 -1)
📝 backend/open_webui/models/groups.py (+159 -66)
📝 backend/open_webui/models/memories.py (+1 -1)
📝 backend/open_webui/models/messages.py (+1 -1)
📝 backend/open_webui/models/models.py (+88 -7)
📝 backend/open_webui/models/users.py (+33 -5)
📝 backend/open_webui/retrieval/loaders/mineru.py (+5 -24)

...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/19030 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 11/8/2025 **Status:** ✅ Merged **Merged:** 11/24/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f052b28`](https://github.com/open-webui/open-webui/commit/f052b2801a68331fed5e5e6f790bb5e3ca38d016) Update catalan translation.json - [`9a86461`](https://github.com/open-webui/open-webui/commit/9a8646157e5874d3fd363ae209c4d84639e55ebf) Update catalan translation.json - [`1097838`](https://github.com/open-webui/open-webui/commit/1097838b351c54b458a75469b252aba825e0251e) i18n: improve Chinese translation - [`89c0e15`](https://github.com/open-webui/open-webui/commit/89c0e150c855cb01016a035cbdb2febfcb068236) feat: handle large stream chunks responses - [`ce1079d`](https://github.com/open-webui/open-webui/commit/ce1079d358946cabeebbbc597606712b616c3a8d) feat: Allow configuration of not process large single-line data - [`3d43797`](https://github.com/open-webui/open-webui/commit/3d437973619ab629c80d3337549e9e94527681c2) Update translation.json (pt-BR) - [`684324a`](https://github.com/open-webui/open-webui/commit/684324ae9eca79cb44dec54ec82ebb83135536b1) fix: Handle AttributeError in hybrid search with reranking (#17046) - [`8114ddc`](https://github.com/open-webui/open-webui/commit/8114ddc5f97d72df5469e19aa4b7571aeaa04274) Merge pull request #19004 from ShirasawaSama/i18n/improve-chinese-translation - [`7afa83e`](https://github.com/open-webui/open-webui/commit/7afa83e88045d5e3bfc945b795b4392a64bd3ff5) Merge pull request #19012 from joaoback/patch-14 - [`c260efa`](https://github.com/open-webui/open-webui/commit/c260efa2f45b6594b6be54821f62907fd9438c46) Merge pull request #19002 from aleixdorca/dev ### 📊 Changes **250 files changed** (+12174 additions, -6439 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+90 -0) 📝 `README.md` (+18 -6) 📝 `backend/open_webui/config.py` (+256 -19) 📝 `backend/open_webui/constants.py` (+5 -1) 📝 `backend/open_webui/env.py` (+70 -2) 📝 `backend/open_webui/main.py` (+88 -17) ➕ `backend/open_webui/migrations/versions/37f288994c47_add_group_member_table.py` (+146 -0) 📝 `backend/open_webui/models/auths.py` (+5 -4) 📝 `backend/open_webui/models/channels.py` (+1 -1) 📝 `backend/open_webui/models/chats.py` (+153 -55) 📝 `backend/open_webui/models/feedbacks.py` (+88 -2) 📝 `backend/open_webui/models/files.py` (+30 -1) 📝 `backend/open_webui/models/folders.py` (+1 -1) 📝 `backend/open_webui/models/functions.py` (+1 -1) 📝 `backend/open_webui/models/groups.py` (+159 -66) 📝 `backend/open_webui/models/memories.py` (+1 -1) 📝 `backend/open_webui/models/messages.py` (+1 -1) 📝 `backend/open_webui/models/models.py` (+88 -7) 📝 `backend/open_webui/models/users.py` (+33 -5) 📝 `backend/open_webui/retrieval/loaders/mineru.py` (+5 -24) _...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:44:12 -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#25067