[PR #8351] [MERGED] 0.5.5 #22207

Closed
opened 2026-04-20 03:58:57 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/8351
Author: @tjbck
Created: 1/5/2025
Status: Merged
Merged: 1/22/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 3321885 add option to add database schema as env var
  • 6f1065b Merge branch 'dev' of github.com:open-webui/open-webui
  • 61303a2 refac: styling
  • 15a182c refac: styling
  • 960683e fix: torch mps not working
  • a0e63b0 fix: searchapi engine not showing
  • 8117bf8 Add admin check
  • 0c5bb6d Merge pull request #8371 from tarmst/fix-admins-added-to-groups-from-oauth-group-mgmt
  • 82ff6c3 use ldap3.NONE for parameter get_info in ldap_auth function to accelerate login
  • 70a6a0d Fix errors for RangeErrors, Fix for accessing undefined objects in Chat.svelte

📊 Changes

196 files changed (+7457 additions, -4103 deletions)

View changed files

📝 .github/workflows/integration-test.disabled (+2 -0)
📝 CHANGELOG.md (+25 -1)
📝 backend/open_webui/__init__.py (+19 -0)
📝 backend/open_webui/config.py (+173 -34)
📝 backend/open_webui/constants.py (+1 -0)
📝 backend/open_webui/env.py (+4 -0)
📝 backend/open_webui/internal/db.py (+4 -2)
📝 backend/open_webui/main.py (+9 -0)
📝 backend/open_webui/models/chats.py (+1 -1)
📝 backend/open_webui/models/groups.py (+21 -3)
📝 backend/open_webui/models/users.py (+13 -1)
📝 backend/open_webui/retrieval/utils.py (+14 -2)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+2 -2)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+2 -1)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+24 -19)
📝 backend/open_webui/retrieval/web/bing.py (+1 -1)
📝 backend/open_webui/routers/auths.py (+16 -4)
📝 backend/open_webui/routers/files.py (+2 -0)
📝 backend/open_webui/routers/groups.py (+5 -0)
📝 backend/open_webui/routers/images.py (+20 -3)

...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/8351 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 1/5/2025 **Status:** ✅ Merged **Merged:** 1/22/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3321885`](https://github.com/open-webui/open-webui/commit/332188535e643585f4bba07d9de2328cd0fd5502) add option to add database schema as env var - [`6f1065b`](https://github.com/open-webui/open-webui/commit/6f1065b56aa6630f614925e1afd1bf23f26ec232) Merge branch 'dev' of github.com:open-webui/open-webui - [`61303a2`](https://github.com/open-webui/open-webui/commit/61303a216ccf629b1afb53c0b4f1ba29612ce87c) refac: styling - [`15a182c`](https://github.com/open-webui/open-webui/commit/15a182c9d6910ec8430c19ce3d6c22498c32214d) refac: styling - [`960683e`](https://github.com/open-webui/open-webui/commit/960683eceda2cf1bba46d82b2b7c467dbc200200) fix: torch mps not working - [`a0e63b0`](https://github.com/open-webui/open-webui/commit/a0e63b08c3849b40b154478a206048ce87b194e3) fix: searchapi engine not showing - [`8117bf8`](https://github.com/open-webui/open-webui/commit/8117bf8603527e570a802c8496d78ac760ca6dd4) Add admin check - [`0c5bb6d`](https://github.com/open-webui/open-webui/commit/0c5bb6df806ad9a1509fae8ed7e543219be4272d) Merge pull request #8371 from tarmst/fix-admins-added-to-groups-from-oauth-group-mgmt - [`82ff6c3`](https://github.com/open-webui/open-webui/commit/82ff6c371b88a4dcda85a000a4bd2dfbbc912789) use ldap3.NONE for parameter get_info in ldap_auth function to accelerate login - [`70a6a0d`](https://github.com/open-webui/open-webui/commit/70a6a0d9e842a8b9defae664804cd3f9b1efe8ff) Fix errors for RangeErrors, Fix for accessing undefined objects in Chat.svelte ### 📊 Changes **196 files changed** (+7457 additions, -4103 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/integration-test.disabled` (+2 -0) 📝 `CHANGELOG.md` (+25 -1) 📝 `backend/open_webui/__init__.py` (+19 -0) 📝 `backend/open_webui/config.py` (+173 -34) 📝 `backend/open_webui/constants.py` (+1 -0) 📝 `backend/open_webui/env.py` (+4 -0) 📝 `backend/open_webui/internal/db.py` (+4 -2) 📝 `backend/open_webui/main.py` (+9 -0) 📝 `backend/open_webui/models/chats.py` (+1 -1) 📝 `backend/open_webui/models/groups.py` (+21 -3) 📝 `backend/open_webui/models/users.py` (+13 -1) 📝 `backend/open_webui/retrieval/utils.py` (+14 -2) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+2 -2) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+2 -1) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+24 -19) 📝 `backend/open_webui/retrieval/web/bing.py` (+1 -1) 📝 `backend/open_webui/routers/auths.py` (+16 -4) 📝 `backend/open_webui/routers/files.py` (+2 -0) 📝 `backend/open_webui/routers/groups.py` (+5 -0) 📝 `backend/open_webui/routers/images.py` (+20 -3) _...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 03:58:57 -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#22207