[PR #9190] [MERGED] 0.5.8 #45379

Closed
opened 2026-04-29 19:43:05 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • 1ad9be9 Check OAuth name type with fallback
  • 412923d feat: separate cookie settings between session & auth cookies
  • 6e306be i18n: Update Chinese Translation
  • 24ab79f Merge pull request #8857 from KarlLee830/translate
  • dda945f feat: Localized dates and times
  • 2d562ed Fixed the type on translation.json
  • 91221cd Merge pull request #8948 from kokutaro/i18n/japanese-translation
  • 6f3c92f enh: chat loading screen
  • 6eb51ab enh: file upload permission indicator
  • 9eaf01c Merge branch 'open-webui:main' into fix/oidc-500-error-name-field

📊 Changes

147 files changed (+4236 additions, -1743 deletions)

View changed files

📝 CHANGELOG.md (+29 -0)
📝 backend/open_webui/config.py (+70 -12)
📝 backend/open_webui/constants.py (+1 -1)
📝 backend/open_webui/env.py (+14 -6)
📝 backend/open_webui/main.py (+23 -6)
📝 backend/open_webui/retrieval/utils.py (+55 -16)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+5 -1)
backend/open_webui/retrieval/web/exa.py (+76 -0)
📝 backend/open_webui/retrieval/web/main.py (+4 -0)
📝 backend/open_webui/retrieval/web/utils.py (+15 -4)
📝 backend/open_webui/routers/auths.py (+14 -9)
📝 backend/open_webui/routers/chats.py (+8 -2)
📝 backend/open_webui/routers/files.py (+4 -2)
📝 backend/open_webui/routers/knowledge.py (+37 -12)
📝 backend/open_webui/routers/memories.py (+6 -4)
📝 backend/open_webui/routers/models.py (+5 -1)
📝 backend/open_webui/routers/ollama.py (+5 -4)
📝 backend/open_webui/routers/openai.py (+4 -4)
📝 backend/open_webui/routers/prompts.py (+5 -1)
📝 backend/open_webui/routers/retrieval.py (+42 -9)

...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/9190 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 1/31/2025 **Status:** ✅ Merged **Merged:** 2/5/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`1ad9be9`](https://github.com/open-webui/open-webui/commit/1ad9be9c07ddc91ffb1c5a40b9a044fd3fa305e9) Check OAuth name type with fallback - [`412923d`](https://github.com/open-webui/open-webui/commit/412923dc915065fd264228ad18db7991db88b7dd) feat: separate cookie settings between session & auth cookies - [`6e306be`](https://github.com/open-webui/open-webui/commit/6e306beaa2f496b01466ee7e726f9c85fb436f50) i18n: Update Chinese Translation - [`24ab79f`](https://github.com/open-webui/open-webui/commit/24ab79f5e903415388991432594352facef31ecb) Merge pull request #8857 from KarlLee830/translate - [`dda945f`](https://github.com/open-webui/open-webui/commit/dda945f4ad0c1482fd3ac0e8e55f7817b50ffaf4) feat: Localized dates and times - [`2d562ed`](https://github.com/open-webui/open-webui/commit/2d562ed317f34f1ee3c7d79a6fc751715a590ca1) Fixed the type on translation.json - [`91221cd`](https://github.com/open-webui/open-webui/commit/91221cd4b191e2cfca593eeb8a408731195e3978) Merge pull request #8948 from kokutaro/i18n/japanese-translation - [`6f3c92f`](https://github.com/open-webui/open-webui/commit/6f3c92f6d522d34e89252e2f227c3fde58b0a170) enh: chat loading screen - [`6eb51ab`](https://github.com/open-webui/open-webui/commit/6eb51ab62e3c3bee3590b91cc596ed2d94ce28ca) enh: file upload permission indicator - [`9eaf01c`](https://github.com/open-webui/open-webui/commit/9eaf01c32343f0a1f462f1f1c71b8a1cdc8ead64) Merge branch 'open-webui:main' into fix/oidc-500-error-name-field ### 📊 Changes **147 files changed** (+4236 additions, -1743 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+29 -0) 📝 `backend/open_webui/config.py` (+70 -12) 📝 `backend/open_webui/constants.py` (+1 -1) 📝 `backend/open_webui/env.py` (+14 -6) 📝 `backend/open_webui/main.py` (+23 -6) 📝 `backend/open_webui/retrieval/utils.py` (+55 -16) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+5 -1) ➕ `backend/open_webui/retrieval/web/exa.py` (+76 -0) 📝 `backend/open_webui/retrieval/web/main.py` (+4 -0) 📝 `backend/open_webui/retrieval/web/utils.py` (+15 -4) 📝 `backend/open_webui/routers/auths.py` (+14 -9) 📝 `backend/open_webui/routers/chats.py` (+8 -2) 📝 `backend/open_webui/routers/files.py` (+4 -2) 📝 `backend/open_webui/routers/knowledge.py` (+37 -12) 📝 `backend/open_webui/routers/memories.py` (+6 -4) 📝 `backend/open_webui/routers/models.py` (+5 -1) 📝 `backend/open_webui/routers/ollama.py` (+5 -4) 📝 `backend/open_webui/routers/openai.py` (+4 -4) 📝 `backend/open_webui/routers/prompts.py` (+5 -1) 📝 `backend/open_webui/routers/retrieval.py` (+42 -9) _...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-29 19:43:05 -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#45379