[PR #15909] [MERGED] 0.6.19 #62837

Closed
opened 2026-05-06 07:15:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/15909
Author: @tjbck
Created: 7/21/2025
Status: Merged
Merged: 8/9/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 1339d00 Merge pull request #16123 from ShirasawaSama/locale_improve_chinese_i18n
  • 526a981 Merge pull request #16077 from silentoplayz/delete-duplicate-SVGs
  • 071a2ac fix: python format issue
  • f1de837 fix: should fix the "breaking change"
  • 694494a Revert "fix: should fix the "breaking change""
  • 4cccb09 Merge pull request #16131 from open-webui/main
  • 47d86d3 Merge pull request #16061 from silentoplayz/fix/autoscrolling-in-FloatingButtons
  • 00a00f5 Merge pull request #16063 from silentoplayz/fix-her-theme
  • 22d98e6 fix: playground styling
  • 73a38ac refac

📊 Changes

254 files changed (+12617 additions, -4016 deletions)

View changed files

📝 .gitignore (+4 -1)
📝 CHANGELOG.md (+114 -0)
📝 README.md (+2 -0)
📝 backend/dev.sh (+1 -1)
📝 backend/open_webui/config.py (+119 -12)
📝 backend/open_webui/env.py (+73 -1)
📝 backend/open_webui/internal/db.py (+32 -1)
📝 backend/open_webui/internal/wrappers.py (+39 -15)
📝 backend/open_webui/main.py (+78 -18)
📝 backend/open_webui/migrations/env.py (+34 -7)
📝 backend/open_webui/models/chats.py (+60 -3)
📝 backend/open_webui/models/folders.py (+65 -19)
📝 backend/open_webui/models/memories.py (+13 -4)
📝 backend/open_webui/models/models.py (+44 -0)
📝 backend/open_webui/models/users.py (+4 -0)
📝 backend/open_webui/retrieval/loaders/datalab_marker.py (+95 -68)
📝 backend/open_webui/retrieval/loaders/main.py (+8 -2)
📝 backend/open_webui/retrieval/utils.py (+5 -1)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+4 -2)
📝 backend/open_webui/retrieval/vector/dbs/elasticsearch.py (+4 -2)

...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/15909 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 7/21/2025 **Status:** ✅ Merged **Merged:** 8/9/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`1339d00`](https://github.com/open-webui/open-webui/commit/1339d0059a9a885989f6277bf4aa580bb98991b9) Merge pull request #16123 from ShirasawaSama/locale_improve_chinese_i18n - [`526a981`](https://github.com/open-webui/open-webui/commit/526a98171e721e77d1a3cc388f53f8b272c58e5b) Merge pull request #16077 from silentoplayz/delete-duplicate-SVGs - [`071a2ac`](https://github.com/open-webui/open-webui/commit/071a2ac83565054e96a80e45a326451a884e73d8) fix: python format issue - [`f1de837`](https://github.com/open-webui/open-webui/commit/f1de837fefec3e284a7c69af4850affb37f8045e) fix: should fix the "breaking change" - [`694494a`](https://github.com/open-webui/open-webui/commit/694494ad5ef3db3f200cf02c7cfbf7418369a8ba) Revert "fix: should fix the "breaking change"" - [`4cccb09`](https://github.com/open-webui/open-webui/commit/4cccb097f9cc23e601c3c9c46f294d8f005ab749) Merge pull request #16131 from open-webui/main - [`47d86d3`](https://github.com/open-webui/open-webui/commit/47d86d3c2f34c9cb9c4c33123a837856d54be959) Merge pull request #16061 from silentoplayz/fix/autoscrolling-in-FloatingButtons - [`00a00f5`](https://github.com/open-webui/open-webui/commit/00a00f51620d981538f25674b858277877b0fc4f) Merge pull request #16063 from silentoplayz/fix-her-theme - [`22d98e6`](https://github.com/open-webui/open-webui/commit/22d98e6ee53c2d43e63a725977bd3134b6c088a5) fix: playground styling - [`73a38ac`](https://github.com/open-webui/open-webui/commit/73a38aca7286800e03bafd8569721fd7b7f78cfd) refac ### 📊 Changes **254 files changed** (+12617 additions, -4016 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+4 -1) 📝 `CHANGELOG.md` (+114 -0) 📝 `README.md` (+2 -0) 📝 `backend/dev.sh` (+1 -1) 📝 `backend/open_webui/config.py` (+119 -12) 📝 `backend/open_webui/env.py` (+73 -1) 📝 `backend/open_webui/internal/db.py` (+32 -1) 📝 `backend/open_webui/internal/wrappers.py` (+39 -15) 📝 `backend/open_webui/main.py` (+78 -18) 📝 `backend/open_webui/migrations/env.py` (+34 -7) 📝 `backend/open_webui/models/chats.py` (+60 -3) 📝 `backend/open_webui/models/folders.py` (+65 -19) 📝 `backend/open_webui/models/memories.py` (+13 -4) 📝 `backend/open_webui/models/models.py` (+44 -0) 📝 `backend/open_webui/models/users.py` (+4 -0) 📝 `backend/open_webui/retrieval/loaders/datalab_marker.py` (+95 -68) 📝 `backend/open_webui/retrieval/loaders/main.py` (+8 -2) 📝 `backend/open_webui/retrieval/utils.py` (+5 -1) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+4 -2) 📝 `backend/open_webui/retrieval/vector/dbs/elasticsearch.py` (+4 -2) _...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 07:15:25 -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#62837