[PR #12373] [MERGED] 0.6.1 #38534

Closed
opened 2026-04-25 11:31:00 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/12373
Author: @tjbck
Created: 4/3/2025
Status: Merged
Merged: 4/5/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 1d30d8a build(deps): bump python-multipart from 0.0.18 to 0.0.20 in /backend
  • fc5c8db build(deps): bump einops from 0.8.0 to 0.8.1 in /backend
  • bb0e11b build(deps): bump pypandoc from 1.13 to 1.15 in /backend
  • e0ec2cd refac: $user
  • abba7c1 [FEAT]-Adjust Translations for temporary chat
  • 361584b fix: update Polish translations for clarity and accuracy
  • 295c7eb [improvement] default permission for new groups is false for enforce temp chat
  • b60beb6 fix: improve Polish translations for clarity and accuracy
  • 79cca06 Merge pull request #12260 from weisser-dev/feat-default-value-for-enforce-temp-chat
  • f3c2614 Merge pull request #12253 from open-webui/dependabot/pip/backend/dev/python-multipart-0.0.20

📊 Changes

134 files changed (+6159 additions, -1456 deletions)

View changed files

📝 CHANGELOG.md (+23 -0)
📝 backend/open_webui/config.py (+31 -7)
📝 backend/open_webui/main.py (+18 -0)
📝 backend/open_webui/retrieval/loaders/main.py (+27 -11)
backend/open_webui/retrieval/loaders/mistral.py (+225 -0)
📝 backend/open_webui/retrieval/utils.py (+6 -3)
📝 backend/open_webui/routers/auths.py (+22 -18)
📝 backend/open_webui/routers/configs.py (+73 -2)
📝 backend/open_webui/routers/folders.py (+2 -1)
📝 backend/open_webui/routers/ollama.py (+1 -1)
📝 backend/open_webui/routers/retrieval.py (+25 -1)
📝 backend/open_webui/routers/tasks.py (+1 -12)
📝 backend/open_webui/routers/tools.py (+48 -5)
📝 backend/open_webui/routers/users.py (+1 -0)
📝 backend/open_webui/utils/auth.py (+13 -4)
📝 backend/open_webui/utils/filter.py (+3 -3)
📝 backend/open_webui/utils/middleware.py (+48 -16)
📝 backend/open_webui/utils/oauth.py (+38 -33)
📝 backend/open_webui/utils/plugin.py (+6 -6)
📝 backend/open_webui/utils/tools.py (+406 -74)

...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/12373 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/3/2025 **Status:** ✅ Merged **Merged:** 4/5/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`1d30d8a`](https://github.com/open-webui/open-webui/commit/1d30d8a13adfc3081204b94d058dee08af1256d3) build(deps): bump python-multipart from 0.0.18 to 0.0.20 in /backend - [`fc5c8db`](https://github.com/open-webui/open-webui/commit/fc5c8dbe3f9354e59f3485482906db6e3641ad3e) build(deps): bump einops from 0.8.0 to 0.8.1 in /backend - [`bb0e11b`](https://github.com/open-webui/open-webui/commit/bb0e11bb970a8bb1044f039d749474f4d026dee7) build(deps): bump pypandoc from 1.13 to 1.15 in /backend - [`e0ec2cd`](https://github.com/open-webui/open-webui/commit/e0ec2cdeb021cbfcc75cf10eb6cc1fba28fe5b11) refac: $user - [`abba7c1`](https://github.com/open-webui/open-webui/commit/abba7c128c2b38199ff1a50a9de1fb277d4c840a) [FEAT]-Adjust Translations for temporary chat - [`361584b`](https://github.com/open-webui/open-webui/commit/361584b4fd8064f36c8d17d1fa3de25696eb934c) fix: update Polish translations for clarity and accuracy - [`295c7eb`](https://github.com/open-webui/open-webui/commit/295c7eb4c76a7b5973ad964e3d35b619446230f4) [improvement] default permission for new groups is false for enforce temp chat - [`b60beb6`](https://github.com/open-webui/open-webui/commit/b60beb6ff66180709dc7d906557a85476f9307ab) fix: improve Polish translations for clarity and accuracy - [`79cca06`](https://github.com/open-webui/open-webui/commit/79cca06e0c091c4c452c33c087ebf29285ea837a) Merge pull request #12260 from weisser-dev/feat-default-value-for-enforce-temp-chat - [`f3c2614`](https://github.com/open-webui/open-webui/commit/f3c2614b6c58e4b6cd6d718928ed37215b06ab66) Merge pull request #12253 from open-webui/dependabot/pip/backend/dev/python-multipart-0.0.20 ### 📊 Changes **134 files changed** (+6159 additions, -1456 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+23 -0) 📝 `backend/open_webui/config.py` (+31 -7) 📝 `backend/open_webui/main.py` (+18 -0) 📝 `backend/open_webui/retrieval/loaders/main.py` (+27 -11) ➕ `backend/open_webui/retrieval/loaders/mistral.py` (+225 -0) 📝 `backend/open_webui/retrieval/utils.py` (+6 -3) 📝 `backend/open_webui/routers/auths.py` (+22 -18) 📝 `backend/open_webui/routers/configs.py` (+73 -2) 📝 `backend/open_webui/routers/folders.py` (+2 -1) 📝 `backend/open_webui/routers/ollama.py` (+1 -1) 📝 `backend/open_webui/routers/retrieval.py` (+25 -1) 📝 `backend/open_webui/routers/tasks.py` (+1 -12) 📝 `backend/open_webui/routers/tools.py` (+48 -5) 📝 `backend/open_webui/routers/users.py` (+1 -0) 📝 `backend/open_webui/utils/auth.py` (+13 -4) 📝 `backend/open_webui/utils/filter.py` (+3 -3) 📝 `backend/open_webui/utils/middleware.py` (+48 -16) 📝 `backend/open_webui/utils/oauth.py` (+38 -33) 📝 `backend/open_webui/utils/plugin.py` (+6 -6) 📝 `backend/open_webui/utils/tools.py` (+406 -74) _...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-25 11:31:00 -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#38534