[PR #17420] [MERGED] 0.6.29 #47469

Closed
opened 2026-04-29 22:41:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • 3802ab9 translate '*required' string in prompts modal + added german translations
  • a05966a Merge pull request #17340 from Ithanil/i18n_prompts
  • d666851 i18n: update kabyle translation
  • 932f759 feat: add text truncation to ChatItem title display
  • cf72f55 refac
  • 24f78fe Merge pull request #17356 from ShirasawaSama/patch-19
  • 9567416 Merge pull request #17344 from BoFFire/patch-1
  • bbe6564 refac
  • bf3a140 UPD: i18n- Translation es-ES v0.6.28
  • 2185fc6 refac

📊 Changes

270 files changed (+8702 additions, -4543 deletions)

View changed files

📝 CHANGELOG.md (+60 -0)
📝 backend/dev.sh (+1 -1)
📝 backend/open_webui/config.py (+59 -0)
📝 backend/open_webui/functions.py (+68 -50)
📝 backend/open_webui/main.py (+10 -41)
📝 backend/open_webui/models/chats.py (+1 -1)
📝 backend/open_webui/models/functions.py (+24 -0)
📝 backend/open_webui/models/messages.py (+8 -2)
📝 backend/open_webui/models/notes.py (+15 -4)
📝 backend/open_webui/models/users.py (+11 -1)
📝 backend/open_webui/retrieval/utils.py (+66 -25)
📝 backend/open_webui/routers/audio.py (+1 -1)
📝 backend/open_webui/routers/channels.py (+164 -15)
📝 backend/open_webui/routers/chats.py (+1 -1)
📝 backend/open_webui/routers/files.py (+0 -5)
📝 backend/open_webui/routers/functions.py (+18 -0)
📝 backend/open_webui/routers/models.py (+38 -2)
📝 backend/open_webui/routers/notes.py (+10 -3)
📝 backend/open_webui/routers/openai.py (+42 -8)
📝 backend/open_webui/routers/retrieval.py (+22 -11)

...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/17420 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/12/2025 **Status:** ✅ Merged **Merged:** 9/17/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3802ab9`](https://github.com/open-webui/open-webui/commit/3802ab9fd189ae9b0062b40c9f0d454ef57f2e62) translate '*required' string in prompts modal + added german translations - [`a05966a`](https://github.com/open-webui/open-webui/commit/a05966af96941c21895478fa0c3b940d706114d6) Merge pull request #17340 from Ithanil/i18n_prompts - [`d666851`](https://github.com/open-webui/open-webui/commit/d6668515f6331c90679a233bff62112acd7be387) i18n: update kabyle translation - [`932f759`](https://github.com/open-webui/open-webui/commit/932f7594105c07306e2112c618850429d15552e5) feat: add text truncation to ChatItem title display - [`cf72f55`](https://github.com/open-webui/open-webui/commit/cf72f5503f39834b9da44ebbb426a3674dad0caa) refac - [`24f78fe`](https://github.com/open-webui/open-webui/commit/24f78fed21a524b32e0fec84916661f76f02c3b9) Merge pull request #17356 from ShirasawaSama/patch-19 - [`9567416`](https://github.com/open-webui/open-webui/commit/95674162f94e85cf354d8a0c2de70e1cd6d1267e) Merge pull request #17344 from BoFFire/patch-1 - [`bbe6564`](https://github.com/open-webui/open-webui/commit/bbe6564bfd6aea4fe7907963fc416875bd4b631d) refac - [`bf3a140`](https://github.com/open-webui/open-webui/commit/bf3a140254dd0f073377e60cec45900f531b9fe0) UPD: i18n- Translation es-ES v0.6.28 - [`2185fc6`](https://github.com/open-webui/open-webui/commit/2185fc61c0d2f9aee876b8ea48cc25bae0c4bfdf) refac ### 📊 Changes **270 files changed** (+8702 additions, -4543 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+60 -0) 📝 `backend/dev.sh` (+1 -1) 📝 `backend/open_webui/config.py` (+59 -0) 📝 `backend/open_webui/functions.py` (+68 -50) 📝 `backend/open_webui/main.py` (+10 -41) 📝 `backend/open_webui/models/chats.py` (+1 -1) 📝 `backend/open_webui/models/functions.py` (+24 -0) 📝 `backend/open_webui/models/messages.py` (+8 -2) 📝 `backend/open_webui/models/notes.py` (+15 -4) 📝 `backend/open_webui/models/users.py` (+11 -1) 📝 `backend/open_webui/retrieval/utils.py` (+66 -25) 📝 `backend/open_webui/routers/audio.py` (+1 -1) 📝 `backend/open_webui/routers/channels.py` (+164 -15) 📝 `backend/open_webui/routers/chats.py` (+1 -1) 📝 `backend/open_webui/routers/files.py` (+0 -5) 📝 `backend/open_webui/routers/functions.py` (+18 -0) 📝 `backend/open_webui/routers/models.py` (+38 -2) 📝 `backend/open_webui/routers/notes.py` (+10 -3) 📝 `backend/open_webui/routers/openai.py` (+42 -8) 📝 `backend/open_webui/routers/retrieval.py` (+22 -11) _...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-29 22:41:37 -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#47469