[PR #15448] [MERGED] 0.6.16 #23835

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/15448
Author: @tjbck
Created: 7/1/2025
Status: Merged
Merged: 7/14/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 74167f4 Merge pull request #15490 from sihyeonn/chore/sh-print
  • bdbc8f0 Merge pull request #15501 from Green-PT/fix-oauth-signout-redirect
  • ed6bbdd Merge pull request #15483 from headwAI-GmbH/support-deactivate-update-check
  • e98dc0a Merge pull request #14957 from Classic298/fix-postgresql-null-value-search
  • 8661c44 feat: configurable db url
  • d2485bb refac
  • 75096c2 refac
  • e28bc37 enh: AUDIT_UVICORN_LOGGER_NAMES
  • 1b237c7 enh: submit searchParam
  • 600344f Merge pull request #15510 from kopero2000/bug/oauth_logout_fix

📊 Changes

311 files changed (+16954 additions, -7362 deletions)

View changed files

📝 CHANGELOG.md (+59 -0)
📝 backend/open_webui/config.py (+99 -11)
📝 backend/open_webui/env.py (+75 -6)
📝 backend/open_webui/internal/db.py (+19 -13)
📝 backend/open_webui/main.py (+77 -17)
backend/open_webui/migrations/versions/d31026856c01_update_folder_table_data.py (+23 -0)
📝 backend/open_webui/models/chats.py (+43 -32)
📝 backend/open_webui/models/folders.py (+20 -5)
📝 backend/open_webui/models/notes.py (+22 -5)
📝 backend/open_webui/retrieval/loaders/main.py (+7 -2)
📝 backend/open_webui/retrieval/loaders/mistral.py (+1 -0)
📝 backend/open_webui/retrieval/models/external.py (+16 -2)
📝 backend/open_webui/retrieval/utils.py (+187 -121)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+6 -3)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+23 -4)
📝 backend/open_webui/retrieval/vector/dbs/qdrant.py (+21 -1)
📝 backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py (+145 -507)
📝 backend/open_webui/retrieval/web/brave.py (+3 -1)
📝 backend/open_webui/retrieval/web/duckduckgo.py (+2 -2)
📝 backend/open_webui/routers/audio.py (+29 -22)

...and 80 more files

📄 Description


🔄 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/15448 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 7/1/2025 **Status:** ✅ Merged **Merged:** 7/14/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`74167f4`](https://github.com/open-webui/open-webui/commit/74167f4b48a6741f8201ec1c5caacacaa4a9008d) Merge pull request #15490 from sihyeonn/chore/sh-print - [`bdbc8f0`](https://github.com/open-webui/open-webui/commit/bdbc8f048c49a13be5880dd7a3c425975d214397) Merge pull request #15501 from Green-PT/fix-oauth-signout-redirect - [`ed6bbdd`](https://github.com/open-webui/open-webui/commit/ed6bbddf6ea3a275ef39ac0223800c1a221a6f2c) Merge pull request #15483 from headwAI-GmbH/support-deactivate-update-check - [`e98dc0a`](https://github.com/open-webui/open-webui/commit/e98dc0a745f8bb7430ce9d25e59c009724bd1a7d) Merge pull request #14957 from Classic298/fix-postgresql-null-value-search - [`8661c44`](https://github.com/open-webui/open-webui/commit/8661c4416a9a512814778e08467293ca1e906209) feat: configurable db url - [`d2485bb`](https://github.com/open-webui/open-webui/commit/d2485bbf09b48f9c9d6f3e105cdc13c5a905d8c8) refac - [`75096c2`](https://github.com/open-webui/open-webui/commit/75096c24ac11a3209aab389aaa75fbffe66ce431) refac - [`e28bc37`](https://github.com/open-webui/open-webui/commit/e28bc37e41c0a6db6251014e10f8fe7deb8f4d7c) enh: AUDIT_UVICORN_LOGGER_NAMES - [`1b237c7`](https://github.com/open-webui/open-webui/commit/1b237c7f60f7abc9b74993fbbbbc9737bfb7c7ca) enh: submit searchParam - [`600344f`](https://github.com/open-webui/open-webui/commit/600344f2e8210e3715785b227d7aa44ead796344) Merge pull request #15510 from kopero2000/bug/oauth_logout_fix ### 📊 Changes **311 files changed** (+16954 additions, -7362 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+59 -0) 📝 `backend/open_webui/config.py` (+99 -11) 📝 `backend/open_webui/env.py` (+75 -6) 📝 `backend/open_webui/internal/db.py` (+19 -13) 📝 `backend/open_webui/main.py` (+77 -17) ➕ `backend/open_webui/migrations/versions/d31026856c01_update_folder_table_data.py` (+23 -0) 📝 `backend/open_webui/models/chats.py` (+43 -32) 📝 `backend/open_webui/models/folders.py` (+20 -5) 📝 `backend/open_webui/models/notes.py` (+22 -5) 📝 `backend/open_webui/retrieval/loaders/main.py` (+7 -2) 📝 `backend/open_webui/retrieval/loaders/mistral.py` (+1 -0) 📝 `backend/open_webui/retrieval/models/external.py` (+16 -2) 📝 `backend/open_webui/retrieval/utils.py` (+187 -121) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+6 -3) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+23 -4) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant.py` (+21 -1) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py` (+145 -507) 📝 `backend/open_webui/retrieval/web/brave.py` (+3 -1) 📝 `backend/open_webui/retrieval/web/duckduckgo.py` (+2 -2) 📝 `backend/open_webui/routers/audio.py` (+29 -22) _...and 80 more files_ </details> ### 📄 Description - [x] #15194 --- <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:04:10 -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#23835