[PR #16507] [MERGED] 0.6.23 #63012

Closed
opened 2026-05-06 07:31:13 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • 4f982e2 Ensure tool callable can be used by genai directly
  • 6dd9691 Add option to blacklist modules in code interpreter
  • bb09245 Inject code to block imports from blacklisted modules
  • b23abcb feat(db): Add DATABASE_ENABLE_SQLITE_WAL to enable SQLite WAL
  • 635cb8e perf(db): deduplicate update_user_last_active_by_id to reduce conflicts
  • 7bd7559 refactor: format
  • f890fe6 enh: allow plaintext for external tool servers
  • 2df4e72 refac
  • 53c9c48 Update fi-FI translation.json
  • 62506b1 fix: duckduckgo isn't duckduckgo anymore

📊 Changes

204 files changed (+11870 additions, -4921 deletions)

View changed files

📝 CHANGELOG.md (+75 -0)
📝 Dockerfile (+23 -24)
📝 backend/open_webui/alembic.ini (+1 -1)
📝 backend/open_webui/config.py (+26 -2)
📝 backend/open_webui/env.py (+25 -6)
📝 backend/open_webui/functions.py (+2 -4)
📝 backend/open_webui/internal/db.py (+12 -1)
📝 backend/open_webui/main.py (+117 -59)
backend/open_webui/migrations/versions/018012973d35_add_indexes.py (+46 -0)
backend/open_webui/migrations/versions/3af16a1c9fb6_update_user_table.py (+32 -0)
📝 backend/open_webui/models/auths.py (+0 -5)
📝 backend/open_webui/models/chats.py (+15 -1)
📝 backend/open_webui/models/functions.py (+4 -4)
📝 backend/open_webui/models/tags.py (+6 -1)
📝 backend/open_webui/models/tools.py (+1 -1)
📝 backend/open_webui/models/users.py (+40 -12)
📝 backend/open_webui/retrieval/utils.py (+52 -36)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+22 -54)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+26 -2)
📝 backend/open_webui/retrieval/vector/dbs/s3vector.py (+37 -14)

...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/16507 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 8/11/2025 **Status:** ✅ Merged **Merged:** 8/21/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4f982e2`](https://github.com/open-webui/open-webui/commit/4f982e244f5b48c8f47ecd862d0168309b5e8cd6) Ensure tool callable can be used by genai directly - [`6dd9691`](https://github.com/open-webui/open-webui/commit/6dd969129df247a2feed47bf67a242fe7e9c77bc) Add option to blacklist modules in code interpreter - [`bb09245`](https://github.com/open-webui/open-webui/commit/bb09245792555a50a01f0e35334fd2dc59a4497d) Inject code to block imports from blacklisted modules - [`b23abcb`](https://github.com/open-webui/open-webui/commit/b23abcbfe55f0357674ec139cbf781b31db0a9a0) feat(db): Add DATABASE_ENABLE_SQLITE_WAL to enable SQLite WAL - [`635cb8e`](https://github.com/open-webui/open-webui/commit/635cb8e3ff0208724ff122b37128ae4e42f7ff05) perf(db): deduplicate update_user_last_active_by_id to reduce conflicts - [`7bd7559`](https://github.com/open-webui/open-webui/commit/7bd7559bfe490c71d9601e35ae119d788a90c495) refactor: format - [`f890fe6`](https://github.com/open-webui/open-webui/commit/f890fe6901563d92e4aae649088f29b7ee33056c) enh: allow plaintext for external tool servers - [`2df4e72`](https://github.com/open-webui/open-webui/commit/2df4e7207b97cdb840d92cdaf66854f224052d10) refac - [`53c9c48`](https://github.com/open-webui/open-webui/commit/53c9c483877e4d4858f2960f783f2a7add941f89) Update fi-FI translation.json - [`62506b1`](https://github.com/open-webui/open-webui/commit/62506b1955a9fe68e1f67c8aa77a8fd58f7b4c84) fix: duckduckgo isn't duckduckgo anymore ### 📊 Changes **204 files changed** (+11870 additions, -4921 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+75 -0) 📝 `Dockerfile` (+23 -24) 📝 `backend/open_webui/alembic.ini` (+1 -1) 📝 `backend/open_webui/config.py` (+26 -2) 📝 `backend/open_webui/env.py` (+25 -6) 📝 `backend/open_webui/functions.py` (+2 -4) 📝 `backend/open_webui/internal/db.py` (+12 -1) 📝 `backend/open_webui/main.py` (+117 -59) ➕ `backend/open_webui/migrations/versions/018012973d35_add_indexes.py` (+46 -0) ➕ `backend/open_webui/migrations/versions/3af16a1c9fb6_update_user_table.py` (+32 -0) 📝 `backend/open_webui/models/auths.py` (+0 -5) 📝 `backend/open_webui/models/chats.py` (+15 -1) 📝 `backend/open_webui/models/functions.py` (+4 -4) 📝 `backend/open_webui/models/tags.py` (+6 -1) 📝 `backend/open_webui/models/tools.py` (+1 -1) 📝 `backend/open_webui/models/users.py` (+40 -12) 📝 `backend/open_webui/retrieval/utils.py` (+52 -36) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+22 -54) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+26 -2) 📝 `backend/open_webui/retrieval/vector/dbs/s3vector.py` (+37 -14) _...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:31:13 -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#63012