[PR #10330] [MERGED] 0.5.15 #38128

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/10330
Author: @tjbck
Created: 2/19/2025
Status: Merged
Merged: 2/20/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

96 files changed (+3683 additions, -2141 deletions)

View changed files

📝 CHANGELOG.md (+19 -0)
📝 backend/open_webui/config.py (+64 -0)
📝 backend/open_webui/main.py (+21 -1)
📝 backend/open_webui/retrieval/utils.py (+114 -39)
📝 backend/open_webui/retrieval/web/utils.py (+370 -29)
📝 backend/open_webui/routers/audio.py (+13 -3)
📝 backend/open_webui/routers/auths.py (+2 -1)
📝 backend/open_webui/routers/configs.py (+12 -0)
📝 backend/open_webui/routers/files.py (+16 -9)
📝 backend/open_webui/routers/images.py (+64 -0)
📝 backend/open_webui/routers/ollama.py (+15 -2)
📝 backend/open_webui/routers/retrieval.py (+9 -0)
📝 backend/open_webui/routers/utils.py (+1 -0)
📝 backend/open_webui/storage/provider.py (+76 -0)
📝 backend/open_webui/test/apps/webui/storage/test_provider.py (+150 -0)
📝 backend/open_webui/utils/middleware.py (+75 -61)
📝 backend/open_webui/utils/oauth.py (+47 -7)
📝 backend/open_webui/utils/payload.py (+77 -49)
📝 backend/open_webui/utils/response.py (+31 -50)
📝 backend/requirements.txt (+10 -3)

...and 76 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/10330 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/19/2025 **Status:** ✅ Merged **Merged:** 2/20/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4e8b390`](https://github.com/open-webui/open-webui/commit/4e8b3906821a9a10f4fd0038373291dff41b65cf) Add RAG_WEB_LOADER + Playwright mode + improve stability of search - [`8dafe3c`](https://github.com/open-webui/open-webui/commit/8dafe3cba8c9166e33298f1c640b2bec974c5612) Merge branch 'dev' of https://github.com/open-webui/open-webui - [`2452e27`](https://github.com/open-webui/open-webui/commit/2452e271cddccf0c835ae17f4505471eb41a4313) Refine RAG_WEB_LOADER - [`77ae73e`](https://github.com/open-webui/open-webui/commit/77ae73e659e6fea6da34c3ea913edb3dc4f037a9) Adjust search event messages + translations - [`a84e488`](https://github.com/open-webui/open-webui/commit/a84e488a4ea681c580a2b9cca22fe176f8c0014c) Fix playwright in docker by updating unstructured - [`8da3372`](https://github.com/open-webui/open-webui/commit/8da33721d563754becd0d03bf86605441e0bd9e3) Support PLAYWRIGHT_WS_URI - [`c3df481`](https://github.com/open-webui/open-webui/commit/c3df481b22d8bc13a7deb045e94b0bcf4235224e) Introduce docker-compose.playwright.yaml + run-compose update - [`f837d2c`](https://github.com/open-webui/open-webui/commit/f837d2cdbb40642b157d936c936cdf8eadc44ef3) Merge branch 'dev' of https://github.com/open-webui/open-webui - [`22746c7`](https://github.com/open-webui/open-webui/commit/22746c7a3f86f6f49c8eb3ded3bc45d407f68177) Merge remote-tracking branch 'upstream/dev' - [`1b581b7`](https://github.com/open-webui/open-webui/commit/1b581b714f6749e51bf17c49434976a0c57900c6) Moving code out of playwright branch ### 📊 Changes **96 files changed** (+3683 additions, -2141 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+19 -0) 📝 `backend/open_webui/config.py` (+64 -0) 📝 `backend/open_webui/main.py` (+21 -1) 📝 `backend/open_webui/retrieval/utils.py` (+114 -39) 📝 `backend/open_webui/retrieval/web/utils.py` (+370 -29) 📝 `backend/open_webui/routers/audio.py` (+13 -3) 📝 `backend/open_webui/routers/auths.py` (+2 -1) 📝 `backend/open_webui/routers/configs.py` (+12 -0) 📝 `backend/open_webui/routers/files.py` (+16 -9) 📝 `backend/open_webui/routers/images.py` (+64 -0) 📝 `backend/open_webui/routers/ollama.py` (+15 -2) 📝 `backend/open_webui/routers/retrieval.py` (+9 -0) 📝 `backend/open_webui/routers/utils.py` (+1 -0) 📝 `backend/open_webui/storage/provider.py` (+76 -0) 📝 `backend/open_webui/test/apps/webui/storage/test_provider.py` (+150 -0) 📝 `backend/open_webui/utils/middleware.py` (+75 -61) 📝 `backend/open_webui/utils/oauth.py` (+47 -7) 📝 `backend/open_webui/utils/payload.py` (+77 -49) 📝 `backend/open_webui/utils/response.py` (+31 -50) 📝 `backend/requirements.txt` (+10 -3) _...and 76 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:17:03 -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#38128