[PR #17827] [MERGED] 0.6.32 #63419

Closed
opened 2026-05-06 08:09:48 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17827
Author: @tjbck
Created: 9/27/2025
Status: Merged
Merged: 9/29/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 15bd504 fix: fixed the hover effect for the MessageInput Integrations button
  • e7ccaf6 Fix: milvus error because the limit set to None by default
  • 123dbf1 feat: Add DISKANN index type support for Milvus
  • b550d78 Merge branch 'open-webui:main' into fix-milvus-limit-error
  • 9e3d540 Merge branch 'open-webui:main' into feat-milvus-diskann-support
  • 42faa63 fix: show error message when the uploading file is modified
  • 90a5b3b fix: 'Set as default'
  • 36da2b0 Update translation.json (pt-BR)
  • d126c23 Merge pull request #17783 from joaoback/patch-10
  • ac6292b Fix: truncate long model tags with a character limit

📊 Changes

160 files changed (+5592 additions, -1467 deletions)

View changed files

📝 CHANGELOG.md (+20 -0)
📝 backend/open_webui/config.py (+15 -2)
📝 backend/open_webui/functions.py (+6 -0)
📝 backend/open_webui/main.py (+24 -29)
backend/open_webui/migrations/versions/a5c220713937_add_reply_to_id_column_to_message.py (+34 -0)
📝 backend/open_webui/models/chats.py (+15 -1)
📝 backend/open_webui/models/folders.py (+14 -0)
📝 backend/open_webui/models/messages.py (+97 -12)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+3 -3)
📝 backend/open_webui/retrieval/vector/dbs/elasticsearch.py (+3 -3)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+15 -7)
backend/open_webui/retrieval/vector/dbs/milvus_multitenancy.py (+282 -0)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+3 -3)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+4 -4)
📝 backend/open_webui/retrieval/vector/dbs/pinecone.py (+2 -2)
📝 backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py (+7 -0)
📝 backend/open_webui/retrieval/vector/dbs/s3vector.py (+3 -3)
📝 backend/open_webui/retrieval/vector/factory.py (+14 -3)
📝 backend/open_webui/retrieval/vector/utils.py (+15 -1)
📝 backend/open_webui/routers/channels.py (+33 -56)

...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/17827 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/27/2025 **Status:** ✅ Merged **Merged:** 9/29/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`15bd504`](https://github.com/open-webui/open-webui/commit/15bd5040f19d7bea246a91cb2bec8f78374b0de1) fix: fixed the hover effect for the MessageInput Integrations button - [`e7ccaf6`](https://github.com/open-webui/open-webui/commit/e7ccaf6e78ee8d5adf617b953578efdd01998bbd) Fix: milvus error because the limit set to None by default - [`123dbf1`](https://github.com/open-webui/open-webui/commit/123dbf152e4651b3789cdd560873986963f732ac) feat: Add DISKANN index type support for Milvus - [`b550d78`](https://github.com/open-webui/open-webui/commit/b550d78905ed7a3557ba3ce00f99758a13ce4405) Merge branch 'open-webui:main' into fix-milvus-limit-error - [`9e3d540`](https://github.com/open-webui/open-webui/commit/9e3d5407ae0726fa61dc579df5be790562601a4a) Merge branch 'open-webui:main' into feat-milvus-diskann-support - [`42faa63`](https://github.com/open-webui/open-webui/commit/42faa63227d803e20d83e49cf4ab7a81e9b540cd) fix: show error message when the uploading file is modified - [`90a5b3b`](https://github.com/open-webui/open-webui/commit/90a5b3befbdb63e299dac3d3b06cb6c2b8888361) fix: 'Set as default' - [`36da2b0`](https://github.com/open-webui/open-webui/commit/36da2b06a53db377d943390d21ee609bcb8dd50f) Update translation.json (pt-BR) - [`d126c23`](https://github.com/open-webui/open-webui/commit/d126c23ef84a42532cc861d1ac1d071a6b7bd959) Merge pull request #17783 from joaoback/patch-10 - [`ac6292b`](https://github.com/open-webui/open-webui/commit/ac6292b812f400b9180c5a26b5ccae7611a88703) Fix: truncate long model tags with a character limit ### 📊 Changes **160 files changed** (+5592 additions, -1467 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+20 -0) 📝 `backend/open_webui/config.py` (+15 -2) 📝 `backend/open_webui/functions.py` (+6 -0) 📝 `backend/open_webui/main.py` (+24 -29) ➕ `backend/open_webui/migrations/versions/a5c220713937_add_reply_to_id_column_to_message.py` (+34 -0) 📝 `backend/open_webui/models/chats.py` (+15 -1) 📝 `backend/open_webui/models/folders.py` (+14 -0) 📝 `backend/open_webui/models/messages.py` (+97 -12) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+3 -3) 📝 `backend/open_webui/retrieval/vector/dbs/elasticsearch.py` (+3 -3) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+15 -7) ➕ `backend/open_webui/retrieval/vector/dbs/milvus_multitenancy.py` (+282 -0) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+3 -3) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+4 -4) 📝 `backend/open_webui/retrieval/vector/dbs/pinecone.py` (+2 -2) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py` (+7 -0) 📝 `backend/open_webui/retrieval/vector/dbs/s3vector.py` (+3 -3) 📝 `backend/open_webui/retrieval/vector/factory.py` (+14 -3) 📝 `backend/open_webui/retrieval/vector/utils.py` (+15 -1) 📝 `backend/open_webui/routers/channels.py` (+33 -56) _...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-05-06 08:09:48 -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#63419