[PR #21346] [MERGED] 0.8.1 #26039

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/21346
Author: @tjbck
Created: 2/13/2026
Status: Merged
Merged: 2/14/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 49e7ead Merge pull request #21345 from joaoback/patch-25
  • 0b05b2f refac
  • 9886ebb fix: resolve knowledge collection indentation/truncation issue by correcting flex layout (#21374)
  • 4d5b7b3 fix: resolve knowledge tooltip z-index issue in model edit page (#21375)
  • ddcec98 fix: ensure sync modal only triggers if community sharing is enabled (#21376)
  • 7bda6bf fix: PostgreSQL cannot use get_chat_ids_by_model_id
  • 73776d5 fix: enforce public sharing permission checks across all resource types (#21358)
  • b4c3f54 fix: skills postgres issue
  • df6e380 refac
  • d01b1d4 enh: apply admin default to builtin web search (#21373)

📊 Changes

39 files changed (+1264 additions, -498 deletions)

View changed files

📝 CHANGELOG.md (+34 -0)
📝 Dockerfile (+3 -2)
📝 backend/open_webui/env.py (+9 -1)
backend/open_webui/migrations/versions/b2c3d4e5f6a7_add_scim_column_to_user_table.py (+26 -0)
📝 backend/open_webui/models/access_grants.py (+56 -0)
📝 backend/open_webui/models/chat_messages.py (+9 -7)
📝 backend/open_webui/models/chats.py (+33 -1)
📝 backend/open_webui/models/skills.py (+3 -3)
📝 backend/open_webui/models/users.py (+89 -8)
📝 backend/open_webui/retrieval/vector/utils.py (+10 -10)
📝 backend/open_webui/routers/auths.py (+2 -2)
📝 backend/open_webui/routers/channels.py (+4 -8)
📝 backend/open_webui/routers/knowledge.py (+50 -16)
📝 backend/open_webui/routers/models.py (+62 -12)
📝 backend/open_webui/routers/notes.py (+19 -0)
📝 backend/open_webui/routers/ollama.py (+50 -38)
📝 backend/open_webui/routers/openai.py (+169 -14)
📝 backend/open_webui/routers/prompts.py (+37 -9)
📝 backend/open_webui/routers/scim.py (+82 -8)
📝 backend/open_webui/routers/skills.py (+21 -1)

...and 19 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/21346 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/13/2026 **Status:** ✅ Merged **Merged:** 2/14/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`49e7ead`](https://github.com/open-webui/open-webui/commit/49e7eade15e4127f477c9c47d94696600f00e9e9) Merge pull request #21345 from joaoback/patch-25 - [`0b05b2f`](https://github.com/open-webui/open-webui/commit/0b05b2fc7ed4c38af158707438ff404d1beb7c91) refac - [`9886ebb`](https://github.com/open-webui/open-webui/commit/9886ebb97f1004ebcea764af84b4c78201b15c25) fix: resolve knowledge collection indentation/truncation issue by correcting flex layout (#21374) - [`4d5b7b3`](https://github.com/open-webui/open-webui/commit/4d5b7b3014c79b1705abff795da1618700ab0401) fix: resolve knowledge tooltip z-index issue in model edit page (#21375) - [`ddcec98`](https://github.com/open-webui/open-webui/commit/ddcec9842f195018f5ddbd0599f8667b35168019) fix: ensure sync modal only triggers if community sharing is enabled (#21376) - [`7bda6bf`](https://github.com/open-webui/open-webui/commit/7bda6bf767d5d5c4dc1111465096a88e10b5030e) fix: PostgreSQL cannot use get_chat_ids_by_model_id - [`73776d5`](https://github.com/open-webui/open-webui/commit/73776d54b890271dbb4efb90f01ecb80867de32d) fix: enforce public sharing permission checks across all resource types (#21358) - [`b4c3f54`](https://github.com/open-webui/open-webui/commit/b4c3f54f9648c4232a0fd6557703ffa66fcf4caa) fix: skills postgres issue - [`df6e380`](https://github.com/open-webui/open-webui/commit/df6e38039f14d45764142b9d60082bb815e11d57) refac - [`d01b1d4`](https://github.com/open-webui/open-webui/commit/d01b1d48809c105b31a972d47b47808dabb98999) enh: apply admin default to builtin web search (#21373) ### 📊 Changes **39 files changed** (+1264 additions, -498 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+34 -0) 📝 `Dockerfile` (+3 -2) 📝 `backend/open_webui/env.py` (+9 -1) ➕ `backend/open_webui/migrations/versions/b2c3d4e5f6a7_add_scim_column_to_user_table.py` (+26 -0) 📝 `backend/open_webui/models/access_grants.py` (+56 -0) 📝 `backend/open_webui/models/chat_messages.py` (+9 -7) 📝 `backend/open_webui/models/chats.py` (+33 -1) 📝 `backend/open_webui/models/skills.py` (+3 -3) 📝 `backend/open_webui/models/users.py` (+89 -8) 📝 `backend/open_webui/retrieval/vector/utils.py` (+10 -10) 📝 `backend/open_webui/routers/auths.py` (+2 -2) 📝 `backend/open_webui/routers/channels.py` (+4 -8) 📝 `backend/open_webui/routers/knowledge.py` (+50 -16) 📝 `backend/open_webui/routers/models.py` (+62 -12) 📝 `backend/open_webui/routers/notes.py` (+19 -0) 📝 `backend/open_webui/routers/ollama.py` (+50 -38) 📝 `backend/open_webui/routers/openai.py` (+169 -14) 📝 `backend/open_webui/routers/prompts.py` (+37 -9) 📝 `backend/open_webui/routers/scim.py` (+82 -8) 📝 `backend/open_webui/routers/skills.py` (+21 -1) _...and 19 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 06:16:58 -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#26039