[PR #22469] [MERGED] 0.8.10 #42344

Closed
opened 2026-04-25 14:16:31 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/22469
Author: @tjbck
Created: 3/8/2026
Status: Merged
Merged: 3/9/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 61bbb99 fix: replace bare except with Exception in oauth.py (#22420)
  • f419830 # i18n: (pt-BR) add translations for newly added UI items + consistency pass (#22391)
  • e1d04be i18n: (pt-BR) add translations for newly added UI items + consistency pass (#22452)
  • abe865f i18n : Updated ms-MY Malay (Bahasa Malaysia) Language (#22450)
  • 2c35bdb fix: replace bare string raises with proper exception types (#22446)
  • 67e26fd refac
  • 7103206 refac
  • 63a0bef fix: add missing opentelemetry-instrumentation-system-metrics dependency (#22447)
  • bbbe2b6 fix: use static month names in getTimeRange to prevent OS locale leaking into sidebar (#22454)
  • f78b238 fix: prevent pipeline filter from corrupting payload on HTTP error (#22445)

📊 Changes

102 files changed (+2781 additions, -1680 deletions)

View changed files

📝 CHANGELOG.md (+33 -0)
📝 Dockerfile (+1 -0)
📝 backend/open_webui/config.py (+88 -2)
📝 backend/open_webui/main.py (+4 -4)
📝 backend/open_webui/models/chat_messages.py (+9 -0)
📝 backend/open_webui/models/files.py (+11 -3)
📝 backend/open_webui/retrieval/loaders/main.py (+3 -0)
📝 backend/open_webui/retrieval/utils.py (+6 -2)
📝 backend/open_webui/retrieval/vector/dbs/elasticsearch.py (+4 -0)
backend/open_webui/retrieval/vector/dbs/mariadb_vector.py (+593 -0)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/milvus_multitenancy.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/opengauss.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/oracle23ai.py (+2 -0)
📝 backend/open_webui/retrieval/vector/dbs/pinecone.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/qdrant.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/s3vector.py (+9 -0)
📝 backend/open_webui/retrieval/vector/dbs/weaviate.py (+4 -0)

...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/22469 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 3/8/2026 **Status:** ✅ Merged **Merged:** 3/9/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`61bbb99`](https://github.com/open-webui/open-webui/commit/61bbb99d9e99c69177f1f0230f730fc512b5b293) fix: replace bare except with Exception in oauth.py (#22420) - [`f419830`](https://github.com/open-webui/open-webui/commit/f419830a524051ac46a0518ccd9eedee8394df99) # i18n: (pt-BR) add translations for newly added UI items + consistency pass (#22391) - [`e1d04be`](https://github.com/open-webui/open-webui/commit/e1d04be89782ac6c9183499c484b730c850adaed) i18n: (pt-BR) add translations for newly added UI items + consistency pass (#22452) - [`abe865f`](https://github.com/open-webui/open-webui/commit/abe865f4f38f9c6daf8e2bd44780a7494aa84fe5) i18n : Updated ms-MY Malay (Bahasa Malaysia) Language (#22450) - [`2c35bdb`](https://github.com/open-webui/open-webui/commit/2c35bdbcf5729227a932703f505a9d2aba5b2cd4) fix: replace bare string raises with proper exception types (#22446) - [`67e26fd`](https://github.com/open-webui/open-webui/commit/67e26fd3af8fc156958297b84903b70ce959590d) refac - [`7103206`](https://github.com/open-webui/open-webui/commit/710320601a3b15dc65acc3944c81455257be46ac) refac - [`63a0bef`](https://github.com/open-webui/open-webui/commit/63a0befd3cd05d9a83ed7ee3da2be961dcac6cb4) fix: add missing opentelemetry-instrumentation-system-metrics dependency (#22447) - [`bbbe2b6`](https://github.com/open-webui/open-webui/commit/bbbe2b66b42e07cc73d83e7e8dfaf5b514dc02e4) fix: use static month names in getTimeRange to prevent OS locale leaking into sidebar (#22454) - [`f78b238`](https://github.com/open-webui/open-webui/commit/f78b238b40a9dc927e6cbf4c6ee9bee5dfabdca2) fix: prevent pipeline filter from corrupting payload on HTTP error (#22445) ### 📊 Changes **102 files changed** (+2781 additions, -1680 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+33 -0) 📝 `Dockerfile` (+1 -0) 📝 `backend/open_webui/config.py` (+88 -2) 📝 `backend/open_webui/main.py` (+4 -4) 📝 `backend/open_webui/models/chat_messages.py` (+9 -0) 📝 `backend/open_webui/models/files.py` (+11 -3) 📝 `backend/open_webui/retrieval/loaders/main.py` (+3 -0) 📝 `backend/open_webui/retrieval/utils.py` (+6 -2) 📝 `backend/open_webui/retrieval/vector/dbs/elasticsearch.py` (+4 -0) ➕ `backend/open_webui/retrieval/vector/dbs/mariadb_vector.py` (+593 -0) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/milvus_multitenancy.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/opengauss.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/oracle23ai.py` (+2 -0) 📝 `backend/open_webui/retrieval/vector/dbs/pinecone.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/s3vector.py` (+9 -0) 📝 `backend/open_webui/retrieval/vector/dbs/weaviate.py` (+4 -0) _...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-25 14:16:31 -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#42344