[PR #12932] [MERGED] 0.6.6 #23054

Closed
opened 2026-04-20 04:35:59 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/12932
Author: @tjbck
Created: 4/16/2025
Status: Merged
Merged: 5/5/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

207 files changed (+11509 additions, -3864 deletions)

View changed files

📝 .github/pull_request_template.md (+1 -1)
📝 CHANGELOG.md (+47 -0)
📝 Dockerfile (+1 -1)
📝 LICENSE (+7 -1)
📝 README.md (+20 -4)
📝 backend/open_webui/__init__.py (+1 -1)
📝 backend/open_webui/config.py (+137 -6)
📝 backend/open_webui/env.py (+61 -0)
📝 backend/open_webui/main.py (+55 -3)
backend/open_webui/migrations/versions/9f0c9cd09105_add_note_table.py (+33 -0)
📝 backend/open_webui/models/chats.py (+1 -1)
backend/open_webui/models/notes.py (+135 -0)
📝 backend/open_webui/models/users.py (+66 -5)
backend/open_webui/retrieval/loaders/external.py (+53 -0)
📝 backend/open_webui/retrieval/loaders/main.py (+16 -1)
📝 backend/open_webui/retrieval/utils.py (+41 -17)
📝 backend/open_webui/retrieval/vector/connector.py (+4 -0)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+7 -2)
📝 backend/open_webui/retrieval/vector/dbs/elasticsearch.py (+7 -2)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+7 -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/12932 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/16/2025 **Status:** ✅ Merged **Merged:** 5/5/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f0447b2`](https://github.com/open-webui/open-webui/commit/f0447b24ab5c8e3de7d84221823f948ec5c2b013) refac: wording - [`ad8c8da`](https://github.com/open-webui/open-webui/commit/ad8c8da438176181b21016dea335fd7ee92ffdb6) refac - [`332f857`](https://github.com/open-webui/open-webui/commit/332f8579d711c4a7333cdadd238a29a7d04422c6) doc: readme - [`463d7fb`](https://github.com/open-webui/open-webui/commit/463d7fb628a2f860b7949221390c6918d4cd8cd7) refac: openapi to tool spec - [`4863789`](https://github.com/open-webui/open-webui/commit/48637893b1f6ef95e00086d75a3d5ccf6d747acb) fix: scroll on branch change w/ multi response chat - [`f790679`](https://github.com/open-webui/open-webui/commit/f7906790e1a2a890b965aa3a4191d2a0e215a7f2) refac - [`08a3541`](https://github.com/open-webui/open-webui/commit/08a35417f2b9ca9ee70ea5c5d85b5a75f907a093) Merge branch 'dev' into cla - [`8fcad1d`](https://github.com/open-webui/open-webui/commit/8fcad1df4e9c8d3f1b96628bce45fc23ac93522a) Merge pull request #13062 from open-webui/cla - [`f4de3b4`](https://github.com/open-webui/open-webui/commit/f4de3b4c45f2ab595bae6ad02314520f71d177db) enh: notificationSoundAlways option - [`6fd082d`](https://github.com/open-webui/open-webui/commit/6fd082d55ffaf6eb226efdeebc7155e3693d2d01) enh: html token (allow yt embed) ### 📊 Changes **207 files changed** (+11509 additions, -3864 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+1 -1) 📝 `CHANGELOG.md` (+47 -0) 📝 `Dockerfile` (+1 -1) 📝 `LICENSE` (+7 -1) 📝 `README.md` (+20 -4) 📝 `backend/open_webui/__init__.py` (+1 -1) 📝 `backend/open_webui/config.py` (+137 -6) 📝 `backend/open_webui/env.py` (+61 -0) 📝 `backend/open_webui/main.py` (+55 -3) ➕ `backend/open_webui/migrations/versions/9f0c9cd09105_add_note_table.py` (+33 -0) 📝 `backend/open_webui/models/chats.py` (+1 -1) ➕ `backend/open_webui/models/notes.py` (+135 -0) 📝 `backend/open_webui/models/users.py` (+66 -5) ➕ `backend/open_webui/retrieval/loaders/external.py` (+53 -0) 📝 `backend/open_webui/retrieval/loaders/main.py` (+16 -1) 📝 `backend/open_webui/retrieval/utils.py` (+41 -17) 📝 `backend/open_webui/retrieval/vector/connector.py` (+4 -0) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+7 -2) 📝 `backend/open_webui/retrieval/vector/dbs/elasticsearch.py` (+7 -2) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+7 -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-04-20 04:35:59 -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#23054